mirror of
https://git.code.sf.net/p/quake/quakeforge
synced 2024-11-11 15:51:36 +00:00
6ff5b5c101
Things were getting rather cluttered with everything being qwaq-* and all in one directory. Now most have lost the qwaq- prefix and have been moved into subdirectories (non-recursive make).
16 lines
289 B
Objective-C
16 lines
289 B
Objective-C
#ifndef __qwaq_ui_titlebar_h
|
|
#define __qwaq_ui_titlebar_h
|
|
|
|
#include "ui/view.h"
|
|
|
|
@interface TitleBar : View
|
|
{
|
|
string title;
|
|
int length;
|
|
}
|
|
// title always centered at top of owner
|
|
-initWithTitle:(string) title;
|
|
-setTitle:(string) newTitle;
|
|
@end
|
|
|
|
#endif//__qwaq_ui_titlebar_h
|