quakeforge/ruamoko/cl_menu/CvarStringView.h
Bill Currie 30bd1c0134 Create classes for inputing cvar strings and script the network menu.
Hitting enter after inputting text is currently broken, but that's because
support for it was never put in the inputline wrapper code.
2011-03-25 18:26:10 +09:00

21 lines
393 B
Objective-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