quakeforge/ruamoko/qwaq/qwaq-titlebar.h
Bill Currie 731a123b79 [qwaq] Add a title bar
The title bar is special in that it is always centered at the top of its
owner, thus it takes no rect.
2020-03-23 22:01:13 +09:00

16 lines
282 B
Objective-C

#ifndef __qwaq_titlebar_h
#define __qwaq_titlebar_h
#include "qwaq-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_titlebar_h