]> de.git.xonotic.org Git - xonotic/xonotic-data.pk3dir.git/blob - qcsrc/menu/item.c
Merge remote branch 'origin/master' into samual/updatecommands
[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 void Item_draw(entity me)
48 {
49 }
50
51 void Item_showNotify(entity me)
52 {
53 }
54
55 void Item_hideNotify(entity me)
56 {
57 }
58
59 float Item_keyDown(entity me, float scan, float ascii, float shift)
60 {
61         return 0; // unhandled
62 }
63
64 float Item_keyUp(entity me, float scan, float ascii, float shift)
65 {
66         return 0; // unhandled
67 }
68
69 float Item_mouseMove(entity me, vector pos)
70 {
71         return 0; // unhandled
72 }
73
74 float Item_mousePress(entity me, vector pos)
75 {
76         return 0; // unhandled
77 }
78
79 float Item_mouseDrag(entity me, vector pos)
80 {
81         return 0; // unhandled
82 }
83
84 float Item_mouseRelease(entity me, vector pos)
85 {
86         return 0; // unhandled
87 }
88
89 void Item_focusEnter(entity me)
90 {
91 }
92
93 void Item_focusLeave(entity me)
94 {
95 }
96
97 string Item_toString(entity me)
98 {
99         return string_null;
100 }
101 #endif