mirror of
https://git.code.sf.net/p/quake/quakeforge
synced 2024-11-11 15:51:36 +00:00
23 lines
393 B
Objective-C
23 lines
393 B
Objective-C
#ifndef __qwaq_editor_status_h
|
|
#define __qwaq_editor_status_h
|
|
|
|
#include "ruamoko/qwaq/ui/view.h"
|
|
|
|
typedef enum {
|
|
cmInsert,
|
|
cmTypeOver,
|
|
cmVInsert,
|
|
cmVTypeOver,
|
|
} CursorMode;
|
|
|
|
@interface EditStatus : View
|
|
{
|
|
CursorMode cursorMode;
|
|
int modified;
|
|
}
|
|
+(EditStatus *)withRect:(Rect)rect;
|
|
-setCursorMode:(CursorMode)mode;
|
|
-setModified:(int)modified;
|
|
@end
|
|
|
|
#endif//__qwaq_editor_status_h
|