mirror of
https://git.code.sf.net/p/quake/quakeforge
synced 2024-11-11 15:51:36 +00:00
39 lines
767 B
Objective-C
39 lines
767 B
Objective-C
#ifndef __qwaq_window_h
|
|
#define __qwaq_window_h
|
|
|
|
#include "Object.h"
|
|
|
|
@class Group;
|
|
@class Button;
|
|
@class TitleBar;
|
|
|
|
#include "qwaq-draw.h"
|
|
#include "qwaq-rect.h"
|
|
#include "qwaq-view.h"
|
|
|
|
@interface Window: View
|
|
{
|
|
struct panel_s *panel;
|
|
Group *objects;
|
|
Point point; // FIXME can't be local :(
|
|
DrawBuffer *buf;
|
|
|
|
Button *topDrag; // move-only
|
|
Button *topLeftDrag;
|
|
Button *topRightDrag;
|
|
Button *leftDrag;
|
|
Button *rightDrag;
|
|
Button *bottomLeftDrag;
|
|
Button *bottomRightDrag;
|
|
Button *bottomDrag;
|
|
TitleBar *titleBar;
|
|
}
|
|
+windowWithRect: (Rect) rect;
|
|
-setTitle:(string) title;
|
|
-setBackground: (int) ch;
|
|
-insert: (View *) view;
|
|
-insertDrawn: (View *) view;
|
|
-insertSelected: (View *) view;
|
|
@end
|
|
|
|
#endif//__qwaq_window_h
|