mirror of
https://git.code.sf.net/p/quake/quakeforge
synced 2024-11-05 20:50:43 +00:00
63 lines
1.5 KiB
Objective-C
63 lines
1.5 KiB
Objective-C
#ifndef __ruamoko_gui_InputLine_h
|
|
#define __ruamoko_gui_InputLine_h
|
|
|
|
#include "View.h"
|
|
|
|
struct _inputline_t = {}; // opaque type :)
|
|
typedef struct _inputline_t [] inputline_t;
|
|
|
|
@extern inputline_t (integer lines, integer size, integer prompt) InputLine_Create;
|
|
@extern void (inputline_t il, void [] data) InputLine_SetUserData;
|
|
@extern void (inputline_t il, integer width) InputLine_SetWidth;
|
|
@extern void (inputline_t il) InputLine_Destroy;
|
|
@extern void (inputline_t il, integer save) InputLine_Clear;
|
|
@extern void (inputline_t il, integer ch) InputLine_Process;
|
|
@extern void (inputline_t il) InputLine_Draw;
|
|
@extern void (inputline_t il, string str) InputLine_SetText;
|
|
@extern string (inputline_t il) InputLine_GetText;
|
|
|
|
struct il_data_t = {
|
|
integer x, y;
|
|
integer xbase, ybase;
|
|
BOOL cursor;
|
|
};
|
|
|
|
@class Rect;
|
|
@class Point;
|
|
|
|
@interface InputLine: View
|
|
{
|
|
struct il_data_t control;
|
|
inputline_t il;
|
|
}
|
|
|
|
- (id) initWithBounds: (Rect)aRect promptCharacter: (integer)char;
|
|
|
|
- (void) setBasePos: (Point)pos;
|
|
- (void) setWidth: (integer)width;
|
|
- (void) cursor: (BOOL)cursor;
|
|
- (void) draw;
|
|
|
|
- (void) processInput: (integer)key;
|
|
|
|
- (id) setText: (string)text;
|
|
- (string) text;
|
|
|
|
@end
|
|
|
|
@interface InputLineBox: View
|
|
{
|
|
InputLine input_line;
|
|
}
|
|
- (id) initWithBounds: (Rect)aRect promptCharacter: (integer)char;
|
|
|
|
- (void) setWidth: (integer)width;
|
|
- (void) cursor: (BOOL)cursor;
|
|
|
|
- (void) processInput: (integer)key;
|
|
|
|
- (id) setText: (string)text;
|
|
- (string) text;
|
|
@end
|
|
|
|
#endif //__ruamoko_gui_InputLine_h
|