mirror of
https://git.code.sf.net/p/quake/quakeforge
synced 2024-11-14 08:50:58 +00:00
ac25d9f1c1
Now the device windows close properly when an input device is removed.
18 lines
354 B
Objective-C
18 lines
354 B
Objective-C
#ifndef __qwaq_ui_titlebar_h
|
|
#define __qwaq_ui_titlebar_h
|
|
|
|
#include "ruamoko/qwaq/ui/view.h"
|
|
|
|
@interface TitleBar : View
|
|
{
|
|
string title;
|
|
int length;
|
|
}
|
|
// title always centered at top of owner
|
|
+(TitleBar *)withTitle:(string)title;
|
|
-initWithTitle:(string)title;
|
|
-setTitle:(string)newTitle;
|
|
-(string)title;
|
|
@end
|
|
|
|
#endif//__qwaq_ui_titlebar_h
|