Xonotic
checkbox_slider_invalid.qh
Go to the documentation of this file.
1 #pragma once
2 
3 #include "../item/checkbox.qh"
5  METHOD(XonoticSliderCheckBox, configureXonoticSliderCheckBox, void(entity, float, float, entity, string));
6  METHOD(XonoticSliderCheckBox, setChecked, void(entity, float));
7  METHOD(XonoticSliderCheckBox, draw, void(entity));
8  ATTRIB(XonoticSliderCheckBox, fontSize, float, SKINFONTSIZE_NORMAL);
9  ATTRIB(XonoticSliderCheckBox, image, string, SKINGFX_CHECKBOX);
10 
11  ATTRIB(XonoticSliderCheckBox, color, vector, SKINCOLOR_CHECKBOX_N);
12  ATTRIB(XonoticSliderCheckBox, colorC, vector, SKINCOLOR_CHECKBOX_C);
13  ATTRIB(XonoticSliderCheckBox, colorF, vector, SKINCOLOR_CHECKBOX_F);
14  ATTRIB(XonoticSliderCheckBox, colorD, vector, SKINCOLOR_CHECKBOX_D);
15 
16  ATTRIB(XonoticSliderCheckBox, alpha, float, SKINALPHA_TEXT);
17  ATTRIB(XonoticSliderCheckBox, disabledAlpha, float, SKINALPHA_DISABLED);
18 
19  ATTRIB(XonoticSliderCheckBox, controlledSlider, entity);
20  ATTRIB(XonoticSliderCheckBox, offValue, float, -1);
21  ATTRIB(XonoticSliderCheckBox, inverted, float, 0);
22  ATTRIB(XonoticSliderCheckBox, savedValue, float, -1);
24 entity makeXonoticSliderCheckBox(float, float, entity, string);
vector color
float alpha
Definition: items.qc:14
CLASS(Object) Object
Definition: oo.qh:318
entity makeXonoticSliderCheckBox(float, float, entity, string)
entity() spawn
#define METHOD(cname, name, prototype)
Definition: oo.qh:257
#define ATTRIB(...)
Definition: oo.qh:136
vector(float skel, float bonenum) _skel_get_boneabs_hidden
vector colorC
Definition: borderimage.qh:25
#define ENDCLASS(cname)
Definition: oo.qh:269
vector colorF
Definition: borderimage.qh:25