2 CLASS(XonoticRadioButton) EXTENDS(RadioButton)
3 METHOD(XonoticRadioButton, configureXonoticRadioButton, void(entity, float, string, string, string))
4 METHOD(XonoticRadioButton, draw, void(entity))
5 METHOD(XonoticRadioButton, setChecked, void(entity, float))
6 ATTRIB(XonoticRadioButton, fontSize, float, SKINFONTSIZE_NORMAL)
7 ATTRIB(XonoticRadioButton, image, string, SKINGFX_RADIOBUTTON)
8 ATTRIB(XonoticRadioButton, color, vector, SKINCOLOR_RADIOBUTTON_N)
9 ATTRIB(XonoticRadioButton, colorC, vector, SKINCOLOR_RADIOBUTTON_C)
10 ATTRIB(XonoticRadioButton, colorF, vector, SKINCOLOR_RADIOBUTTON_F)
11 ATTRIB(XonoticRadioButton, colorD, vector, SKINCOLOR_RADIOBUTTON_D)
13 ATTRIB(XonoticRadioButton, cvarName, string, string_null)
14 ATTRIB(XonoticRadioButton, cvarValue, string, string_null)
15 ATTRIB(XonoticRadioButton, cvarOffValue, string, string_null)
16 METHOD(XonoticRadioButton, loadCvars, void(entity))
17 METHOD(XonoticRadioButton, saveCvars, void(entity))
19 ATTRIB(XonoticRadioButton, alpha, float, SKINALPHA_TEXT)
20 ATTRIB(XonoticRadioButton, disabledAlpha, float, SKINALPHA_DISABLED)
21 ENDCLASS(XonoticRadioButton)
22 entity makeXonoticRadioButton(float, string, string, string);
26 entity makeXonoticRadioButton(float theGroup, string theCvar, string theValue, string theText)
29 me = spawnXonoticRadioButton();
30 me.configureXonoticRadioButton(me, theGroup, theCvar, theValue, theText);
33 void XonoticRadioButton_configureXonoticRadioButton(entity me, float theGroup, string theCvar, string theValue, string theText)
37 me.cvarName = theCvar;
38 me.cvarValue = theValue;
39 me.tooltip = getZonedTooltipForIdentifier(theCvar);
42 me.configureRadioButton(me, theText, me.fontSize, me.image, theGroup, 0);
44 void XonoticRadioButton_setChecked(entity me, float val)
52 void XonoticRadioButton_loadCvars(entity me)
57 me.checked = (cvar_string(me.cvarName) == me.cvarValue);
63 me.checked = !!cvar(me.cvarName);
68 // this is the "generic" selection... but at this time, not
69 // everything is constructed yet.
70 // we need to set this later in draw()
75 void XonoticRadioButton_draw(entity me)
80 // this is the "other" option
81 // always select this if none other is
85 for(e = me.parent.firstChild; e; e = e.nextSibling)
86 if(e.group == me.group)
92 SUPER(XonoticRadioButton).draw(me);
94 void XonoticRadioButton_saveCvars(entity me)
101 cvar_set(me.cvarName, me.cvarValue);
102 else if(me.cvarOffValue)
103 cvar_set(me.cvarName, me.cvarOffValue);
110 cvar_set(me.cvarName, ftos(me.checked));