quakeforge/ruamoko/qwaq/ui/stringview.h
Bill Currie 0a60f46a64 [qwaq] Implement more debugger def views
Structs and arrays now work (though could be better, eg collapsible).
2021-09-25 01:42:36 +09:00

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