mirror of
https://git.code.sf.net/p/quake/quakeforge
synced 2024-11-10 23:32:09 +00:00
22 lines
393 B
C
22 lines
393 B
C
|
#ifndef __CvarStringView_h
|
||
|
#define __CvarStringView_h
|
||
|
|
||
|
#include "gui/Group.h"
|
||
|
|
||
|
@class Text;
|
||
|
@class InputLineBox;
|
||
|
@class CvarString;
|
||
|
|
||
|
@interface CvarStringView : Group
|
||
|
{
|
||
|
Text *title;
|
||
|
InputLineBox *ilb;
|
||
|
CvarString *cvstring;
|
||
|
int active;
|
||
|
}
|
||
|
-(void)update;
|
||
|
-(id)initWithBounds:(Rect)aRect title:(string)_title inputLength: (int)length :(CvarString *)_cvstring;
|
||
|
@end
|
||
|
|
||
|
#endif//__CvarStringView_h
|