]> de.git.xonotic.org Git - xonotic/xonotic-data.pk3dir.git/blob - qcsrc/menu/xonotic/checkbox_string.qc
Merge branch 'master' into terencehill/translation_system_improvements_2
[xonotic/xonotic-data.pk3dir.git] / qcsrc / menu / xonotic / checkbox_string.qc
1 #ifndef CHECKBOX_STRING_H
2 #define CHECKBOX_STRING_H
3 #include "../item/checkbox.qc"
4 CLASS(XonoticCheckBoxString, CheckBox)
5         METHOD(XonoticCheckBoxString, configureXonoticCheckBoxString, void(entity, string, string, string, string));
6         METHOD(XonoticCheckBoxString, setChecked, void(entity, float));
7         ATTRIB(XonoticCheckBoxString, fontSize, float, SKINFONTSIZE_NORMAL)
8         ATTRIB(XonoticCheckBoxString, image, string, SKINGFX_CHECKBOX)
9         ATTRIB(XonoticCheckBoxString, yesString, string, string_null)
10         ATTRIB(XonoticCheckBoxString, noString, string, string_null)
11
12         ATTRIB(XonoticCheckBoxString, color, vector, SKINCOLOR_CHECKBOX_N)
13         ATTRIB(XonoticCheckBoxString, colorC, vector, SKINCOLOR_CHECKBOX_C)
14         ATTRIB(XonoticCheckBoxString, colorF, vector, SKINCOLOR_CHECKBOX_F)
15         ATTRIB(XonoticCheckBoxString, colorD, vector, SKINCOLOR_CHECKBOX_D)
16
17         ATTRIB(XonoticCheckBoxString, cvarName, string, string_null)
18         METHOD(XonoticCheckBoxString, loadCvars, void(entity));
19         METHOD(XonoticCheckBoxString, saveCvars, void(entity));
20         ATTRIB(XonoticCheckBoxString, sendCvars, float, 0)
21
22         ATTRIB(XonoticCheckBoxString, alpha, float, SKINALPHA_TEXT)
23         ATTRIB(XonoticCheckBoxString, disabledAlpha, float, SKINALPHA_DISABLED)
24 ENDCLASS(XonoticCheckBoxString)
25 entity makeXonoticCheckBoxString(string, string, string, string);
26 #endif
27
28 #ifdef IMPLEMENTATION
29 entity makeXonoticCheckBoxString(string theYesValue, string theNoValue, string theCvar, string theText)
30 {
31         entity me;
32         me = NEW(XonoticCheckBoxString);
33         me.configureXonoticCheckBoxString(me, theYesValue, theNoValue, theCvar, theText);
34         return me;
35 }
36 void XonoticCheckBoxString_configureXonoticCheckBoxString(entity me, string theYesValue, string theNoValue, string theCvar, string theText)
37 {
38         me.yesString = theYesValue;
39         me.noString = theNoValue;
40         me.checked = 0;
41         me.cvarName = (theCvar) ? theCvar : string_null;
42         me.loadCvars(me);
43         me.configureCheckBox(me, theText, me.fontSize, me.image);
44 }
45 void XonoticCheckBoxString_setChecked(entity me, float foo)
46 {
47         me.checked = !me.checked;
48         me.saveCvars(me);
49 }
50 void XonoticCheckBoxString_loadCvars(entity me)
51 {
52         if (!me.cvarName)
53                 return;
54
55         if(cvar_string(me.cvarName) == me.yesString)
56                 me.checked = 1;
57 }
58 void XonoticCheckBoxString_saveCvars(entity me)
59 {
60         if (!me.cvarName)
61                 return;
62
63         if(me.checked)
64                 cvar_set(me.cvarName, me.yesString);
65         else
66                 cvar_set(me.cvarName, me.noString);
67
68         CheckSendCvars(me, me.cvarName);
69 }
70 #endif