mirror of
https://git.code.sf.net/p/quake/quakeforge
synced 2024-11-11 15:51:36 +00:00
17 lines
282 B
C
17 lines
282 B
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
|