mirror of
https://git.code.sf.net/p/quake/quakeforge
synced 2024-11-11 15:51:36 +00:00
24 lines
393 B
C
24 lines
393 B
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
|