]> de.git.xonotic.org Git - xonotic/xonotic-data.pk3dir.git/blob - qcsrc/menu/item.c
update german; menu_showboxes debug feature
[xonotic/xonotic-data.pk3dir.git] / qcsrc / menu / item.c
1 #ifdef INTERFACE
2 CLASS(Item) EXTENDS(Object)
3         METHOD(Item, draw, void(entity))
4         METHOD(Item, keyDown, float(entity, float, float, float))
5         METHOD(Item, keyUp, float(entity, float, float, float))
6         METHOD(Item, mouseMove, float(entity, vector))
7         METHOD(Item, mousePress, float(entity, vector))
8         METHOD(Item, mouseDrag, float(entity, vector))
9         METHOD(Item, mouseRelease, float(entity, vector))
10         METHOD(Item, focusEnter, void(entity))
11         METHOD(Item, focusLeave, void(entity))
12         METHOD(Item, resizeNotify, void(entity, vector, vector, vector, vector))
13         METHOD(Item, relinquishFocus, void(entity))
14         METHOD(Item, showNotify, void(entity))
15         METHOD(Item, hideNotify, void(entity))
16         METHOD(Item, toString, string(entity))
17         METHOD(Item, destroy, void(entity))
18         ATTRIB(Item, focused, float, 0)
19         ATTRIB(Item, focusable, float, 0)
20         ATTRIB(Item, parent, entity, NULL)
21         ATTRIB(Item, preferredFocusPriority, float, 0)
22         ATTRIB(Item, origin, vector, '0 0 0')
23         ATTRIB(Item, size, vector, '0 0 0')
24         ATTRIB(Item, tooltip, string, string_null)
25 ENDCLASS(Item)
26 #endif
27
28 #ifdef IMPLEMENTATION
29 void Item_destroy(entity me)
30 {
31         // free memory associated with me
32 }
33
34 void Item_relinquishFocus(entity me)
35 {
36         if(me.parent)
37                 if(me.parent.instanceOfContainer)
38                         me.parent.setFocus(me.parent, NULL);
39 }
40
41 void Item_resizeNotify(entity me, vector relOrigin, vector relSize, vector absOrigin, vector absSize)
42 {
43         me.origin = absOrigin;
44         me.size = absSize;
45 }
46
47 float autocvar_menu_showboxes;
48 void Item_draw(entity me)
49 {
50         if(autocvar_menu_showboxes < 0)
51         {
52                 draw_Fill('0 0 0', '0.5 0.5 0', '1 0 1', -autocvar_menu_showboxes);
53                 draw_Fill('0.5 0.5 0', '0.5 0.5 0', '1 0 1', -autocvar_menu_showboxes);
54         }
55         if(autocvar_menu_showboxes > 0)
56         {
57                 draw_Fill('0 0 0', '1 1 0', '1 0 1', autocvar_menu_showboxes);
58         }
59 }
60
61 void Item_showNotify(entity me)
62 {
63 }
64
65 void Item_hideNotify(entity me)
66 {
67 }
68
69 float Item_keyDown(entity me, float scan, float ascii, float shift)
70 {
71         return 0; // unhandled
72 }
73
74 float Item_keyUp(entity me, float scan, float ascii, float shift)
75 {
76         return 0; // unhandled
77 }
78
79 float Item_mouseMove(entity me, vector pos)
80 {
81         return 0; // unhandled
82 }
83
84 float Item_mousePress(entity me, vector pos)
85 {
86         return 0; // unhandled
87 }
88
89 float Item_mouseDrag(entity me, vector pos)
90 {
91         return 0; // unhandled
92 }
93
94 float Item_mouseRelease(entity me, vector pos)
95 {
96         return 0; // unhandled
97 }
98
99 void Item_focusEnter(entity me)
100 {
101 }
102
103 void Item_focusLeave(entity me)
104 {
105 }
106
107 string Item_toString(entity me)
108 {
109         return string_null;
110 }
111 #endif