]> icculus.org git repositories - divverent/nexuiz.git/blob - data/qcsrc/menu-div0test/draw.qh
tabbed dialog
[divverent/nexuiz.git] / data / qcsrc / menu-div0test / draw.qh
1 vector draw_shift;
2 vector draw_scale;
3 float draw_alpha;
4
5 void draw_reset();
6 void draw_setMousePointer(string pic);
7 void draw_drawMousePointer(vector where);
8
9 void draw_ButtonPicture(vector theOrigin, string pic, vector theSize, vector theColor, float theAlpha);
10 void draw_VertButtonPicture(vector theOrigin, string pic, vector theSize, vector theColor, float theAlpha);
11 void draw_BorderPicture(vector theOrigin, string pic, vector theSize, vector theColor, float theAlpha, vector theBorderSize);
12 void draw_Picture(vector origin, string pic, vector size, vector color, float alpha);
13 void draw_Text(vector origin, string text, vector size, vector color, float alpha);
14 float draw_TextWidth(string text);
15
16 vector boxToGlobal(vector v, vector shift, vector scale);
17 vector boxToGlobalSize(vector v, vector scale);
18 vector globalToBox(vector v, vector shift, vector scale);
19 vector globalToBoxSize(vector v, vector scale);
20
21 float draw_NeedResizeNotify;