mirror of
https://git.code.sf.net/p/quake/quakeforge
synced 2024-11-23 04:42:32 +00:00
16 lines
307 B
C
16 lines
307 B
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
|