2 CLASS(XonoticInputBox) EXTENDS(InputBox)
3 METHOD(XonoticInputBox, configureXonoticInputBox, void(entity, float, string))
4 METHOD(XonoticInputBox, focusLeave, void(entity))
5 METHOD(XonoticInputBox, setText, void(entity, string))
6 ATTRIB(XonoticInputBox, fontSize, float, SKINFONTSIZE_NORMAL)
7 ATTRIB(XonoticInputBox, image, string, SKINGFX_INPUTBOX)
8 ATTRIB(XonoticInputBox, onChange, void(entity, entity), SUB_Null)
9 ATTRIB(XonoticInputBox, onChangeEntity, entity, NULL)
10 ATTRIB(XonoticInputBox, onEnter, void(entity, entity), SUB_Null)
11 ATTRIB(XonoticInputBox, onEnterEntity, entity, NULL)
12 ATTRIB(XonoticInputBox, marginLeft, float, SKINMARGIN_INPUTBOX_CHARS)
13 ATTRIB(XonoticInputBox, marginRight, float, SKINMARGIN_INPUTBOX_CHARS)
14 ATTRIB(XonoticInputBox, color, vector, SKINCOLOR_INPUTBOX_N)
15 ATTRIB(XonoticInputBox, colorF, vector, SKINCOLOR_INPUTBOX_F)
17 ATTRIB(XonoticInputBox, alpha, float, SKINALPHA_TEXT)
19 ATTRIB(XonoticInputBox, cvarName, string, string_null)
20 METHOD(XonoticInputBox, loadCvars, void(entity))
21 METHOD(XonoticInputBox, saveCvars, void(entity))
22 METHOD(XonoticInputBox, keyDown, float(entity, float, float, float))
23 ENDCLASS(XonoticInputBox)
24 entity makeXonoticInputBox(float, string);
28 entity makeXonoticInputBox(float doEditColorCodes, string theCvar)
31 me = spawnXonoticInputBox();
32 me.configureXonoticInputBox(me, doEditColorCodes, theCvar);
35 void XonoticInputBox_configureXonoticInputBox(entity me, float doEditColorCodes, string theCvar)
37 me.configureInputBox(me, "", 0, me.fontSize, me.image);
38 me.editColorCodes = doEditColorCodes;
41 me.cvarName = theCvar;
42 me.tooltip = getZonedTooltipForIdentifier(theCvar);
45 me.cursorPos = strlen(me.text);
47 void XonoticInputBox_focusLeave(entity me)
51 void XonoticInputBox_setText(entity me, string new)
55 SUPER(XonoticInputBox).setText(me, new);
56 me.onChange(me, me.onChangeEntity);
59 SUPER(XonoticInputBox).setText(me, new);
61 void XonoticInputBox_loadCvars(entity me)
65 SUPER(XonoticInputBox).setText(me, cvar_string(me.cvarName));
67 void XonoticInputBox_saveCvars(entity me)
71 cvar_set(me.cvarName, me.text);
73 float XonoticInputBox_keyDown(entity me, float key, float ascii, float shift)
84 me.onEnter(me, me.onEnterEntity);
86 if(SUPER(XonoticInputBox).keyDown(me, key, ascii, shift))