]> de.git.xonotic.org Git - xonotic/xonotic-data.pk3dir.git/blob - qcsrc/menu/xonotic/inputbox.qh
Merge branch 'master' into terencehill/dynamic_hud
[xonotic/xonotic-data.pk3dir.git] / qcsrc / menu / xonotic / inputbox.qh
1 #pragma once
2
3 #include "../item/inputbox.qh"
4 CLASS(XonoticInputBox, InputBox)
5         METHOD(XonoticInputBox, configureXonoticInputBox, void(entity, float, string, string));
6         METHOD(XonoticInputBox, focusLeave, void(entity));
7         METHOD(XonoticInputBox, setText, void(entity, string));
8         METHOD(XonoticInputBox, keyDown, float(entity, float, float, float));
9         ATTRIB(XonoticInputBox, fontSize, float, SKINFONTSIZE_NORMAL)
10         ATTRIB(XonoticInputBox, image, string, SKINGFX_INPUTBOX)
11         ATTRIB(XonoticInputBox, onChange, void(entity, entity), func_null)
12         ATTRIB(XonoticInputBox, onChangeEntity, entity, NULL)
13         ATTRIB(XonoticInputBox, onEnter, void(entity, entity), func_null)
14         ATTRIB(XonoticInputBox, onEnterEntity, entity, NULL)
15         ATTRIB(XonoticInputBox, marginLeft, float, SKINMARGIN_INPUTBOX_CHARS)
16         ATTRIB(XonoticInputBox, marginRight, float, SKINMARGIN_INPUTBOX_CHARS)
17         ATTRIB(XonoticInputBox, color, vector, SKINCOLOR_INPUTBOX_N)
18         ATTRIB(XonoticInputBox, colorF, vector, SKINCOLOR_INPUTBOX_F)
19
20         ATTRIB(XonoticInputBox, alpha, float, SKINALPHA_TEXT)
21
22         // Clear button attributes
23         ATTRIB(XonoticInputBox, cb_offset, float, SKINOFFSET_CLEARBUTTON)  // bound to range -1, 0
24         ATTRIB(XonoticInputBox, cb_src, string, SKINGFX_CLEARBUTTON)
25         ATTRIB(XonoticInputBox, cb_color, vector, SKINCOLOR_CLEARBUTTON_N)
26         ATTRIB(XonoticInputBox, cb_colorF, vector, SKINCOLOR_CLEARBUTTON_F)
27         ATTRIB(XonoticInputBox, cb_colorC, vector, SKINCOLOR_CLEARBUTTON_C)
28
29         ATTRIB(XonoticInputBox, cvarName, string, string_null)
30         METHOD(XonoticInputBox, loadCvars, void(entity));
31         METHOD(XonoticInputBox, saveCvars, void(entity));
32         ATTRIB(XonoticInputBox, sendCvars, float, 0)
33
34         ATTRIB(XonoticInputBox, saveImmediately, float, 0)
35 ENDCLASS(XonoticInputBox)
36 entity makeXonoticInputBox_T(float, string, string theTooltip);
37 entity makeXonoticInputBox(float, string);