mirror of
https://git.code.sf.net/p/quake/quakeforge
synced 2024-11-10 15:22:04 +00:00
30bd1c0134
Hitting enter after inputting text is currently broken, but that's because support for it was never put in the inputline wrapper code.
21 lines
393 B
Objective-C
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
|