mirror of
https://git.code.sf.net/p/quake/quakeforge
synced 2024-11-13 16:37:30 +00:00
ad4cde15b5
It even draws a border around itself.
22 lines
365 B
Objective-C
22 lines
365 B
Objective-C
#ifndef __qwaq_window_h
|
|
#define __qwaq_window_h
|
|
|
|
#include "Object.h"
|
|
|
|
@class Array;
|
|
|
|
#include "qwaq-draw.h"
|
|
#include "qwaq-rect.h"
|
|
#include "qwaq-view.h"
|
|
#include "qwaq-group.h"
|
|
|
|
@interface Window: Group
|
|
{
|
|
Point point; // FIXME can't be local :(
|
|
struct panel_s *panel;
|
|
}
|
|
+windowWithRect: (Rect) rect;
|
|
-setBackground: (int) ch;
|
|
@end
|
|
|
|
#endif//__qwaq_window_h
|