summaryrefslogtreecommitdiff
path: root/src/ui/ui_shared.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/ui/ui_shared.h')
-rw-r--r--src/ui/ui_shared.h8
1 files changed, 7 insertions, 1 deletions
diff --git a/src/ui/ui_shared.h b/src/ui/ui_shared.h
index bbf09234..36d77bf8 100644
--- a/src/ui/ui_shared.h
+++ b/src/ui/ui_shared.h
@@ -203,9 +203,14 @@ typedef struct listBoxDef_s
qboolean notselectable;
qboolean noscrollbar;
}
-
listBoxDef_t;
+typedef struct comboBoxDef_s
+{
+ int cursorPos;
+}
+comboBoxDef_t;
+
typedef struct editFieldDef_s
{
float minVal; // edit field limits
@@ -380,6 +385,7 @@ typedef struct
const char *( *feederItemText )( float feederID, int index, int column, qhandle_t *handle );
qhandle_t ( *feederItemImage )( float feederID, int index );
void ( *feederSelection )( float feederID, int index );
+ int ( *feederInitialise )( float feederID );
void ( *keynumToStringBuf )( int keynum, char *buf, int buflen );
void ( *getBindingBuf )( int keynum, char *buf, int buflen );
void ( *setBinding )( int keynum, const char *binding );