mirror of
https://git.code.sf.net/p/quake/quakeforge
synced 2024-11-11 15:51:36 +00:00
77651dbcba
Sort of works (when not segfaulting due to problem fixed in next commit).
41 lines
747 B
Objective-C
41 lines
747 B
Objective-C
#ifndef __qwaq_group_h
|
|
#define __qwaq_group_h
|
|
|
|
#include <Array.h>
|
|
|
|
#include "event.h"
|
|
#include "qwaq-draw.h"
|
|
|
|
@class View;
|
|
|
|
@interface Group : Object
|
|
{
|
|
View *owner;
|
|
Array *views;
|
|
View *mouse_grabbed;
|
|
View *mouse_within;
|
|
int focused;
|
|
id<TextContext> context;
|
|
}
|
|
-initWithContext: (id<TextContext>) context owner: (View *) owner;
|
|
-insert: (View *) view;
|
|
-insertDrawn: (View *) view;
|
|
-insertSelected: (View *) view;
|
|
-remove: (View *) view;
|
|
-(Rect) rect;
|
|
-(Point) origin;
|
|
-(Extent) size;
|
|
-draw;
|
|
-redraw;
|
|
-resize: (Extent) delta;
|
|
-handleEvent: (qwaq_event_t *) event;
|
|
-takeFocus;
|
|
-loseFocus;
|
|
-selectNext;
|
|
-selectPrev;
|
|
-selectView: (View *) view;
|
|
-(void) grabMouse;
|
|
-(void) releaseMouse;
|
|
@end
|
|
|
|
#endif//__qwaq_group_h
|