TDME2 1.9.121
GUIMouseEvent.h
Go to the documentation of this file.
1#pragma once
2
3#include <tdme/tdme.h>
6
7/**
8 * GUI mouse event
9 * @author Andreas Drewke
10 * @version $Id$
11 */
13{
14public:
22 };
23
24private:
25 int64_t time;
29 int x;
30 int y;
31 int button;
32 float wheelX;
33 float wheelY;
34 float wheelZ;
37 bool altDown;
40
41public:
42 /**
43 * Destructor
44 */
46
47 /**
48 * @return time in milliseconds
49 */
50 inline int64_t getTime() {
51 return time;
52 }
53
54 /**
55 * Set time
56 * @param time time
57 */
58 inline void setTime(int64_t time) {
59 this->time = time;
60 }
61
62 /**
63 * @return type
64 */
66 return type;
67 }
68
69 /**
70 * Set type
71 * @param type type
72 */
74 this->type = type;
75 }
76
77 /**
78 * @return x unscaled
79 */
80 inline int getXUnscaled() {
81 return xUnscaled;
82 }
83
84 /**
85 * Set x unscaled
86 * @param x x unscaled
87 */
88 inline void setXUnscaled(int xUnscaled) {
89 this->xUnscaled = xUnscaled;
90 }
91
92 /**
93 * @return y unscaled
94 */
95 inline int getYUnscaled() {
96 return yUnscaled;
97 }
98
99 /**
100 * Set y unscaled
101 * @param y y unscaled
102 */
103 inline void setYUnscaled(int yUnscaled) {
104 this->yUnscaled = yUnscaled;
105 }
106
107 /**
108 * @return x
109 */
110 inline int getX() {
111 return x;
112 }
113
114 /**
115 * Set x
116 * @param x x
117 */
118 inline void setX(int x) {
119 this->x = x;
120 }
121
122 /**
123 * @return y
124 */
125 inline int getY() {
126 return y;
127 }
128
129 /**
130 * Set y
131 * @param y y
132 */
133 inline void setY(int y) {
134 this->y = y;
135 }
136
137 /**
138 * @return button
139 */
140 inline int getButton() {
141 return button;
142 }
143
144 /**
145 * Set button
146 * @param button button
147 */
148 inline void setButton(int button) {
149 this->button = button;
150 }
151
152 /**
153 * @return wheel x
154 */
155 inline float getWheelX() {
156 return wheelX;
157 }
158
159 /**
160 * Set up wheel x
161 * @param wheelX wheel x
162 */
163 inline void setWheelX(float wheelX) {
164 this->wheelX = wheelX;
165 }
166
167 /**
168 * @return wheel y
169 */
170 inline float getWheelY() {
171 return wheelY;
172 }
173
174 /**
175 * Set up wheel y
176 * @param wheelY wheel y
177 */
178 inline void setWheelY(float wheelY) {
179 this->wheelY = wheelY;
180 }
181
182 /**
183 * @return wheel z
184 */
185 inline float getWheelZ() {
186 return wheelZ;
187 }
188
189 /**
190 * Set up wheel z
191 * @param wheelZ wheel z
192 */
193 inline void setWheelZ(float wheelZ) {
194 this->wheelZ = wheelZ;
195 }
196
197 /**
198 * @return is meta down
199 */
200 inline bool isMetaDown() {
201 return metaDown;
202 }
203
204 /**
205 * Set meta down
206 * @param metaDown meta down
207 */
208 inline void setMetaDown(bool metaDown) {
209 this->metaDown = metaDown;
210 }
211
212 /**
213 * @return control down
214 */
215 inline bool isControlDown() {
216 return controlDown;
217 }
218
219 /**
220 * Set control down
221 * @param controlDown control down
222 */
223 inline void setControlDown(bool controlDown) {
224 this->controlDown = controlDown;
225 }
226
227 /**
228 * @return is alt down
229 */
230 inline bool isAltDown() {
231 return altDown;
232 }
233
234 /**
235 * Set alt down
236 * @param altDown alt down
237 */
238 inline void setAltDown(bool altDown) {
239 this->altDown = altDown;
240 }
241
242 /**
243 * @return is shift down
244 */
245 inline bool isShiftDown() {
246 return shiftDown;
247 }
248
249 /**
250 * Set shift down
251 * @param shiftDown shiftDown
252 */
253 inline void setShiftDown(bool shiftDown) {
254 this->shiftDown = shiftDown;
255 }
256
257 /**
258 * @return processed
259 */
260 inline bool isProcessed() {
261 return processed;
262 }
263
264 /**
265 * Set processed
266 * @param processed processed
267 */
268 inline void setProcessed(bool processed) {
269 this->processed = processed;
270 }
271
272 /**
273 * Public constructor
274 */
276
277};
void setYUnscaled(int yUnscaled)
Set y unscaled.
void setAltDown(bool altDown)
Set alt down.
void setWheelX(float wheelX)
Set up wheel x.
void setProcessed(bool processed)
Set processed.
void setControlDown(bool controlDown)
Set control down.
void setWheelZ(float wheelZ)
Set up wheel z.
void setXUnscaled(int xUnscaled)
Set x unscaled.
Definition: GUIMouseEvent.h:88
void setTime(int64_t time)
Set time.
Definition: GUIMouseEvent.h:58
GUIMouseEvent()
Public constructor.
void setMetaDown(bool metaDown)
Set meta down.
void setButton(int button)
Set button.
void setShiftDown(bool shiftDown)
Set shift down.
void setType(GUIMouseEventType type)
Set type.
Definition: GUIMouseEvent.h:73
void setWheelY(float wheelY)
Set up wheel y.