mirror of
https://git.code.sf.net/p/quake/quakeforge
synced 2024-11-11 07:42:18 +00:00
0a60f46a64
Structs and arrays now work (though could be better, eg collapsible).
15 lines
307 B
Objective-C
15 lines
307 B
Objective-C
#ifndef __qwaq_ui_stringview_h
|
|
#define __qwaq_ui_stringview_h
|
|
|
|
#include "ruamoko/qwaq/ui/view.h"
|
|
|
|
@interface StringView : View
|
|
{
|
|
string str;
|
|
}
|
|
+(StringView *)withRect:(Rect)rect;
|
|
+(StringView *)withRect:(Rect)rect string:(string)str;
|
|
-setString:(string)newString;
|
|
@end
|
|
|
|
#endif//__qwaq_ui_stringview_h
|