mirror of
https://git.code.sf.net/p/quake/quakeforge
synced 2024-11-10 15:22:04 +00:00
877ad35a82
It doesn't work right now because View unconditionally sends refresh to its textContext, but textContext can be a draw buffer which does not respond to refresh. Still, these changes (notably the assignment chain in qwaq-group.r really pushed qfcc).
15 lines
235 B
Objective-C
15 lines
235 B
Objective-C
#ifndef __qwaq_screen_h
|
|
#define __qwaq_screen_h
|
|
|
|
#include "qwaq-draw.h"
|
|
#include "qwaq-rect.h"
|
|
#include "qwaq-view.h"
|
|
|
|
@interface Screen: View
|
|
{
|
|
}
|
|
+(Screen *) screen;
|
|
-handleEvent: (qwaq_event_t *) event;
|
|
@end
|
|
|
|
#endif//__qwaq_screen_h
|