]> icculus.org git repositories - divverent/nexuiz.git/blob - data/qcsrc/menu/nexuiz/button.c
add a multi-cvar single-value tgo the text slider
[divverent/nexuiz.git] / data / qcsrc / menu / nexuiz / button.c
1 #ifdef INTERFACE
2 CLASS(NexuizButton) EXTENDS(Button)
3         METHOD(NexuizButton, configureNexuizButton, void(entity, string, vector))
4         ATTRIB(NexuizButton, fontSize, float, SKINFONTSIZE_NORMAL)
5         ATTRIB(NexuizButton, image, string, SKINGFX_BUTTON)
6         ATTRIB(NexuizButton, grayImage, string, SKINGFX_BUTTON_GRAY)
7         ATTRIB(NexuizButton, color, vector, SKINCOLOR_BUTTON_N)
8         ATTRIB(NexuizButton, colorC, vector, SKINCOLOR_BUTTON_C)
9         ATTRIB(NexuizButton, colorF, vector, SKINCOLOR_BUTTON_F)
10         ATTRIB(NexuizButton, colorD, vector, SKINCOLOR_BUTTON_D)
11         ATTRIB(NexuizButton, alpha, float, SKINALPHA_TEXT)
12         ATTRIB(NexuizButton, disabledAlpha, float, SKINALPHA_DISABLED)
13 ENDCLASS(NexuizButton)
14 entity makeNexuizButton(string theText, vector theColor);
15 #endif
16
17 #ifdef IMPLEMENTATION
18 entity makeNexuizButton(string theText, vector theColor)
19 {
20         entity me;
21         me = spawnNexuizButton();
22         me.configureNexuizButton(me, theText, theColor);
23         return me;
24 }
25
26 void configureNexuizButtonNexuizButton(entity me, string theText, vector theColor)
27 {
28         if(theColor == '0 0 0')
29         {
30                 me.configureButton(me, theText, me.fontSize, me.image);
31         }
32         else
33         {
34                 me.configureButton(me, theText, me.fontSize, me.grayImage);
35                 me.color = theColor;
36                 me.colorC = theColor;
37                 me.colorF = theColor;
38         }
39         me.tooltip = getZonedTooltipForIdentifier(strcat(currentDialog.classname, "/", me.text));
40 }
41 #endif