quakeforge/ruamoko/qwaq/ui/titlebar.h
Bill Currie ac25d9f1c1 [qwaq] Fix window closure
Now the device windows close properly when an input device is removed.
2021-09-26 10:35:24 +09:00

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