mirror of
https://git.code.sf.net/p/quake/quakeforge
synced 2024-11-12 00:01:43 +00:00
731a123b79
The title bar is special in that it is always centered at the top of its owner, thus it takes no rect.
16 lines
282 B
Objective-C
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
|