mirror of
https://git.code.sf.net/p/quake/quakeforge
synced 2024-11-11 15:51:36 +00:00
9bc91cd7d1
Terminal resize is detected and the views adjust appropriately (well, those for which I've set grow flags: the window title bar doesn't adjust yet).
28 lines
399 B
Objective-C
28 lines
399 B
Objective-C
#ifndef __qwaq_app_h
|
|
#define __qwaq_app_h
|
|
|
|
#include <Object.h>
|
|
|
|
#include "event.h"
|
|
#include "qwaq-rect.h"
|
|
|
|
@class Group;
|
|
@class TextContext;
|
|
|
|
@interface QwaqApplication: Object
|
|
{
|
|
qwaq_event_t event;
|
|
qwaq_command endState;
|
|
|
|
Group *objects;
|
|
|
|
TextContext *screen;
|
|
Extent screenSize;
|
|
int autocount;
|
|
}
|
|
-run;
|
|
-draw;
|
|
-handleEvent: (qwaq_event_t *) event;
|
|
@end
|
|
|
|
#endif//__qwaq_app_h
|