]>
Commit | Line | Data |
---|---|---|
c801d85f | 1 | ///////////////////////////////////////////////////////////////////////////// |
bd83cb56 | 2 | // Name: wx/event.h |
c801d85f KB |
3 | // Purpose: Event classes |
4 | // Author: Julian Smart | |
5 | // Modified by: | |
6 | // Created: 01/02/97 | |
7 | // RCS-ID: $Id$ | |
bd83cb56 | 8 | // Copyright: (c) wxWindows team |
2b854a32 | 9 | // Licence: wxWindows licence |
c801d85f KB |
10 | ///////////////////////////////////////////////////////////////////////////// |
11 | ||
1648d51b VZ |
12 | #ifndef _WX_EVENT_H__ |
13 | #define _WX_EVENT_H__ | |
c801d85f | 14 | |
af49c4b8 | 15 | #if defined(__GNUG__) && !defined(__APPLE__) |
2b854a32 | 16 | #pragma interface "event.h" |
c801d85f KB |
17 | #endif |
18 | ||
19 | #include "wx/defs.h" | |
20 | #include "wx/object.h" | |
88a9f974 | 21 | #include "wx/clntdata.h" |
e90c1d2a VZ |
22 | |
23 | #if wxUSE_GUI | |
24 | #include "wx/gdicmn.h" | |
43b5058d | 25 | #include "wx/cursor.h" |
e90c1d2a | 26 | #endif |
42e69d6b | 27 | |
72cdf4c9 | 28 | #include "wx/thread.h" |
c801d85f | 29 | |
b5a98acd VZ |
30 | #include "wx/dynarray.h" |
31 | ||
e90c1d2a VZ |
32 | // ---------------------------------------------------------------------------- |
33 | // forward declarations | |
34 | // ---------------------------------------------------------------------------- | |
35 | ||
bddd7a8d | 36 | class WXDLLIMPEXP_BASE wxList; |
e90c1d2a VZ |
37 | |
38 | #if wxUSE_GUI | |
bddd7a8d VZ |
39 | class WXDLLIMPEXP_CORE wxDC; |
40 | class WXDLLIMPEXP_CORE wxMenu; | |
41 | class WXDLLIMPEXP_CORE wxWindow; | |
e90c1d2a VZ |
42 | #endif // wxUSE_GUI |
43 | ||
44 | // ---------------------------------------------------------------------------- | |
45 | // Event types | |
46 | // ---------------------------------------------------------------------------- | |
64693098 | 47 | |
cbee8f8d VZ |
48 | typedef int wxEventType; |
49 | ||
50 | // in previous versions of wxWindows the event types used to be constants | |
51 | // which created difficulties with custom/user event types definition | |
52 | // | |
53 | // starting from wxWindows 2.4 the event types are now dynamically assigned | |
54 | // using wxNewEventType() which solves this problem, however at price of | |
55 | // several incompatibilities: | |
56 | // | |
57 | // a) event table macros declaration changed, it now uses wxEventTableEntry | |
58 | // ctor instead of initialisation from an agregate - the macro | |
59 | // DECLARE_EVENT_TABLE_ENTRY may be used to write code which can compile | |
60 | // with all versions of wxWindows | |
61 | // | |
62 | // b) event types can't be used as switch() cases as they're not really | |
63 | // constant any more - there is no magic solution here, you just have to | |
64 | // change the switch()es to if()s | |
65 | // | |
66 | // if these are real problems for you, define WXWIN_COMPATIBILITY_EVENT_TYPES | |
67 | // to get 100% old behaviour, however you won't be able to use the libraries | |
68 | // using the new dynamic event type allocation in such case, so avoid it if | |
69 | // possible. | |
70 | ||
71 | #if WXWIN_COMPATIBILITY_EVENT_TYPES | |
72 | ||
d9e2e4c2 DE |
73 | #define DECLARE_EVENT_TABLE_ENTRY(type, winid, idLast, fn, obj) \ |
74 | { type, winid, idLast, fn, obj } | |
cbee8f8d | 75 | |
2e4df4bf VZ |
76 | #define BEGIN_DECLARE_EVENT_TYPES() enum { |
77 | #define END_DECLARE_EVENT_TYPES() }; | |
cbee8f8d | 78 | #define DECLARE_EVENT_TYPE(name, value) name = wxEVT_FIRST + value, |
fdb59905 | 79 | #define DECLARE_LOCAL_EVENT_TYPE(name, value) name = wxEVT_USER_FIRST + value, |
886dd7d2 VZ |
80 | #define DECLARE_EXPORTED_EVENT_TYPE(expdecl, name, value) \ |
81 | DECLARE_LOCAL_EVENT_TYPE(name, value) | |
2e4df4bf | 82 | #define DEFINE_EVENT_TYPE(name) |
1a40c31e | 83 | #define DEFINE_LOCAL_EVENT_TYPE(name) |
cbee8f8d | 84 | |
5527476f | 85 | |
cbee8f8d VZ |
86 | #else // !WXWIN_COMPATIBILITY_EVENT_TYPES |
87 | ||
d9e2e4c2 DE |
88 | #define DECLARE_EVENT_TABLE_ENTRY(type, winid, idLast, fn, obj) \ |
89 | wxEventTableEntry(type, winid, idLast, fn, obj) | |
cbee8f8d | 90 | |
b5a98acd VZ |
91 | #define EMPTY_PARAMETER_VALUE /* Fake macro parameter value */ |
92 | ||
2e4df4bf VZ |
93 | #define BEGIN_DECLARE_EVENT_TYPES() |
94 | #define END_DECLARE_EVENT_TYPES() | |
886dd7d2 VZ |
95 | #define DECLARE_EXPORTED_EVENT_TYPE(expdecl, name, value) \ |
96 | extern expdecl const wxEventType name; | |
85664da6 | 97 | #define DECLARE_EVENT_TYPE(name, value) \ |
bddd7a8d | 98 | DECLARE_EXPORTED_EVENT_TYPE(WXDLLIMPEXP_CORE, name, value) |
886dd7d2 | 99 | #define DECLARE_LOCAL_EVENT_TYPE(name, value) \ |
b5a98acd | 100 | DECLARE_EXPORTED_EVENT_TYPE(EMPTY_PARAMETER_VALUE, name, value) |
71499aaf | 101 | #define DEFINE_EVENT_TYPE(name) const wxEventType name = wxNewEventType(); |
886dd7d2 | 102 | #define DEFINE_LOCAL_EVENT_TYPE(name) DEFINE_EVENT_TYPE(name) |
cbee8f8d VZ |
103 | |
104 | // generate a new unique event type | |
bddd7a8d | 105 | extern WXDLLIMPEXP_BASE wxEventType wxNewEventType(); |
cbee8f8d VZ |
106 | |
107 | #endif // WXWIN_COMPATIBILITY_EVENT_TYPES/!WXWIN_COMPATIBILITY_EVENT_TYPES | |
108 | ||
2e4df4bf VZ |
109 | BEGIN_DECLARE_EVENT_TYPES() |
110 | ||
cbee8f8d | 111 | #if WXWIN_COMPATIBILITY_EVENT_TYPES |
cbee8f8d VZ |
112 | wxEVT_NULL = 0, |
113 | wxEVT_FIRST = 10000, | |
2e4df4bf | 114 | wxEVT_USER_FIRST = wxEVT_FIRST + 2000, |
cbee8f8d | 115 | #else // !WXWIN_COMPATIBILITY_EVENT_TYPES |
6164f93c VZ |
116 | // it is important to still have these as constants to avoid |
117 | // initialization order related problems | |
bddd7a8d VZ |
118 | DECLARE_EXPORTED_EVENT_TYPE(WXDLLIMPEXP_BASE, wxEVT_NULL, 0) |
119 | DECLARE_EXPORTED_EVENT_TYPE(WXDLLIMPEXP_BASE, wxEVT_FIRST, 10000) | |
120 | DECLARE_EXPORTED_EVENT_TYPE(WXDLLIMPEXP_BASE, wxEVT_USER_FIRST, wxEVT_FIRST + 2000) | |
cbee8f8d VZ |
121 | #endif // WXWIN_COMPATIBILITY_EVENT_TYPES/!WXWIN_COMPATIBILITY_EVENT_TYPES |
122 | ||
2e4df4bf VZ |
123 | DECLARE_EVENT_TYPE(wxEVT_COMMAND_BUTTON_CLICKED, 1) |
124 | DECLARE_EVENT_TYPE(wxEVT_COMMAND_CHECKBOX_CLICKED, 2) | |
125 | DECLARE_EVENT_TYPE(wxEVT_COMMAND_CHOICE_SELECTED, 3) | |
126 | DECLARE_EVENT_TYPE(wxEVT_COMMAND_LISTBOX_SELECTED, 4) | |
127 | DECLARE_EVENT_TYPE(wxEVT_COMMAND_LISTBOX_DOUBLECLICKED, 5) | |
128 | DECLARE_EVENT_TYPE(wxEVT_COMMAND_CHECKLISTBOX_TOGGLED, 6) | |
ad0bae85 VZ |
129 | // now they are in wx/textctrl.h |
130 | #if WXWIN_COMPATIBILITY_EVENT_TYPES | |
2e4df4bf VZ |
131 | DECLARE_EVENT_TYPE(wxEVT_COMMAND_TEXT_UPDATED, 7) |
132 | DECLARE_EVENT_TYPE(wxEVT_COMMAND_TEXT_ENTER, 8) | |
ad0bae85 | 133 | DECLARE_EVENT_TYPE(wxEVT_COMMAND_TEXT_URL, 13) |
d7eee191 | 134 | DECLARE_EVENT_TYPE(wxEVT_COMMAND_TEXT_MAXLEN, 14) |
ad0bae85 | 135 | #endif // WXWIN_COMPATIBILITY_EVENT_TYPES |
2e4df4bf VZ |
136 | DECLARE_EVENT_TYPE(wxEVT_COMMAND_MENU_SELECTED, 9) |
137 | DECLARE_EVENT_TYPE(wxEVT_COMMAND_SLIDER_UPDATED, 10) | |
138 | DECLARE_EVENT_TYPE(wxEVT_COMMAND_RADIOBOX_SELECTED, 11) | |
139 | DECLARE_EVENT_TYPE(wxEVT_COMMAND_RADIOBUTTON_SELECTED, 12) | |
140 | ||
141 | // wxEVT_COMMAND_SCROLLBAR_UPDATED is now obsolete since we use | |
142 | // wxEVT_SCROLL... events | |
143 | ||
144 | DECLARE_EVENT_TYPE(wxEVT_COMMAND_SCROLLBAR_UPDATED, 13) | |
145 | DECLARE_EVENT_TYPE(wxEVT_COMMAND_VLBOX_SELECTED, 14) | |
146 | DECLARE_EVENT_TYPE(wxEVT_COMMAND_COMBOBOX_SELECTED, 15) | |
147 | DECLARE_EVENT_TYPE(wxEVT_COMMAND_TOOL_RCLICKED, 16) | |
148 | DECLARE_EVENT_TYPE(wxEVT_COMMAND_TOOL_ENTER, 17) | |
149 | DECLARE_EVENT_TYPE(wxEVT_COMMAND_SPINCTRL_UPDATED, 18) | |
150 | ||
151 | // Sockets and timers send events, too | |
bddd7a8d | 152 | DECLARE_EXPORTED_EVENT_TYPE(WXDLLIMPEXP_BASE, wxEVT_SOCKET, 50) |
2e4df4bf VZ |
153 | DECLARE_EVENT_TYPE(wxEVT_TIMER , 80) |
154 | ||
155 | // Mouse event types | |
156 | DECLARE_EVENT_TYPE(wxEVT_LEFT_DOWN, 100) | |
157 | DECLARE_EVENT_TYPE(wxEVT_LEFT_UP, 101) | |
158 | DECLARE_EVENT_TYPE(wxEVT_MIDDLE_DOWN, 102) | |
159 | DECLARE_EVENT_TYPE(wxEVT_MIDDLE_UP, 103) | |
160 | DECLARE_EVENT_TYPE(wxEVT_RIGHT_DOWN, 104) | |
161 | DECLARE_EVENT_TYPE(wxEVT_RIGHT_UP, 105) | |
162 | DECLARE_EVENT_TYPE(wxEVT_MOTION, 106) | |
163 | DECLARE_EVENT_TYPE(wxEVT_ENTER_WINDOW, 107) | |
164 | DECLARE_EVENT_TYPE(wxEVT_LEAVE_WINDOW, 108) | |
165 | DECLARE_EVENT_TYPE(wxEVT_LEFT_DCLICK, 109) | |
166 | DECLARE_EVENT_TYPE(wxEVT_MIDDLE_DCLICK, 110) | |
167 | DECLARE_EVENT_TYPE(wxEVT_RIGHT_DCLICK, 111) | |
168 | DECLARE_EVENT_TYPE(wxEVT_SET_FOCUS, 112) | |
169 | DECLARE_EVENT_TYPE(wxEVT_KILL_FOCUS, 113) | |
456bc6d9 VZ |
170 | DECLARE_EVENT_TYPE(wxEVT_CHILD_FOCUS, 114) |
171 | DECLARE_EVENT_TYPE(wxEVT_MOUSEWHEEL, 115) | |
2e4df4bf VZ |
172 | |
173 | // Non-client mouse events | |
174 | DECLARE_EVENT_TYPE(wxEVT_NC_LEFT_DOWN, 200) | |
175 | DECLARE_EVENT_TYPE(wxEVT_NC_LEFT_UP, 201) | |
176 | DECLARE_EVENT_TYPE(wxEVT_NC_MIDDLE_DOWN, 202) | |
177 | DECLARE_EVENT_TYPE(wxEVT_NC_MIDDLE_UP, 203) | |
178 | DECLARE_EVENT_TYPE(wxEVT_NC_RIGHT_DOWN, 204) | |
179 | DECLARE_EVENT_TYPE(wxEVT_NC_RIGHT_UP, 205) | |
180 | DECLARE_EVENT_TYPE(wxEVT_NC_MOTION, 206) | |
181 | DECLARE_EVENT_TYPE(wxEVT_NC_ENTER_WINDOW, 207) | |
182 | DECLARE_EVENT_TYPE(wxEVT_NC_LEAVE_WINDOW, 208) | |
183 | DECLARE_EVENT_TYPE(wxEVT_NC_LEFT_DCLICK, 209) | |
184 | DECLARE_EVENT_TYPE(wxEVT_NC_MIDDLE_DCLICK, 210) | |
185 | DECLARE_EVENT_TYPE(wxEVT_NC_RIGHT_DCLICK, 211) | |
186 | ||
187 | // Character input event type | |
188 | DECLARE_EVENT_TYPE(wxEVT_CHAR, 212) | |
189 | DECLARE_EVENT_TYPE(wxEVT_CHAR_HOOK, 213) | |
190 | DECLARE_EVENT_TYPE(wxEVT_NAVIGATION_KEY, 214) | |
191 | DECLARE_EVENT_TYPE(wxEVT_KEY_DOWN, 215) | |
192 | DECLARE_EVENT_TYPE(wxEVT_KEY_UP, 216) | |
5048c832 JS |
193 | #if wxUSE_HOTKEY |
194 | DECLARE_EVENT_TYPE(wxEVT_HOTKEY, 217) | |
195 | #endif | |
2e4df4bf VZ |
196 | // Set cursor event |
197 | DECLARE_EVENT_TYPE(wxEVT_SET_CURSOR, 230) | |
198 | ||
e8b669d3 | 199 | // wxScrollBar and wxSlider event identifiers |
2e4df4bf VZ |
200 | DECLARE_EVENT_TYPE(wxEVT_SCROLL_TOP, 300) |
201 | DECLARE_EVENT_TYPE(wxEVT_SCROLL_BOTTOM, 301) | |
202 | DECLARE_EVENT_TYPE(wxEVT_SCROLL_LINEUP, 302) | |
203 | DECLARE_EVENT_TYPE(wxEVT_SCROLL_LINEDOWN, 303) | |
204 | DECLARE_EVENT_TYPE(wxEVT_SCROLL_PAGEUP, 304) | |
205 | DECLARE_EVENT_TYPE(wxEVT_SCROLL_PAGEDOWN, 305) | |
206 | DECLARE_EVENT_TYPE(wxEVT_SCROLL_THUMBTRACK, 306) | |
207 | DECLARE_EVENT_TYPE(wxEVT_SCROLL_THUMBRELEASE, 307) | |
e8b669d3 | 208 | DECLARE_EVENT_TYPE(wxEVT_SCROLL_ENDSCROLL, 308) |
2e4df4bf VZ |
209 | |
210 | // Scroll events from wxWindow | |
211 | DECLARE_EVENT_TYPE(wxEVT_SCROLLWIN_TOP, 320) | |
212 | DECLARE_EVENT_TYPE(wxEVT_SCROLLWIN_BOTTOM, 321) | |
213 | DECLARE_EVENT_TYPE(wxEVT_SCROLLWIN_LINEUP, 322) | |
214 | DECLARE_EVENT_TYPE(wxEVT_SCROLLWIN_LINEDOWN, 323) | |
215 | DECLARE_EVENT_TYPE(wxEVT_SCROLLWIN_PAGEUP, 324) | |
216 | DECLARE_EVENT_TYPE(wxEVT_SCROLLWIN_PAGEDOWN, 325) | |
217 | DECLARE_EVENT_TYPE(wxEVT_SCROLLWIN_THUMBTRACK, 326) | |
218 | DECLARE_EVENT_TYPE(wxEVT_SCROLLWIN_THUMBRELEASE, 327) | |
219 | ||
220 | // System events | |
221 | DECLARE_EVENT_TYPE(wxEVT_SIZE, 400) | |
222 | DECLARE_EVENT_TYPE(wxEVT_MOVE, 401) | |
223 | DECLARE_EVENT_TYPE(wxEVT_CLOSE_WINDOW, 402) | |
224 | DECLARE_EVENT_TYPE(wxEVT_END_SESSION, 403) | |
225 | DECLARE_EVENT_TYPE(wxEVT_QUERY_END_SESSION, 404) | |
226 | DECLARE_EVENT_TYPE(wxEVT_ACTIVATE_APP, 405) | |
227 | DECLARE_EVENT_TYPE(wxEVT_POWER, 406) | |
228 | DECLARE_EVENT_TYPE(wxEVT_ACTIVATE, 409) | |
229 | DECLARE_EVENT_TYPE(wxEVT_CREATE, 410) | |
230 | DECLARE_EVENT_TYPE(wxEVT_DESTROY, 411) | |
231 | DECLARE_EVENT_TYPE(wxEVT_SHOW, 412) | |
232 | DECLARE_EVENT_TYPE(wxEVT_ICONIZE, 413) | |
233 | DECLARE_EVENT_TYPE(wxEVT_MAXIMIZE, 414) | |
234 | DECLARE_EVENT_TYPE(wxEVT_MOUSE_CAPTURE_CHANGED, 415) | |
235 | DECLARE_EVENT_TYPE(wxEVT_PAINT, 416) | |
236 | DECLARE_EVENT_TYPE(wxEVT_ERASE_BACKGROUND, 417) | |
237 | DECLARE_EVENT_TYPE(wxEVT_NC_PAINT, 418) | |
238 | DECLARE_EVENT_TYPE(wxEVT_PAINT_ICON, 419) | |
ccef86c7 VZ |
239 | DECLARE_EVENT_TYPE(wxEVT_MENU_OPEN, 420) |
240 | DECLARE_EVENT_TYPE(wxEVT_MENU_CLOSE, 421) | |
2e4df4bf | 241 | DECLARE_EVENT_TYPE(wxEVT_MENU_HIGHLIGHT, 422) |
ccef86c7 | 242 | // DECLARE_EVENT_TYPE(wxEVT_POPUP_MENU_INIT, 423) -- free slot |
2e4df4bf VZ |
243 | DECLARE_EVENT_TYPE(wxEVT_CONTEXT_MENU, 424) |
244 | DECLARE_EVENT_TYPE(wxEVT_SYS_COLOUR_CHANGED, 425) | |
574c939e KB |
245 | DECLARE_EVENT_TYPE(wxEVT_DISPLAY_CHANGED, 426) |
246 | DECLARE_EVENT_TYPE(wxEVT_SETTING_CHANGED, 427) | |
247 | DECLARE_EVENT_TYPE(wxEVT_QUERY_NEW_PALETTE, 428) | |
248 | DECLARE_EVENT_TYPE(wxEVT_PALETTE_CHANGED, 429) | |
249 | DECLARE_EVENT_TYPE(wxEVT_JOY_BUTTON_DOWN, 430) | |
250 | DECLARE_EVENT_TYPE(wxEVT_JOY_BUTTON_UP, 431) | |
251 | DECLARE_EVENT_TYPE(wxEVT_JOY_MOVE, 432) | |
252 | DECLARE_EVENT_TYPE(wxEVT_JOY_ZMOVE, 433) | |
253 | DECLARE_EVENT_TYPE(wxEVT_DROP_FILES, 434) | |
254 | DECLARE_EVENT_TYPE(wxEVT_DRAW_ITEM, 435) | |
255 | DECLARE_EVENT_TYPE(wxEVT_MEASURE_ITEM, 436) | |
256 | DECLARE_EVENT_TYPE(wxEVT_COMPARE_ITEM, 437) | |
257 | DECLARE_EVENT_TYPE(wxEVT_INIT_DIALOG, 438) | |
bddd7a8d | 258 | DECLARE_EXPORTED_EVENT_TYPE(WXDLLIMPEXP_BASE, wxEVT_IDLE, 439) |
574c939e | 259 | DECLARE_EVENT_TYPE(wxEVT_UPDATE_UI, 440) |
5706de1c JS |
260 | DECLARE_EVENT_TYPE(wxEVT_SIZING, 441) |
261 | DECLARE_EVENT_TYPE(wxEVT_MOVING, 4442) | |
2e4df4bf VZ |
262 | |
263 | // Generic command events | |
264 | // Note: a click is a higher-level event than button down/up | |
265 | DECLARE_EVENT_TYPE(wxEVT_COMMAND_LEFT_CLICK, 500) | |
266 | DECLARE_EVENT_TYPE(wxEVT_COMMAND_LEFT_DCLICK, 501) | |
267 | DECLARE_EVENT_TYPE(wxEVT_COMMAND_RIGHT_CLICK, 502) | |
268 | DECLARE_EVENT_TYPE(wxEVT_COMMAND_RIGHT_DCLICK, 503) | |
269 | DECLARE_EVENT_TYPE(wxEVT_COMMAND_SET_FOCUS, 504) | |
270 | DECLARE_EVENT_TYPE(wxEVT_COMMAND_KILL_FOCUS, 505) | |
271 | DECLARE_EVENT_TYPE(wxEVT_COMMAND_ENTER, 506) | |
272 | ||
273 | // Help events | |
274 | DECLARE_EVENT_TYPE(wxEVT_HELP, 1050) | |
275 | DECLARE_EVENT_TYPE(wxEVT_DETAILED_HELP, 1051) | |
276 | ||
277 | END_DECLARE_EVENT_TYPES() | |
96f6c703 | 278 | |
cbee8f8d VZ |
279 | // these 2 events are the same |
280 | #define wxEVT_COMMAND_TOOL_CLICKED wxEVT_COMMAND_MENU_SELECTED | |
96f6c703 | 281 | |
ad0bae85 | 282 | // ---------------------------------------------------------------------------- |
77d4384e | 283 | // Compatibility |
ad0bae85 VZ |
284 | // ---------------------------------------------------------------------------- |
285 | ||
286 | // this event is also used by wxComboBox and wxSpinCtrl which don't include | |
287 | // wx/textctrl.h in all ports [yet], so declare it here as well | |
288 | // | |
289 | // still, any new code using it should include wx/textctrl.h explicitly | |
290 | #if !WXWIN_COMPATIBILITY_EVENT_TYPES | |
bddd7a8d | 291 | extern const wxEventType WXDLLIMPEXP_CORE wxEVT_COMMAND_TEXT_UPDATED; |
ad0bae85 | 292 | #endif |
c801d85f KB |
293 | |
294 | #if WXWIN_COMPATIBILITY | |
295 | ||
296 | #define wxEVENT_TYPE_BUTTON_COMMAND wxEVT_COMMAND_BUTTON_CLICKED | |
297 | #define wxEVENT_TYPE_CHECKBOX_COMMAND wxEVT_COMMAND_CHECKBOX_CLICKED | |
298 | #define wxEVENT_TYPE_CHOICE_COMMAND wxEVT_COMMAND_CHOICE_SELECTED | |
299 | #define wxEVENT_TYPE_LISTBOX_COMMAND wxEVT_COMMAND_LISTBOX_SELECTED | |
300 | #define wxEVENT_TYPE_LISTBOX_DCLICK_COMMAND wxEVT_COMMAND_LISTBOX_DOUBLECLICKED | |
301 | #define wxEVENT_TYPE_TEXT_COMMAND wxEVT_COMMAND_TEXT_UPDATED | |
302 | #define wxEVENT_TYPE_MULTITEXT_COMMAND wxEVT_COMMAND_TEXT_UPDATED | |
303 | #define wxEVENT_TYPE_MENU_COMMAND wxEVT_COMMAND_MENU_SELECTED | |
304 | #define wxEVENT_TYPE_SLIDER_COMMAND wxEVT_COMMAND_SLIDER_UPDATED | |
305 | #define wxEVENT_TYPE_RADIOBOX_COMMAND wxEVT_COMMAND_RADIOBOX_SELECTED | |
306 | #define wxEVENT_TYPE_RADIOBUTTON_COMMAND wxEVT_COMMAND_RADIOBUTTON_SELECTED | |
307 | #define wxEVENT_TYPE_TEXT_ENTER_COMMAND wxEVT_COMMAND_TEXT_ENTER | |
308 | #define wxEVENT_TYPE_SET_FOCUS wxEVT_SET_FOCUS | |
309 | #define wxEVENT_TYPE_KILL_FOCUS wxEVT_KILL_FOCUS | |
310 | #define wxEVENT_TYPE_SCROLLBAR_COMMAND wxEVT_COMMAND_SCROLLBAR_UPDATED | |
311 | #define wxEVENT_TYPE_VIRT_LISTBOX_COMMAND wxEVT_COMMAND_VLBOX_SELECTED | |
312 | #define wxEVENT_TYPE_COMBOBOX_COMMAND wxEVT_COMMAND_COMBOBOX_SELECTED | |
313 | ||
314 | #define wxEVENT_TYPE_LEFT_DOWN wxEVT_LEFT_DOWN | |
315 | #define wxEVENT_TYPE_LEFT_UP wxEVT_LEFT_UP | |
316 | #define wxEVENT_TYPE_MIDDLE_DOWN wxEVT_MIDDLE_DOWN | |
317 | #define wxEVENT_TYPE_MIDDLE_UP wxEVT_MIDDLE_UP | |
318 | #define wxEVENT_TYPE_RIGHT_DOWN wxEVT_RIGHT_DOWN | |
319 | #define wxEVENT_TYPE_RIGHT_UP wxEVT_RIGHT_UP | |
320 | #define wxEVENT_TYPE_MOTION wxEVT_MOTION | |
321 | #define wxEVENT_TYPE_ENTER_WINDOW wxEVT_ENTER_WINDOW | |
322 | #define wxEVENT_TYPE_LEAVE_WINDOW wxEVT_LEAVE_WINDOW | |
323 | #define wxEVENT_TYPE_LEFT_DCLICK wxEVT_LEFT_DCLICK | |
324 | #define wxEVENT_TYPE_MIDDLE_DCLICK wxEVT_MIDDLE_DCLICK | |
325 | #define wxEVENT_TYPE_RIGHT_DCLICK wxEVT_RIGHT_DCLICK | |
326 | #define wxEVENT_TYPE_CHAR wxEVT_CHAR | |
327 | #define wxEVENT_TYPE_SCROLL_TOP wxEVT_SCROLL_TOP | |
328 | #define wxEVENT_TYPE_SCROLL_BOTTOM wxEVT_SCROLL_BOTTOM | |
329 | #define wxEVENT_TYPE_SCROLL_LINEUP wxEVT_SCROLL_LINEUP | |
330 | #define wxEVENT_TYPE_SCROLL_LINEDOWN wxEVT_SCROLL_LINEDOWN | |
331 | #define wxEVENT_TYPE_SCROLL_PAGEUP wxEVT_SCROLL_PAGEUP | |
332 | #define wxEVENT_TYPE_SCROLL_PAGEDOWN wxEVT_SCROLL_PAGEDOWN | |
333 | #define wxEVENT_TYPE_SCROLL_THUMBTRACK wxEVT_SCROLL_THUMBTRACK | |
e8b669d3 | 334 | #define wxEVENT_TYPE_SCROLL_ENDSCROLL wxEVT_SCROLL_ENDSCROLL |
c801d85f | 335 | |
2b854a32 | 336 | #endif // WXWIN_COMPATIBILITY |
c801d85f | 337 | |
1648d51b VZ |
338 | // the predefined constants for the number of times we propagate event |
339 | // upwards window child-parent chain | |
340 | enum Propagation_state | |
341 | { | |
342 | // don't propagate it at all | |
343 | wxEVENT_PROPAGATE_NONE = 0, | |
344 | ||
345 | // propagate it until it is processed | |
346 | wxEVENT_PROPAGATE_MAX = INT_MAX | |
347 | }; | |
348 | ||
c801d85f KB |
349 | /* |
350 | * wxWindows events, covering all interesting things that might happen | |
351 | * (button clicking, resizing, setting text in widgets, etc.). | |
352 | * | |
353 | * For each completely new event type, derive a new event class. | |
354 | * An event CLASS represents a C++ class defining a range of similar event TYPES; | |
355 | * examples are canvas events, panel item command events. | |
356 | * An event TYPE is a unique identifier for a particular system event, | |
357 | * such as a button press or a listbox deselection. | |
358 | * | |
359 | */ | |
360 | ||
bddd7a8d | 361 | class WXDLLIMPEXP_BASE wxEvent : public wxObject |
c801d85f | 362 | { |
e6a6feba GD |
363 | private: |
364 | wxEvent& operator=(const wxEvent&); | |
abcbaea7 | 365 | |
8e72b8b5 RR |
366 | protected: |
367 | wxEvent(const wxEvent&); // for implementing Clone() | |
c801d85f KB |
368 | |
369 | public: | |
d9e2e4c2 | 370 | wxEvent(int winid = 0, wxEventType commandType = wxEVT_NULL ); |
2b854a32 VZ |
371 | |
372 | void SetEventType(wxEventType typ) { m_eventType = typ; } | |
373 | wxEventType GetEventType() const { return m_eventType; } | |
374 | wxObject *GetEventObject() const { return m_eventObject; } | |
375 | void SetEventObject(wxObject *obj) { m_eventObject = obj; } | |
376 | long GetTimestamp() const { return m_timeStamp; } | |
377 | void SetTimestamp(long ts = 0) { m_timeStamp = ts; } | |
378 | int GetId() const { return m_id; } | |
379 | void SetId(int Id) { m_id = Id; } | |
380 | ||
381 | // Can instruct event processor that we wish to ignore this event | |
382 | // (treat as if the event table entry had not been found): this must be done | |
383 | // to allow the event processing by the base classes (calling event.Skip() | |
384 | // is the analog of calling the base class verstion of a virtual function) | |
385 | void Skip(bool skip = TRUE) { m_skipped = skip; } | |
386 | bool GetSkipped() const { return m_skipped; }; | |
c801d85f | 387 | |
acd15a3f VZ |
388 | // this function is used to create a copy of the event polymorphically and |
389 | // all derived classes must implement it because otherwise wxPostEvent() | |
390 | // for them wouldn't work (it needs to do a copy of the event) | |
391 | virtual wxEvent *Clone() const = 0; | |
a737331d | 392 | |
1648d51b VZ |
393 | // Implementation only: this test is explicitlty anti OO and this functions |
394 | // exists only for optimization purposes. | |
395 | bool IsCommandEvent() const { return m_isCommandEvent; } | |
396 | ||
397 | // Determine if this event should be propagating to the parent window. | |
398 | bool ShouldPropagate() const | |
399 | { return m_propagationLevel != wxEVENT_PROPAGATE_NONE; } | |
400 | ||
401 | // Stop an event from propagating to its parent window, returns the old | |
402 | // propagation level value | |
403 | int StopPropagation() | |
404 | { | |
405 | int propagationLevel = m_propagationLevel; | |
406 | m_propagationLevel = wxEVENT_PROPAGATE_NONE; | |
407 | return propagationLevel; | |
408 | } | |
409 | ||
410 | // Resume the event propagation by restoring the propagation level | |
411 | // (returned by StopPropagation()) | |
412 | void ResumePropagation(int propagationLevel) | |
413 | { | |
414 | m_propagationLevel = propagationLevel; | |
415 | } | |
416 | ||
c801d85f | 417 | public: |
2b854a32 | 418 | wxObject* m_eventObject; |
2b854a32 VZ |
419 | wxEventType m_eventType; |
420 | long m_timeStamp; | |
421 | int m_id; | |
422 | wxObject* m_callbackUserData; | |
1648d51b VZ |
423 | |
424 | protected: | |
425 | // the propagation level: while it is positive, we propagate the event to | |
426 | // the parent window (if any) | |
427 | // | |
428 | // this one doesn't have to be public, we don't have to worry about | |
429 | // backwards compatibility as it is new | |
430 | int m_propagationLevel; | |
431 | ||
432 | public: | |
42e69d6b | 433 | bool m_skipped; |
193bf013 | 434 | bool m_isCommandEvent; |
1648d51b | 435 | |
8e72b8b5 | 436 | private: |
1648d51b VZ |
437 | // it needs to access our m_propagationLevel |
438 | friend class WXDLLIMPEXP_BASE wxPropagateOnce; | |
439 | ||
8e72b8b5 | 440 | DECLARE_ABSTRACT_CLASS(wxEvent) |
c801d85f KB |
441 | }; |
442 | ||
1648d51b VZ |
443 | /* |
444 | * Helper class to temporarily change an event not to propagate. | |
445 | */ | |
446 | class WXDLLIMPEXP_BASE wxPropagationDisabler | |
447 | { | |
448 | public: | |
449 | wxPropagationDisabler(wxEvent& event) : m_event(event) | |
450 | { | |
451 | m_propagationLevelOld = m_event.StopPropagation(); | |
452 | } | |
453 | ||
454 | ~wxPropagationDisabler() | |
455 | { | |
456 | m_event.ResumePropagation(m_propagationLevelOld); | |
457 | } | |
458 | ||
459 | private: | |
460 | wxEvent& m_event; | |
461 | int m_propagationLevelOld; | |
fc7a2a60 VZ |
462 | |
463 | DECLARE_NO_COPY_CLASS(wxPropagationDisabler) | |
1648d51b VZ |
464 | }; |
465 | ||
466 | /* | |
467 | * Another one to temporarily lower propagation level. | |
468 | */ | |
469 | class WXDLLIMPEXP_BASE wxPropagateOnce | |
470 | { | |
471 | public: | |
472 | wxPropagateOnce(wxEvent& event) : m_event(event) | |
473 | { | |
474 | wxASSERT_MSG( m_event.m_propagationLevel > 0, | |
475 | _T("shouldn't be used unless ShouldPropagate()!") ); | |
476 | ||
477 | m_event.m_propagationLevel--; | |
478 | } | |
479 | ||
480 | ~wxPropagateOnce() | |
481 | { | |
482 | m_event.m_propagationLevel++; | |
483 | } | |
484 | ||
485 | private: | |
486 | wxEvent& m_event; | |
fc7a2a60 VZ |
487 | |
488 | DECLARE_NO_COPY_CLASS(wxPropagateOnce) | |
1648d51b VZ |
489 | }; |
490 | ||
e90c1d2a VZ |
491 | #if wxUSE_GUI |
492 | ||
1648d51b | 493 | |
c801d85f KB |
494 | // Item or menu event class |
495 | /* | |
496 | wxEVT_COMMAND_BUTTON_CLICKED | |
497 | wxEVT_COMMAND_CHECKBOX_CLICKED | |
498 | wxEVT_COMMAND_CHOICE_SELECTED | |
499 | wxEVT_COMMAND_LISTBOX_SELECTED | |
500 | wxEVT_COMMAND_LISTBOX_DOUBLECLICKED | |
501 | wxEVT_COMMAND_TEXT_UPDATED | |
502 | wxEVT_COMMAND_TEXT_ENTER | |
503 | wxEVT_COMMAND_MENU_SELECTED | |
504 | wxEVT_COMMAND_SLIDER_UPDATED | |
505 | wxEVT_COMMAND_RADIOBOX_SELECTED | |
506 | wxEVT_COMMAND_RADIOBUTTON_SELECTED | |
507 | wxEVT_COMMAND_SCROLLBAR_UPDATED | |
508 | wxEVT_COMMAND_VLBOX_SELECTED | |
509 | wxEVT_COMMAND_COMBOBOX_SELECTED | |
1db8dc4a | 510 | wxEVT_COMMAND_TOGGLEBUTTON_CLICKED |
c801d85f KB |
511 | */ |
512 | ||
bddd7a8d | 513 | class WXDLLIMPEXP_CORE wxCommandEvent : public wxEvent |
c801d85f | 514 | { |
2b854a32 | 515 | public: |
d9e2e4c2 | 516 | wxCommandEvent(wxEventType commandType = wxEVT_NULL, int winid = 0); |
c801d85f | 517 | |
e6a6feba | 518 | wxCommandEvent(const wxCommandEvent& event) |
497dbbd3 VZ |
519 | : wxEvent(event), |
520 | m_commandString(event.m_commandString), | |
521 | m_commandInt(event.m_commandInt), | |
522 | m_extraLong(event.m_extraLong), | |
523 | m_clientData(event.m_clientData), | |
524 | m_clientObject(event.m_clientObject) | |
e6a6feba GD |
525 | { } |
526 | ||
2b854a32 VZ |
527 | // Set/Get client data from controls |
528 | void SetClientData(void* clientData) { m_clientData = clientData; } | |
529 | void *GetClientData() const { return m_clientData; } | |
c801d85f | 530 | |
2b854a32 VZ |
531 | // Set/Get client object from controls |
532 | void SetClientObject(wxClientData* clientObject) { m_clientObject = clientObject; } | |
533 | void *GetClientObject() const { return m_clientObject; } | |
f5e27805 | 534 | |
2b854a32 VZ |
535 | // Get listbox selection if single-choice |
536 | int GetSelection() const { return m_commandInt; } | |
c801d85f | 537 | |
2b854a32 | 538 | // Set/Get listbox/choice selection string |
29006414 | 539 | void SetString(const wxString& s) { m_commandString = s; } |
7214297d | 540 | wxString GetString() const { return m_commandString; } |
c801d85f | 541 | |
2b854a32 | 542 | // Get checkbox value |
3ca6a5f0 | 543 | bool IsChecked() const { return m_commandInt != 0; } |
c801d85f | 544 | |
2b854a32 VZ |
545 | // TRUE if the listbox event was a selection. |
546 | bool IsSelection() const { return (m_extraLong != 0); } | |
c801d85f | 547 | |
2b854a32 VZ |
548 | void SetExtraLong(long extraLong) { m_extraLong = extraLong; } |
549 | long GetExtraLong() const { return m_extraLong ; } | |
c801d85f | 550 | |
2b854a32 VZ |
551 | void SetInt(int i) { m_commandInt = i; } |
552 | long GetInt() const { return m_commandInt ; } | |
c801d85f | 553 | |
8e72b8b5 | 554 | virtual wxEvent *Clone() const { return new wxCommandEvent(*this); } |
aadbdf11 | 555 | |
0c394212 | 556 | #if WXWIN_COMPATIBILITY_2 |
3ca6a5f0 BP |
557 | bool Checked() const { return IsChecked(); } |
558 | #endif // WXWIN_COMPATIBILITY_2 | |
559 | ||
2b854a32 | 560 | public: |
29006414 | 561 | wxString m_commandString; // String event argument |
2b854a32 VZ |
562 | int m_commandInt; |
563 | long m_extraLong; // Additional information (e.g. select/deselect) | |
564 | void* m_clientData; // Arbitrary client data | |
565 | wxClientData* m_clientObject; // Arbitrary client object | |
f97500b8 | 566 | |
8e72b8b5 | 567 | private: |
fc7a2a60 | 568 | DECLARE_DYNAMIC_CLASS_NO_ASSIGN(wxCommandEvent) |
c801d85f KB |
569 | }; |
570 | ||
fd3f686c VZ |
571 | // this class adds a possibility to react (from the user) code to a control |
572 | // notification: allow or veto the operation being reported. | |
bddd7a8d | 573 | class WXDLLIMPEXP_CORE wxNotifyEvent : public wxCommandEvent |
fd3f686c VZ |
574 | { |
575 | public: | |
d9e2e4c2 DE |
576 | wxNotifyEvent(wxEventType commandType = wxEVT_NULL, int winid = 0) |
577 | : wxCommandEvent(commandType, winid) | |
497dbbd3 | 578 | { m_bAllow = TRUE; } |
e6a6feba GD |
579 | |
580 | wxNotifyEvent(const wxNotifyEvent& event) | |
581 | : wxCommandEvent(event) | |
497dbbd3 | 582 | { m_bAllow = event.m_bAllow; } |
fd3f686c | 583 | |
23f681ec | 584 | // veto the operation (usually it's allowed by default) |
fd3f686c VZ |
585 | void Veto() { m_bAllow = FALSE; } |
586 | ||
23f681ec VZ |
587 | // allow the operation if it was disabled by default |
588 | void Allow() { m_bAllow = TRUE; } | |
589 | ||
fd3f686c VZ |
590 | // for implementation code only: is the operation allowed? |
591 | bool IsAllowed() const { return m_bAllow; } | |
592 | ||
8e72b8b5 | 593 | virtual wxEvent *Clone() const { return new wxNotifyEvent(*this); } |
924ef850 | 594 | |
fd3f686c VZ |
595 | private: |
596 | bool m_bAllow; | |
597 | ||
8e72b8b5 | 598 | private: |
fc7a2a60 | 599 | DECLARE_DYNAMIC_CLASS_NO_ASSIGN(wxNotifyEvent) |
fd3f686c VZ |
600 | }; |
601 | ||
d1367c3d | 602 | // Scroll event class, derived form wxCommandEvent. wxScrollEvents are |
e8b669d3 | 603 | // sent by wxSlider and wxScrollBar. |
c801d85f KB |
604 | /* |
605 | wxEVT_SCROLL_TOP | |
606 | wxEVT_SCROLL_BOTTOM | |
607 | wxEVT_SCROLL_LINEUP | |
608 | wxEVT_SCROLL_LINEDOWN | |
609 | wxEVT_SCROLL_PAGEUP | |
610 | wxEVT_SCROLL_PAGEDOWN | |
611 | wxEVT_SCROLL_THUMBTRACK | |
7d56fb8f | 612 | wxEVT_SCROLL_THUMBRELEASE |
e8b669d3 | 613 | wxEVT_SCROLL_ENDSCROLL |
c801d85f KB |
614 | */ |
615 | ||
bddd7a8d | 616 | class WXDLLIMPEXP_CORE wxScrollEvent : public wxCommandEvent |
c801d85f | 617 | { |
2b854a32 VZ |
618 | public: |
619 | wxScrollEvent(wxEventType commandType = wxEVT_NULL, | |
d9e2e4c2 | 620 | int winid = 0, int pos = 0, int orient = 0); |
2b854a32 VZ |
621 | |
622 | int GetOrientation() const { return (int) m_extraLong ; } | |
623 | int GetPosition() const { return m_commandInt ; } | |
624 | void SetOrientation(int orient) { m_extraLong = (long) orient; } | |
625 | void SetPosition(int pos) { m_commandInt = pos; } | |
f97500b8 | 626 | |
8e72b8b5 | 627 | virtual wxEvent *Clone() const { return new wxScrollEvent(*this); } |
f97500b8 | 628 | |
8e72b8b5 | 629 | private: |
fc7a2a60 | 630 | DECLARE_DYNAMIC_CLASS_NO_ASSIGN(wxScrollEvent) |
c801d85f KB |
631 | }; |
632 | ||
d1367c3d RR |
633 | // ScrollWin event class, derived fom wxEvent. wxScrollWinEvents |
634 | // are sent by wxWindow. | |
635 | /* | |
636 | wxEVT_SCROLLWIN_TOP | |
637 | wxEVT_SCROLLWIN_BOTTOM | |
638 | wxEVT_SCROLLWIN_LINEUP | |
639 | wxEVT_SCROLLWIN_LINEDOWN | |
640 | wxEVT_SCROLLWIN_PAGEUP | |
641 | wxEVT_SCROLLWIN_PAGEDOWN | |
642 | wxEVT_SCROLLWIN_THUMBTRACK | |
7d56fb8f | 643 | wxEVT_SCROLLWIN_THUMBRELEASE |
d1367c3d RR |
644 | */ |
645 | ||
bddd7a8d | 646 | class WXDLLIMPEXP_CORE wxScrollWinEvent : public wxEvent |
d1367c3d | 647 | { |
d1367c3d RR |
648 | public: |
649 | wxScrollWinEvent(wxEventType commandType = wxEVT_NULL, | |
650 | int pos = 0, int orient = 0); | |
b2697d42 VZ |
651 | wxScrollWinEvent(const wxScrollWinEvent & event) : wxEvent(event) |
652 | { m_commandInt = event.m_commandInt; | |
653 | m_extraLong = event.m_extraLong; } | |
d1367c3d RR |
654 | |
655 | int GetOrientation() const { return (int) m_extraLong ; } | |
656 | int GetPosition() const { return m_commandInt ; } | |
657 | void SetOrientation(int orient) { m_extraLong = (long) orient; } | |
658 | void SetPosition(int pos) { m_commandInt = pos; } | |
659 | ||
8e72b8b5 | 660 | virtual wxEvent *Clone() const { return new wxScrollWinEvent(*this); } |
1e6feb95 | 661 | |
d1367c3d | 662 | public: |
8e72b8b5 | 663 | int m_commandInt; |
20947e08 | 664 | long m_extraLong; |
1e6feb95 | 665 | |
8e72b8b5 | 666 | private: |
fc7a2a60 | 667 | DECLARE_DYNAMIC_CLASS_NO_ASSIGN(wxScrollWinEvent) |
d1367c3d RR |
668 | }; |
669 | ||
c801d85f KB |
670 | // Mouse event class |
671 | ||
672 | /* | |
673 | wxEVT_LEFT_DOWN | |
674 | wxEVT_LEFT_UP | |
675 | wxEVT_MIDDLE_DOWN | |
676 | wxEVT_MIDDLE_UP | |
677 | wxEVT_RIGHT_DOWN | |
678 | wxEVT_RIGHT_UP | |
679 | wxEVT_MOTION | |
680 | wxEVT_ENTER_WINDOW | |
681 | wxEVT_LEAVE_WINDOW | |
682 | wxEVT_LEFT_DCLICK | |
683 | wxEVT_MIDDLE_DCLICK | |
684 | wxEVT_RIGHT_DCLICK | |
685 | wxEVT_NC_LEFT_DOWN | |
686 | wxEVT_NC_LEFT_UP, | |
687 | wxEVT_NC_MIDDLE_DOWN, | |
688 | wxEVT_NC_MIDDLE_UP, | |
689 | wxEVT_NC_RIGHT_DOWN, | |
690 | wxEVT_NC_RIGHT_UP, | |
691 | wxEVT_NC_MOTION, | |
692 | wxEVT_NC_ENTER_WINDOW, | |
693 | wxEVT_NC_LEAVE_WINDOW, | |
694 | wxEVT_NC_LEFT_DCLICK, | |
695 | wxEVT_NC_MIDDLE_DCLICK, | |
696 | wxEVT_NC_RIGHT_DCLICK, | |
697 | */ | |
698 | ||
497dbbd3 VZ |
699 | // the symbolic names for the mouse buttons |
700 | enum | |
701 | { | |
702 | wxMOUSE_BTN_ANY = -1, | |
703 | wxMOUSE_BTN_NONE = -1, | |
704 | wxMOUSE_BTN_LEFT = 0, | |
705 | wxMOUSE_BTN_MIDDLE = 1, | |
706 | wxMOUSE_BTN_RIGHT = 2 | |
707 | }; | |
708 | ||
bddd7a8d | 709 | class WXDLLIMPEXP_CORE wxMouseEvent : public wxEvent |
c801d85f | 710 | { |
2b854a32 VZ |
711 | public: |
712 | wxMouseEvent(wxEventType mouseType = wxEVT_NULL); | |
b2697d42 VZ |
713 | wxMouseEvent(const wxMouseEvent& event) : wxEvent(event) |
714 | { Assign(event); } | |
c801d85f | 715 | |
2b854a32 | 716 | // Was it a button event? (*doesn't* mean: is any button *down*?) |
497dbbd3 | 717 | bool IsButton() const { return Button(wxMOUSE_BTN_ANY); } |
c801d85f | 718 | |
2b854a32 | 719 | // Was it a down event from button 1, 2 or 3 or any? |
497dbbd3 | 720 | bool ButtonDown(int but = wxMOUSE_BTN_ANY) const; |
c801d85f | 721 | |
2b854a32 | 722 | // Was it a dclick event from button 1, 2 or 3 or any? |
497dbbd3 | 723 | bool ButtonDClick(int but = wxMOUSE_BTN_ANY) const; |
c801d85f | 724 | |
2b854a32 | 725 | // Was it a up event from button 1, 2 or 3 or any? |
497dbbd3 | 726 | bool ButtonUp(int but = wxMOUSE_BTN_ANY) const; |
c801d85f | 727 | |
2b854a32 VZ |
728 | // Was the given button 1,2,3 or any changing state? |
729 | bool Button(int but) const; | |
c801d85f | 730 | |
2b854a32 VZ |
731 | // Was the given button 1,2,3 or any in Down state? |
732 | bool ButtonIsDown(int but) const; | |
c801d85f | 733 | |
497dbbd3 | 734 | // Get the button which is changing state (wxMOUSE_BTN_NONE if none) |
1e6feb95 VZ |
735 | int GetButton() const; |
736 | ||
2b854a32 VZ |
737 | // Find state of shift/control keys |
738 | bool ControlDown() const { return m_controlDown; } | |
739 | bool MetaDown() const { return m_metaDown; } | |
740 | bool AltDown() const { return m_altDown; } | |
741 | bool ShiftDown() const { return m_shiftDown; } | |
c801d85f | 742 | |
2b854a32 VZ |
743 | // Find which event was just generated |
744 | bool LeftDown() const { return (m_eventType == wxEVT_LEFT_DOWN); } | |
745 | bool MiddleDown() const { return (m_eventType == wxEVT_MIDDLE_DOWN); } | |
746 | bool RightDown() const { return (m_eventType == wxEVT_RIGHT_DOWN); } | |
c801d85f | 747 | |
2b854a32 VZ |
748 | bool LeftUp() const { return (m_eventType == wxEVT_LEFT_UP); } |
749 | bool MiddleUp() const { return (m_eventType == wxEVT_MIDDLE_UP); } | |
750 | bool RightUp() const { return (m_eventType == wxEVT_RIGHT_UP); } | |
c801d85f | 751 | |
2b854a32 VZ |
752 | bool LeftDClick() const { return (m_eventType == wxEVT_LEFT_DCLICK); } |
753 | bool MiddleDClick() const { return (m_eventType == wxEVT_MIDDLE_DCLICK); } | |
754 | bool RightDClick() const { return (m_eventType == wxEVT_RIGHT_DCLICK); } | |
c801d85f | 755 | |
2b854a32 VZ |
756 | // Find the current state of the mouse buttons (regardless |
757 | // of current event type) | |
758 | bool LeftIsDown() const { return m_leftDown; } | |
759 | bool MiddleIsDown() const { return m_middleDown; } | |
760 | bool RightIsDown() const { return m_rightDown; } | |
c801d85f | 761 | |
2b854a32 VZ |
762 | // True if a button is down and the mouse is moving |
763 | bool Dragging() const | |
764 | { | |
765 | return ((m_eventType == wxEVT_MOTION) && | |
766 | (LeftIsDown() || MiddleIsDown() || RightIsDown())); | |
767 | } | |
c801d85f | 768 | |
2b854a32 VZ |
769 | // True if the mouse is moving, and no button is down |
770 | bool Moving() const { return (m_eventType == wxEVT_MOTION); } | |
c801d85f | 771 | |
2b854a32 VZ |
772 | // True if the mouse is just entering the window |
773 | bool Entering() const { return (m_eventType == wxEVT_ENTER_WINDOW); } | |
c801d85f | 774 | |
2b854a32 VZ |
775 | // True if the mouse is just leaving the window |
776 | bool Leaving() const { return (m_eventType == wxEVT_LEAVE_WINDOW); } | |
c801d85f | 777 | |
2b854a32 | 778 | // Find the position of the event |
20947e08 | 779 | void GetPosition(wxCoord *xpos, wxCoord *ypos) const |
b02da6b1 VZ |
780 | { |
781 | if (xpos) | |
20947e08 | 782 | *xpos = m_x; |
b02da6b1 VZ |
783 | if (ypos) |
784 | *ypos = m_y; | |
785 | } | |
786 | ||
0e528b99 | 787 | #ifndef __WIN16__ |
bf57d1ad | 788 | void GetPosition(long *xpos, long *ypos) const |
b02da6b1 VZ |
789 | { |
790 | if (xpos) | |
20947e08 | 791 | *xpos = (long)m_x; |
b02da6b1 | 792 | if (ypos) |
bf57d1ad | 793 | *ypos = (long)m_y; |
b02da6b1 | 794 | } |
0e528b99 | 795 | #endif |
c801d85f | 796 | |
2b854a32 VZ |
797 | // Find the position of the event |
798 | wxPoint GetPosition() const { return wxPoint(m_x, m_y); } | |
c801d85f | 799 | |
2b854a32 VZ |
800 | // Find the logical position of the event given the DC |
801 | wxPoint GetLogicalPosition(const wxDC& dc) const ; | |
c801d85f | 802 | |
2b854a32 VZ |
803 | // Compatibility |
804 | #if WXWIN_COMPATIBILITY | |
20947e08 | 805 | void Position(long *xpos, long *ypos) const |
b02da6b1 VZ |
806 | { |
807 | if (xpos) | |
20947e08 | 808 | *xpos = (long)m_x; |
b02da6b1 VZ |
809 | if (ypos) |
810 | *ypos = (long)m_y; | |
811 | } | |
812 | ||
2b854a32 VZ |
813 | void Position(float *xpos, float *ypos) const |
814 | { | |
815 | *xpos = (float) m_x; *ypos = (float) m_y; | |
816 | } | |
817 | #endif // WXWIN_COMPATIBILITY | |
c801d85f | 818 | |
2b854a32 | 819 | // Get X position |
6cedba09 | 820 | wxCoord GetX() const { return m_x; } |
c801d85f | 821 | |
2b854a32 | 822 | // Get Y position |
6cedba09 | 823 | wxCoord GetY() const { return m_y; } |
c801d85f | 824 | |
d2c52078 RD |
825 | // Get wheel rotation, positive or negative indicates direction of |
826 | // rotation. Current devices all send an event when rotation is equal to | |
827 | // +/-WheelDelta, but this allows for finer resolution devices to be | |
828 | // created in the future. Because of this you shouldn't assume that one | |
829 | // event is equal to 1 line or whatever, but you should be able to either | |
830 | // do partial line scrolling or wait until +/-WheelDelta rotation values | |
831 | // have been accumulated before scrolling. | |
832 | int GetWheelRotation() const { return m_wheelRotation; } | |
833 | ||
834 | // Get wheel delta, normally 120. This is the threshold for action to be | |
835 | // taken, and one such action (for example, scrolling one increment) | |
836 | // should occur for each delta. | |
837 | int GetWheelDelta() const { return m_wheelDelta; } | |
838 | ||
839 | // Returns the configured number of lines (or whatever) to be scrolled per | |
840 | // wheel action. Defaults to one. | |
841 | int GetLinesPerAction() const { return m_linesPerAction; } | |
842 | ||
9b9337da | 843 | // Is the system set to do page scrolling? |
c2bbeff0 | 844 | bool IsPageScroll() const { return ((unsigned int)m_linesPerAction == UINT_MAX); } |
9b9337da | 845 | |
8e72b8b5 | 846 | virtual wxEvent *Clone() const { return new wxMouseEvent(*this); } |
aadbdf11 | 847 | |
55f9eba3 | 848 | wxMouseEvent& operator=(const wxMouseEvent& event) { Assign(event); return *this; } |
c7d176e2 | 849 | |
c801d85f | 850 | public: |
b02da6b1 VZ |
851 | wxCoord m_x, m_y; |
852 | ||
2b854a32 VZ |
853 | bool m_leftDown; |
854 | bool m_middleDown; | |
855 | bool m_rightDown; | |
856 | ||
857 | bool m_controlDown; | |
858 | bool m_shiftDown; | |
859 | bool m_altDown; | |
860 | bool m_metaDown; | |
d2c52078 RD |
861 | |
862 | int m_wheelRotation; | |
863 | int m_wheelDelta; | |
864 | int m_linesPerAction; | |
1e6feb95 | 865 | |
abcbaea7 VZ |
866 | protected: |
867 | void Assign(const wxMouseEvent& evt); | |
868 | ||
1e6feb95 VZ |
869 | private: |
870 | DECLARE_DYNAMIC_CLASS(wxMouseEvent) | |
c801d85f KB |
871 | }; |
872 | ||
43b5058d VZ |
873 | // Cursor set event |
874 | ||
875 | /* | |
876 | wxEVT_SET_CURSOR | |
877 | */ | |
878 | ||
bddd7a8d | 879 | class WXDLLIMPEXP_CORE wxSetCursorEvent : public wxEvent |
43b5058d VZ |
880 | { |
881 | public: | |
8e72b8b5 | 882 | wxSetCursorEvent(wxCoord x = 0, wxCoord y = 0) |
497dbbd3 VZ |
883 | : wxEvent(0, wxEVT_SET_CURSOR), |
884 | m_x(x), m_y(y), m_cursor() | |
e6a6feba | 885 | { } |
43b5058d | 886 | |
b2697d42 VZ |
887 | wxSetCursorEvent(const wxSetCursorEvent & event) |
888 | : wxEvent(event), | |
889 | m_x(event.m_x), | |
890 | m_y(event.m_y), | |
891 | m_cursor(event.m_cursor) | |
892 | { } | |
1d2eddff | 893 | |
43b5058d VZ |
894 | wxCoord GetX() const { return m_x; } |
895 | wxCoord GetY() const { return m_y; } | |
896 | ||
897 | void SetCursor(const wxCursor& cursor) { m_cursor = cursor; } | |
898 | const wxCursor& GetCursor() const { return m_cursor; } | |
899 | bool HasCursor() const { return m_cursor.Ok(); } | |
900 | ||
8e72b8b5 | 901 | virtual wxEvent *Clone() const { return new wxSetCursorEvent(*this); } |
f97500b8 | 902 | |
43b5058d VZ |
903 | private: |
904 | wxCoord m_x, m_y; | |
905 | wxCursor m_cursor; | |
f97500b8 | 906 | |
8e72b8b5 | 907 | private: |
fc7a2a60 | 908 | DECLARE_DYNAMIC_CLASS_NO_ASSIGN(wxSetCursorEvent) |
43b5058d VZ |
909 | }; |
910 | ||
c801d85f KB |
911 | // Keyboard input event class |
912 | ||
913 | /* | |
914 | wxEVT_CHAR | |
915 | wxEVT_CHAR_HOOK | |
4ce81a75 | 916 | wxEVT_KEY_DOWN |
c801d85f | 917 | wxEVT_KEY_UP |
5048c832 | 918 | wxEVT_HOTKEY |
c801d85f KB |
919 | */ |
920 | ||
bddd7a8d | 921 | class WXDLLIMPEXP_CORE wxKeyEvent : public wxEvent |
c801d85f | 922 | { |
c801d85f | 923 | public: |
2b854a32 | 924 | wxKeyEvent(wxEventType keyType = wxEVT_NULL); |
b2697d42 | 925 | wxKeyEvent(const wxKeyEvent& evt); |
c801d85f | 926 | |
2b854a32 VZ |
927 | // Find state of shift/control keys |
928 | bool ControlDown() const { return m_controlDown; } | |
929 | bool MetaDown() const { return m_metaDown; } | |
930 | bool AltDown() const { return m_altDown; } | |
931 | bool ShiftDown() const { return m_shiftDown; } | |
f6bcfd97 | 932 | |
d11710cb VZ |
933 | // exclude MetaDown() from HasModifiers() because NumLock under X is often |
934 | // configured as mod2 modifier, yet the key events even when it is pressed | |
935 | // should be processed normally, not like Ctrl- or Alt-key | |
936 | bool HasModifiers() const { return ControlDown() || AltDown(); } | |
f6bcfd97 BP |
937 | |
938 | // get the key code: an ASCII7 char or an element of wxKeyCode enum | |
939 | int GetKeyCode() const { return (int)m_keyCode; } | |
c801d85f | 940 | |
9c7df356 VZ |
941 | // get the raw key code (platform-dependent) |
942 | wxUint32 GetRawKeyCode() const { return m_rawCode; } | |
943 | ||
944 | // get the raw key flags (platform-dependent) | |
945 | wxUint32 GetRawKeyFlags() const { return m_rawFlags; } | |
946 | ||
2b854a32 | 947 | // Find the position of the event |
b02da6b1 VZ |
948 | void GetPosition(wxCoord *xpos, wxCoord *ypos) const |
949 | { | |
20947e08 | 950 | if (xpos) *xpos = m_x; |
b02da6b1 VZ |
951 | if (ypos) *ypos = m_y; |
952 | } | |
953 | ||
0e528b99 | 954 | #ifndef __WIN16__ |
bf57d1ad | 955 | void GetPosition(long *xpos, long *ypos) const |
b02da6b1 | 956 | { |
20947e08 | 957 | if (xpos) *xpos = (long)m_x; |
bf57d1ad | 958 | if (ypos) *ypos = (long)m_y; |
b02da6b1 | 959 | } |
0e528b99 | 960 | #endif |
803ef874 JS |
961 | |
962 | wxPoint GetPosition() const | |
963 | { return wxPoint(m_x, m_y); } | |
c801d85f | 964 | |
2b854a32 | 965 | // Get X position |
b02da6b1 | 966 | wxCoord GetX() const { return m_x; } |
c801d85f | 967 | |
2b854a32 | 968 | // Get Y position |
b02da6b1 | 969 | wxCoord GetY() const { return m_y; } |
c801d85f | 970 | |
12a3f227 RL |
971 | // deprecated, Use GetKeyCode instead. |
972 | wxDEPRECATED( long KeyCode() const ); | |
f6bcfd97 | 973 | |
8e72b8b5 | 974 | virtual wxEvent *Clone() const { return new wxKeyEvent(*this); } |
f97500b8 VZ |
975 | |
976 | // we do need to copy wxKeyEvent sometimes (in wxTreeCtrl code, for | |
977 | // example) | |
978 | wxKeyEvent& operator=(const wxKeyEvent& evt) | |
979 | { | |
980 | m_x = evt.m_x; | |
981 | m_y = evt.m_y; | |
982 | ||
983 | m_keyCode = evt.m_keyCode; | |
984 | ||
985 | m_controlDown = evt.m_controlDown; | |
986 | m_shiftDown = evt.m_shiftDown; | |
987 | m_altDown = evt.m_altDown; | |
988 | m_metaDown = evt.m_metaDown; | |
989 | m_scanCode = evt.m_scanCode; | |
9c7df356 VZ |
990 | m_rawCode = evt.m_rawCode; |
991 | m_rawFlags = evt.m_rawFlags; | |
f97500b8 VZ |
992 | |
993 | return *this; | |
994 | } | |
995 | ||
2b854a32 | 996 | public: |
b02da6b1 VZ |
997 | wxCoord m_x, m_y; |
998 | ||
2b854a32 | 999 | long m_keyCode; |
b02da6b1 | 1000 | |
2b854a32 VZ |
1001 | bool m_controlDown; |
1002 | bool m_shiftDown; | |
1003 | bool m_altDown; | |
1004 | bool m_metaDown; | |
b0e813a0 | 1005 | bool m_scanCode; |
f97500b8 | 1006 | |
2b5f62a0 VZ |
1007 | #if wxUSE_UNICODE |
1008 | // This contains the full Unicode character | |
1009 | // in a character events in Unicode mode | |
1010 | wxChar m_uniChar; | |
1011 | #endif | |
1012 | ||
1013 | // these fields contain the platform-specific information about | |
1014 | // key that was pressed | |
9c7df356 VZ |
1015 | wxUint32 m_rawCode; |
1016 | wxUint32 m_rawFlags; | |
1017 | ||
8e72b8b5 RR |
1018 | private: |
1019 | DECLARE_DYNAMIC_CLASS(wxKeyEvent) | |
c801d85f KB |
1020 | }; |
1021 | ||
1022 | // Size event class | |
1023 | /* | |
1024 | wxEVT_SIZE | |
1025 | */ | |
1026 | ||
bddd7a8d | 1027 | class WXDLLIMPEXP_CORE wxSizeEvent : public wxEvent |
c801d85f | 1028 | { |
2b854a32 | 1029 | public: |
497dbbd3 | 1030 | wxSizeEvent() : wxEvent(0, wxEVT_SIZE) |
e6a6feba | 1031 | { } |
d9e2e4c2 DE |
1032 | wxSizeEvent(const wxSize& sz, int winid = 0) |
1033 | : wxEvent(winid, wxEVT_SIZE), | |
497dbbd3 | 1034 | m_size(sz) |
e6a6feba | 1035 | { } |
1d2eddff | 1036 | wxSizeEvent(const wxSizeEvent & event) |
b2697d42 | 1037 | : wxEvent(event), |
5706de1c | 1038 | m_size(event.m_size), m_rect(event.m_rect) |
b2697d42 | 1039 | { } |
5706de1c | 1040 | wxSizeEvent(const wxRect& rect, int id = 0) |
e00865fa | 1041 | : m_size(rect.GetSize()), m_rect(rect) |
5706de1c | 1042 | { m_eventType = wxEVT_SIZING; m_id = id; } |
c2bbeff0 | 1043 | |
2b854a32 | 1044 | wxSize GetSize() const { return m_size; } |
5706de1c JS |
1045 | wxRect GetRect() const { return m_rect; } |
1046 | void SetRect(wxRect rect) { m_rect = rect; } | |
aadbdf11 | 1047 | |
8e72b8b5 RR |
1048 | virtual wxEvent *Clone() const { return new wxSizeEvent(*this); } |
1049 | ||
1050 | public: | |
1051 | wxSize m_size; | |
5706de1c | 1052 | wxRect m_rect; // Used for wxEVT_SIZING |
8e72b8b5 | 1053 | |
f97500b8 | 1054 | private: |
fc7a2a60 | 1055 | DECLARE_DYNAMIC_CLASS_NO_ASSIGN(wxSizeEvent) |
c801d85f KB |
1056 | }; |
1057 | ||
1058 | // Move event class | |
1059 | ||
1060 | /* | |
1061 | wxEVT_MOVE | |
1062 | */ | |
1063 | ||
bddd7a8d | 1064 | class WXDLLIMPEXP_CORE wxMoveEvent : public wxEvent |
c801d85f | 1065 | { |
2b854a32 | 1066 | public: |
e6a6feba GD |
1067 | wxMoveEvent() |
1068 | : wxEvent(0, wxEVT_MOVE) | |
e6a6feba | 1069 | { } |
d9e2e4c2 DE |
1070 | wxMoveEvent(const wxPoint& pos, int winid = 0) |
1071 | : wxEvent(winid, wxEVT_MOVE), | |
497dbbd3 | 1072 | m_pos(pos) |
e6a6feba | 1073 | { } |
1d2eddff JS |
1074 | wxMoveEvent(const wxMoveEvent& event) |
1075 | : wxEvent(event), | |
b2697d42 VZ |
1076 | m_pos(event.m_pos) |
1077 | { } | |
5706de1c JS |
1078 | wxMoveEvent(const wxRect& rect, int id = 0) |
1079 | : m_pos(rect.GetPosition()), m_rect(rect) | |
1080 | { m_eventType = wxEVT_MOVING; m_id = id; } | |
c2bbeff0 | 1081 | |
2b854a32 | 1082 | wxPoint GetPosition() const { return m_pos; } |
5706de1c JS |
1083 | wxRect GetRect() const { return m_rect; } |
1084 | void SetRect(wxRect rect) { m_rect = rect; } | |
aadbdf11 | 1085 | |
8e72b8b5 | 1086 | virtual wxEvent *Clone() const { return new wxMoveEvent(*this); } |
f97500b8 | 1087 | |
8e72b8b5 | 1088 | wxPoint m_pos; |
5706de1c | 1089 | wxRect m_rect; |
f97500b8 | 1090 | |
8e72b8b5 | 1091 | private: |
fc7a2a60 | 1092 | DECLARE_DYNAMIC_CLASS_NO_ASSIGN(wxMoveEvent) |
c801d85f KB |
1093 | }; |
1094 | ||
1095 | // Paint event class | |
1096 | /* | |
1097 | wxEVT_PAINT | |
1098 | wxEVT_NC_PAINT | |
1099 | wxEVT_PAINT_ICON | |
1100 | */ | |
1101 | ||
b078fa02 JS |
1102 | #if defined(__WXDEBUG__) && (defined(__WXMSW__) || defined(__WXPM__)) |
1103 | // see comments in src/msw|os2/dcclient.cpp where g_isPainting is defined | |
bddd7a8d | 1104 | extern WXDLLIMPEXP_CORE int g_isPainting; |
edccf428 VZ |
1105 | #endif // debug |
1106 | ||
bddd7a8d | 1107 | class WXDLLIMPEXP_CORE wxPaintEvent : public wxEvent |
c801d85f | 1108 | { |
2b854a32 | 1109 | public: |
edccf428 | 1110 | wxPaintEvent(int Id = 0) |
e6a6feba | 1111 | : wxEvent(Id, wxEVT_PAINT) |
edccf428 | 1112 | { |
b078fa02 | 1113 | #if defined(__WXDEBUG__) && (defined(__WXMSW__) || defined(__WXPM__)) |
edccf428 VZ |
1114 | // set the internal flag for the duration of processing of WM_PAINT |
1115 | g_isPainting++; | |
1116 | #endif // debug | |
1117 | } | |
1118 | ||
b078fa02 | 1119 | #if defined(__WXDEBUG__) && (defined(__WXMSW__) || defined(__WXPM__)) |
edccf428 VZ |
1120 | ~wxPaintEvent() |
1121 | { | |
1122 | g_isPainting--; | |
1123 | } | |
1124 | #endif // debug | |
8e72b8b5 RR |
1125 | |
1126 | virtual wxEvent *Clone() const { return new wxPaintEvent(*this); } | |
f97500b8 | 1127 | |
8e72b8b5 | 1128 | private: |
fc7a2a60 | 1129 | DECLARE_DYNAMIC_CLASS_NO_ASSIGN(wxPaintEvent) |
c801d85f KB |
1130 | }; |
1131 | ||
bddd7a8d | 1132 | class WXDLLIMPEXP_CORE wxNcPaintEvent : public wxEvent |
1e6feb95 VZ |
1133 | { |
1134 | public: | |
d9e2e4c2 DE |
1135 | wxNcPaintEvent(int winid = 0) |
1136 | : wxEvent(winid, wxEVT_NC_PAINT) | |
e6a6feba | 1137 | { } |
f97500b8 | 1138 | |
8e72b8b5 | 1139 | virtual wxEvent *Clone() const { return new wxNcPaintEvent(*this); } |
1e6feb95 VZ |
1140 | |
1141 | private: | |
fc7a2a60 | 1142 | DECLARE_DYNAMIC_CLASS_NO_ASSIGN(wxNcPaintEvent) |
1e6feb95 VZ |
1143 | }; |
1144 | ||
c801d85f KB |
1145 | // Erase background event class |
1146 | /* | |
1147 | wxEVT_ERASE_BACKGROUND | |
1148 | */ | |
1149 | ||
bddd7a8d | 1150 | class WXDLLIMPEXP_CORE wxEraseEvent : public wxEvent |
c801d85f | 1151 | { |
2b854a32 | 1152 | public: |
2b854a32 | 1153 | wxEraseEvent(int Id = 0, wxDC *dc = (wxDC *) NULL) |
497dbbd3 VZ |
1154 | : wxEvent(Id, wxEVT_ERASE_BACKGROUND), |
1155 | m_dc(dc) | |
e6a6feba GD |
1156 | { } |
1157 | ||
1158 | wxEraseEvent(const wxEraseEvent& event) | |
497dbbd3 VZ |
1159 | : wxEvent(event), |
1160 | m_dc(event.m_dc) | |
e6a6feba | 1161 | { } |
f97500b8 | 1162 | |
2b854a32 | 1163 | wxDC *GetDC() const { return m_dc; } |
aadbdf11 | 1164 | |
8e72b8b5 | 1165 | virtual wxEvent *Clone() const { return new wxEraseEvent(*this); } |
f97500b8 | 1166 | |
8e72b8b5 RR |
1167 | wxDC *m_dc; |
1168 | ||
1169 | private: | |
fc7a2a60 | 1170 | DECLARE_DYNAMIC_CLASS_NO_ASSIGN(wxEraseEvent) |
c801d85f KB |
1171 | }; |
1172 | ||
1173 | // Focus event class | |
1174 | /* | |
1175 | wxEVT_SET_FOCUS | |
1176 | wxEVT_KILL_FOCUS | |
1177 | */ | |
1178 | ||
bddd7a8d | 1179 | class WXDLLIMPEXP_CORE wxFocusEvent : public wxEvent |
c801d85f | 1180 | { |
2b854a32 | 1181 | public: |
d9e2e4c2 DE |
1182 | wxFocusEvent(wxEventType type = wxEVT_NULL, int winid = 0) |
1183 | : wxEvent(winid, type) | |
497dbbd3 | 1184 | { m_win = NULL; } |
e6a6feba GD |
1185 | |
1186 | wxFocusEvent(const wxFocusEvent& event) | |
1187 | : wxEvent(event) | |
497dbbd3 | 1188 | { m_win = event.m_win; } |
1e6feb95 | 1189 | |
8e72b8b5 | 1190 | // The window associated with this event is the window which had focus |
1e6feb95 | 1191 | // before for SET event and the window which will have focus for the KILL |
8e72b8b5 | 1192 | // one. NB: it may be NULL in both cases! |
1e6feb95 VZ |
1193 | wxWindow *GetWindow() const { return m_win; } |
1194 | void SetWindow(wxWindow *win) { m_win = win; } | |
1195 | ||
8e72b8b5 | 1196 | virtual wxEvent *Clone() const { return new wxFocusEvent(*this); } |
f97500b8 | 1197 | |
1e6feb95 VZ |
1198 | private: |
1199 | wxWindow *m_win; | |
1200 | ||
8e72b8b5 | 1201 | private: |
fc7a2a60 | 1202 | DECLARE_DYNAMIC_CLASS_NO_ASSIGN(wxFocusEvent) |
c801d85f KB |
1203 | }; |
1204 | ||
456bc6d9 | 1205 | // wxChildFocusEvent notifies the parent that a child has got the focus: unlike |
1648d51b | 1206 | // wxFocusEvent it is propagated upwards the window chain |
bddd7a8d | 1207 | class WXDLLIMPEXP_CORE wxChildFocusEvent : public wxCommandEvent |
456bc6d9 VZ |
1208 | { |
1209 | public: | |
1210 | wxChildFocusEvent(wxWindow *win = NULL); | |
1211 | ||
1212 | wxWindow *GetWindow() const { return (wxWindow *)GetEventObject(); } | |
1213 | ||
8e72b8b5 | 1214 | virtual wxEvent *Clone() const { return new wxChildFocusEvent(*this); } |
f97500b8 | 1215 | |
8e72b8b5 | 1216 | private: |
fc7a2a60 | 1217 | DECLARE_DYNAMIC_CLASS_NO_ASSIGN(wxChildFocusEvent) |
456bc6d9 VZ |
1218 | }; |
1219 | ||
c801d85f KB |
1220 | // Activate event class |
1221 | /* | |
1222 | wxEVT_ACTIVATE | |
1223 | wxEVT_ACTIVATE_APP | |
1224 | */ | |
1225 | ||
bddd7a8d | 1226 | class WXDLLIMPEXP_CORE wxActivateEvent : public wxEvent |
c801d85f | 1227 | { |
2b854a32 VZ |
1228 | public: |
1229 | wxActivateEvent(wxEventType type = wxEVT_NULL, bool active = TRUE, int Id = 0) | |
e6a6feba | 1230 | : wxEvent(Id, type) |
497dbbd3 | 1231 | { m_active = active; } |
1d2eddff JS |
1232 | wxActivateEvent(const wxActivateEvent& event) |
1233 | : wxEvent(event) | |
b2697d42 | 1234 | { m_active = event.m_active; } |
c2bbeff0 | 1235 | |
2b854a32 | 1236 | bool GetActive() const { return m_active; } |
c801d85f | 1237 | |
8e72b8b5 | 1238 | virtual wxEvent *Clone() const { return new wxActivateEvent(*this); } |
aadbdf11 | 1239 | |
2b854a32 VZ |
1240 | private: |
1241 | bool m_active; | |
8e72b8b5 RR |
1242 | |
1243 | private: | |
fc7a2a60 | 1244 | DECLARE_DYNAMIC_CLASS_NO_ASSIGN(wxActivateEvent) |
c801d85f KB |
1245 | }; |
1246 | ||
1247 | // InitDialog event class | |
1248 | /* | |
1249 | wxEVT_INIT_DIALOG | |
1250 | */ | |
1251 | ||
bddd7a8d | 1252 | class WXDLLIMPEXP_CORE wxInitDialogEvent : public wxEvent |
c801d85f | 1253 | { |
2b854a32 VZ |
1254 | public: |
1255 | wxInitDialogEvent(int Id = 0) | |
e6a6feba GD |
1256 | : wxEvent(Id, wxEVT_INIT_DIALOG) |
1257 | { } | |
8e72b8b5 RR |
1258 | |
1259 | virtual wxEvent *Clone() const { return new wxInitDialogEvent(*this); } | |
f97500b8 VZ |
1260 | |
1261 | private: | |
fc7a2a60 | 1262 | DECLARE_DYNAMIC_CLASS_NO_ASSIGN(wxInitDialogEvent) |
c801d85f KB |
1263 | }; |
1264 | ||
1265 | // Miscellaneous menu event class | |
1266 | /* | |
ccef86c7 VZ |
1267 | wxEVT_MENU_OPEN, |
1268 | wxEVT_MENU_CLOSE, | |
c801d85f | 1269 | wxEVT_MENU_HIGHLIGHT, |
c801d85f KB |
1270 | */ |
1271 | ||
bddd7a8d | 1272 | class WXDLLIMPEXP_CORE wxMenuEvent : public wxEvent |
c801d85f | 1273 | { |
c801d85f | 1274 | public: |
92f1a59c | 1275 | wxMenuEvent(wxEventType type = wxEVT_NULL, int winid = 0, wxMenu* menu = NULL) |
d9e2e4c2 | 1276 | : wxEvent(winid, type) |
fc7a2a60 | 1277 | { m_menuId = winid; m_menu = menu; } |
1d2eddff JS |
1278 | wxMenuEvent(const wxMenuEvent & event) |
1279 | : wxEvent(event) | |
92f1a59c | 1280 | { m_menuId = event.m_menuId; m_menu = event.m_menu; } |
c2bbeff0 | 1281 | |
ccef86c7 | 1282 | // only for wxEVT_MENU_HIGHLIGHT |
aadbdf11 | 1283 | int GetMenuId() const { return m_menuId; } |
c801d85f | 1284 | |
ccef86c7 VZ |
1285 | // only for wxEVT_MENU_OPEN/CLOSE |
1286 | bool IsPopup() const { return m_menuId == -1; } | |
1287 | ||
92f1a59c JS |
1288 | // only for wxEVT_MENU_OPEN/CLOSE |
1289 | wxMenu* GetMenu() const { return m_menu; } | |
1290 | ||
8e72b8b5 | 1291 | virtual wxEvent *Clone() const { return new wxMenuEvent(*this); } |
f97500b8 | 1292 | |
2b854a32 | 1293 | private: |
92f1a59c JS |
1294 | int m_menuId; |
1295 | wxMenu* m_menu; | |
f97500b8 | 1296 | |
fc7a2a60 | 1297 | DECLARE_DYNAMIC_CLASS_NO_ASSIGN(wxMenuEvent) |
c801d85f KB |
1298 | }; |
1299 | ||
1300 | // Window close or session close event class | |
1301 | /* | |
1302 | wxEVT_CLOSE_WINDOW, | |
1303 | wxEVT_END_SESSION, | |
1304 | wxEVT_QUERY_END_SESSION | |
1305 | */ | |
1306 | ||
bddd7a8d | 1307 | class WXDLLIMPEXP_CORE wxCloseEvent : public wxEvent |
c801d85f | 1308 | { |
c801d85f | 1309 | public: |
d9e2e4c2 DE |
1310 | wxCloseEvent(wxEventType type = wxEVT_NULL, int winid = 0) |
1311 | : wxEvent(winid, type), | |
497dbbd3 VZ |
1312 | m_loggingOff(TRUE), |
1313 | m_veto(FALSE), // should be FALSE by default | |
1314 | m_canVeto(TRUE) | |
1315 | { | |
2b854a32 | 1316 | #if WXWIN_COMPATIBILITY |
497dbbd3 | 1317 | m_force = FALSE; |
2b854a32 | 1318 | #endif // WXWIN_COMPATIBILITY |
497dbbd3 | 1319 | } |
1d2eddff JS |
1320 | wxCloseEvent(const wxCloseEvent & event) |
1321 | : wxEvent(event), | |
b2697d42 VZ |
1322 | m_loggingOff(event.m_loggingOff), |
1323 | m_veto(event.m_veto), | |
1324 | m_canVeto(event.m_canVeto) | |
1d2eddff JS |
1325 | { |
1326 | #if WXWIN_COMPATIBILITY | |
1327 | m_force = event.m_force; | |
1328 | #endif // WXWIN_COMPATIBILITY | |
b2697d42 | 1329 | } |
c2bbeff0 | 1330 | |
2b854a32 VZ |
1331 | void SetLoggingOff(bool logOff) { m_loggingOff = logOff; } |
1332 | bool GetLoggingOff() const { return m_loggingOff; } | |
1333 | ||
fe4e9e6c VZ |
1334 | void Veto(bool veto = TRUE) |
1335 | { | |
1336 | // GetVeto() will return FALSE anyhow... | |
1337 | wxCHECK_RET( m_canVeto, | |
223d09f6 | 1338 | wxT("call to Veto() ignored (can't veto this event)") ); |
fe4e9e6c VZ |
1339 | |
1340 | m_veto = veto; | |
1341 | } | |
2b854a32 | 1342 | void SetCanVeto(bool canVeto) { m_canVeto = canVeto; } |
e3065973 | 1343 | // No more asserts here please, the one you put here was wrong. |
2b854a32 | 1344 | bool CanVeto() const { return m_canVeto; } |
fe4e9e6c | 1345 | bool GetVeto() const { return m_canVeto && m_veto; } |
c801d85f | 1346 | |
2b854a32 VZ |
1347 | #if WXWIN_COMPATIBILITY |
1348 | // This is probably obsolete now, since we use CanVeto instead, in | |
1349 | // both OnCloseWindow and OnQueryEndSession. | |
1350 | // m_force == ! m_canVeto i.e., can't veto means we must force it to close. | |
1351 | void SetForce(bool force) { m_force = force; } | |
1352 | bool GetForce() const { return m_force; } | |
1353 | #endif | |
1354 | ||
8e72b8b5 | 1355 | virtual wxEvent *Clone() const { return new wxCloseEvent(*this); } |
aadbdf11 | 1356 | |
2b854a32 VZ |
1357 | protected: |
1358 | bool m_loggingOff; | |
1359 | bool m_veto, m_canVeto; | |
1360 | ||
1361 | #if WXWIN_COMPATIBILITY | |
1362 | bool m_force; | |
1363 | #endif | |
8e72b8b5 RR |
1364 | |
1365 | private: | |
fc7a2a60 | 1366 | DECLARE_DYNAMIC_CLASS_NO_ASSIGN(wxCloseEvent) |
8e72b8b5 | 1367 | |
c801d85f KB |
1368 | }; |
1369 | ||
1370 | /* | |
1371 | wxEVT_SHOW | |
1372 | */ | |
1373 | ||
bddd7a8d | 1374 | class WXDLLIMPEXP_CORE wxShowEvent : public wxEvent |
c801d85f | 1375 | { |
c801d85f | 1376 | public: |
d9e2e4c2 DE |
1377 | wxShowEvent(int winid = 0, bool show = FALSE) |
1378 | : wxEvent(winid, wxEVT_SHOW) | |
497dbbd3 | 1379 | { m_show = show; } |
1d2eddff JS |
1380 | wxShowEvent(const wxShowEvent & event) |
1381 | : wxEvent(event) | |
b2697d42 | 1382 | { m_show = event.m_show; } |
c2bbeff0 | 1383 | |
2b854a32 VZ |
1384 | void SetShow(bool show) { m_show = show; } |
1385 | bool GetShow() const { return m_show; } | |
c801d85f | 1386 | |
8e72b8b5 | 1387 | virtual wxEvent *Clone() const { return new wxShowEvent(*this); } |
aadbdf11 | 1388 | |
c801d85f | 1389 | protected: |
2b854a32 | 1390 | bool m_show; |
3dd9b88a | 1391 | |
8e72b8b5 | 1392 | private: |
fc7a2a60 | 1393 | DECLARE_DYNAMIC_CLASS_NO_ASSIGN(wxShowEvent) |
c801d85f KB |
1394 | }; |
1395 | ||
1396 | /* | |
1397 | wxEVT_ICONIZE | |
1398 | */ | |
1399 | ||
bddd7a8d | 1400 | class WXDLLIMPEXP_CORE wxIconizeEvent : public wxEvent |
c801d85f | 1401 | { |
2b854a32 | 1402 | public: |
d9e2e4c2 DE |
1403 | wxIconizeEvent(int winid = 0, bool iconized = TRUE) |
1404 | : wxEvent(winid, wxEVT_ICONIZE) | |
497dbbd3 | 1405 | { m_iconized = iconized; } |
1d2eddff JS |
1406 | wxIconizeEvent(const wxIconizeEvent & event) |
1407 | : wxEvent(event) | |
b2697d42 | 1408 | { m_iconized = event.m_iconized; } |
c2bbeff0 | 1409 | |
3dd9b88a VZ |
1410 | // return true if the frame was iconized, false if restored |
1411 | bool Iconized() const { return m_iconized; } | |
1412 | ||
8e72b8b5 | 1413 | virtual wxEvent *Clone() const { return new wxIconizeEvent(*this); } |
f97500b8 | 1414 | |
3dd9b88a VZ |
1415 | protected: |
1416 | bool m_iconized; | |
1417 | ||
8e72b8b5 | 1418 | private: |
fc7a2a60 | 1419 | DECLARE_DYNAMIC_CLASS_NO_ASSIGN(wxIconizeEvent) |
c801d85f | 1420 | }; |
c801d85f KB |
1421 | /* |
1422 | wxEVT_MAXIMIZE | |
1423 | */ | |
1424 | ||
bddd7a8d | 1425 | class WXDLLIMPEXP_CORE wxMaximizeEvent : public wxEvent |
c801d85f | 1426 | { |
2b854a32 | 1427 | public: |
d9e2e4c2 DE |
1428 | wxMaximizeEvent(int winid = 0) |
1429 | : wxEvent(winid, wxEVT_MAXIMIZE) | |
e6a6feba | 1430 | { } |
3dd9b88a | 1431 | |
8e72b8b5 | 1432 | virtual wxEvent *Clone() const { return new wxMaximizeEvent(*this); } |
f97500b8 | 1433 | |
8e72b8b5 | 1434 | private: |
fc7a2a60 | 1435 | DECLARE_DYNAMIC_CLASS_NO_ASSIGN(wxMaximizeEvent) |
c801d85f KB |
1436 | }; |
1437 | ||
1438 | // Joystick event class | |
1439 | /* | |
1440 | wxEVT_JOY_BUTTON_DOWN, | |
1441 | wxEVT_JOY_BUTTON_UP, | |
1442 | wxEVT_JOY_MOVE, | |
1443 | wxEVT_JOY_ZMOVE | |
1444 | */ | |
1445 | ||
1446 | // Which joystick? Same as Windows ids so no conversion necessary. | |
497dbbd3 VZ |
1447 | enum |
1448 | { | |
1449 | wxJOYSTICK1, | |
1450 | wxJOYSTICK2 | |
1451 | }; | |
c801d85f KB |
1452 | |
1453 | // Which button is down? | |
497dbbd3 VZ |
1454 | enum |
1455 | { | |
1456 | wxJOY_BUTTON_ANY = -1, | |
1457 | wxJOY_BUTTON1 = 1, | |
1458 | wxJOY_BUTTON2 = 2, | |
1459 | wxJOY_BUTTON3 = 4, | |
1460 | wxJOY_BUTTON4 = 8 | |
1461 | }; | |
c801d85f | 1462 | |
bddd7a8d | 1463 | class WXDLLIMPEXP_CORE wxJoystickEvent : public wxEvent |
c801d85f | 1464 | { |
2b854a32 VZ |
1465 | public: |
1466 | wxPoint m_pos; | |
1467 | int m_zPosition; | |
497dbbd3 VZ |
1468 | int m_buttonChange; // Which button changed? |
1469 | int m_buttonState; // Which buttons are down? | |
1470 | int m_joyStick; // Which joystick? | |
2b854a32 VZ |
1471 | |
1472 | wxJoystickEvent(wxEventType type = wxEVT_NULL, | |
1473 | int state = 0, | |
1474 | int joystick = wxJOYSTICK1, | |
1475 | int change = 0) | |
497dbbd3 VZ |
1476 | : wxEvent(0, type), |
1477 | m_pos(0, 0), | |
1478 | m_zPosition(0), | |
1479 | m_buttonChange(change), | |
1480 | m_buttonState(state), | |
1481 | m_joyStick(joystick) | |
2b854a32 | 1482 | { |
2b854a32 | 1483 | } |
1d2eddff | 1484 | wxJoystickEvent(const wxJoystickEvent & event) |
b2697d42 VZ |
1485 | : wxEvent(event), |
1486 | m_pos(event.m_pos), | |
1487 | m_zPosition(event.m_zPosition), | |
1488 | m_buttonChange(event.m_buttonChange), | |
1489 | m_buttonState(event.m_buttonState), | |
1490 | m_joyStick(event.m_joyStick) | |
1d2eddff | 1491 | { } |
c2bbeff0 | 1492 | |
2b854a32 VZ |
1493 | wxPoint GetPosition() const { return m_pos; } |
1494 | int GetZPosition() const { return m_zPosition; } | |
1495 | int GetButtonState() const { return m_buttonState; } | |
1496 | int GetButtonChange() const { return m_buttonChange; } | |
1497 | int GetJoystick() const { return m_joyStick; } | |
1498 | ||
1499 | void SetJoystick(int stick) { m_joyStick = stick; } | |
1500 | void SetButtonState(int state) { m_buttonState = state; } | |
1501 | void SetButtonChange(int change) { m_buttonChange = change; } | |
1502 | void SetPosition(const wxPoint& pos) { m_pos = pos; } | |
1503 | void SetZPosition(int zPos) { m_zPosition = zPos; } | |
1504 | ||
1505 | // Was it a button event? (*doesn't* mean: is any button *down*?) | |
1506 | bool IsButton() const { return ((GetEventType() == wxEVT_JOY_BUTTON_DOWN) || | |
b70ababc | 1507 | (GetEventType() == wxEVT_JOY_BUTTON_UP)); } |
2b854a32 VZ |
1508 | |
1509 | // Was it a move event? | |
1510 | bool IsMove() const { return (GetEventType() == wxEVT_JOY_MOVE) ; } | |
1511 | ||
1512 | // Was it a zmove event? | |
1513 | bool IsZMove() const { return (GetEventType() == wxEVT_JOY_ZMOVE) ; } | |
1514 | ||
1515 | // Was it a down event from button 1, 2, 3, 4 or any? | |
1516 | bool ButtonDown(int but = wxJOY_BUTTON_ANY) const | |
c801d85f | 1517 | { return ((GetEventType() == wxEVT_JOY_BUTTON_DOWN) && |
2b854a32 | 1518 | ((but == wxJOY_BUTTON_ANY) || (but == m_buttonChange))); } |
c801d85f | 1519 | |
2b854a32 VZ |
1520 | // Was it a up event from button 1, 2, 3 or any? |
1521 | bool ButtonUp(int but = wxJOY_BUTTON_ANY) const | |
c801d85f | 1522 | { return ((GetEventType() == wxEVT_JOY_BUTTON_UP) && |
2b854a32 | 1523 | ((but == wxJOY_BUTTON_ANY) || (but == m_buttonChange))); } |
c801d85f | 1524 | |
2b854a32 VZ |
1525 | // Was the given button 1,2,3,4 or any in Down state? |
1526 | bool ButtonIsDown(int but = wxJOY_BUTTON_ANY) const | |
c801d85f | 1527 | { return (((but == wxJOY_BUTTON_ANY) && (m_buttonState != 0)) || |
2b854a32 | 1528 | ((m_buttonState & but) == but)); } |
f305c661 | 1529 | |
8e72b8b5 | 1530 | virtual wxEvent *Clone() const { return new wxJoystickEvent(*this); } |
f97500b8 | 1531 | |
8e72b8b5 | 1532 | private: |
fc7a2a60 | 1533 | DECLARE_DYNAMIC_CLASS_NO_ASSIGN(wxJoystickEvent) |
c801d85f KB |
1534 | }; |
1535 | ||
1536 | // Drop files event class | |
1537 | /* | |
1538 | wxEVT_DROP_FILES | |
1539 | */ | |
1540 | ||
bddd7a8d | 1541 | class WXDLLIMPEXP_CORE wxDropFilesEvent : public wxEvent |
c801d85f | 1542 | { |
2b854a32 VZ |
1543 | public: |
1544 | int m_noFiles; | |
1545 | wxPoint m_pos; | |
c3c39620 | 1546 | wxString* m_files; |
2b854a32 VZ |
1547 | |
1548 | wxDropFilesEvent(wxEventType type = wxEVT_NULL, | |
1549 | int noFiles = 0, | |
1550 | wxString *files = (wxString *) NULL) | |
497dbbd3 VZ |
1551 | : wxEvent(0, type), |
1552 | m_noFiles(noFiles), | |
1553 | m_pos(), | |
1554 | m_files(files) | |
e6a6feba | 1555 | { } |
2b854a32 | 1556 | |
c3c39620 VZ |
1557 | // we need a copy ctor to avoid deleting m_files pointer twice |
1558 | wxDropFilesEvent(const wxDropFilesEvent& other) | |
497dbbd3 VZ |
1559 | : wxEvent(other), |
1560 | m_noFiles(other.m_noFiles), | |
1561 | m_pos(other.m_pos), | |
1562 | m_files(NULL) | |
c3c39620 | 1563 | { |
c3c39620 VZ |
1564 | m_files = new wxString[m_noFiles]; |
1565 | for ( int n = 0; n < m_noFiles; n++ ) | |
1566 | { | |
1567 | m_files[n] = other.m_files[n]; | |
1568 | } | |
1569 | } | |
1570 | ||
1571 | virtual ~wxDropFilesEvent() | |
1572 | { | |
1573 | delete [] m_files; | |
1574 | } | |
1575 | ||
2b854a32 VZ |
1576 | wxPoint GetPosition() const { return m_pos; } |
1577 | int GetNumberOfFiles() const { return m_noFiles; } | |
1578 | wxString *GetFiles() const { return m_files; } | |
f305c661 | 1579 | |
c3c39620 | 1580 | virtual wxEvent *Clone() const { return new wxDropFilesEvent(*this); } |
f97500b8 | 1581 | |
8e72b8b5 | 1582 | private: |
fc7a2a60 | 1583 | DECLARE_DYNAMIC_CLASS_NO_ASSIGN(wxDropFilesEvent) |
c801d85f KB |
1584 | }; |
1585 | ||
c801d85f KB |
1586 | // Update UI event |
1587 | /* | |
1588 | wxEVT_UPDATE_UI | |
1589 | */ | |
1590 | ||
e39af974 JS |
1591 | // Whether to always send update events to windows, or |
1592 | // to only send update events to those with the | |
1593 | // wxWS_EX_PROCESS_UI_UPDATES style. | |
1594 | ||
1595 | enum wxUpdateUIMode | |
1596 | { | |
1597 | // Send UI update events to all windows | |
1598 | wxUPDATE_UI_PROCESS_ALL, | |
1599 | ||
1600 | // Send UI update events to windows that have | |
1601 | // the wxWS_EX_PROCESS_UI_UPDATES flag specified | |
1602 | wxUPDATE_UI_PROCESS_SPECIFIED | |
1603 | }; | |
1604 | ||
bddd7a8d | 1605 | class WXDLLIMPEXP_CORE wxUpdateUIEvent : public wxCommandEvent |
c801d85f | 1606 | { |
2b854a32 VZ |
1607 | public: |
1608 | wxUpdateUIEvent(wxWindowID commandId = 0) | |
e6a6feba | 1609 | : wxCommandEvent(wxEVT_UPDATE_UI, commandId) |
497dbbd3 VZ |
1610 | { |
1611 | m_checked = | |
1612 | m_enabled = | |
1613 | m_setEnabled = | |
9b9337da | 1614 | m_setText = |
497dbbd3 VZ |
1615 | m_setChecked = FALSE; |
1616 | } | |
1d2eddff JS |
1617 | wxUpdateUIEvent(const wxUpdateUIEvent & event) |
1618 | : wxCommandEvent(event), | |
b2697d42 VZ |
1619 | m_checked(event.m_checked), |
1620 | m_enabled(event.m_enabled), | |
1621 | m_setEnabled(event.m_setEnabled), | |
1622 | m_setText(event.m_setText), | |
1623 | m_setChecked(event.m_setChecked), | |
1624 | m_text(event.m_text) | |
1625 | { } | |
c2bbeff0 | 1626 | |
2b854a32 VZ |
1627 | bool GetChecked() const { return m_checked; } |
1628 | bool GetEnabled() const { return m_enabled; } | |
1629 | wxString GetText() const { return m_text; } | |
1630 | bool GetSetText() const { return m_setText; } | |
1631 | bool GetSetChecked() const { return m_setChecked; } | |
1632 | bool GetSetEnabled() const { return m_setEnabled; } | |
1633 | ||
1634 | void Check(bool check) { m_checked = check; m_setChecked = TRUE; } | |
1635 | void Enable(bool enable) { m_enabled = enable; m_setEnabled = TRUE; } | |
1636 | void SetText(const wxString& text) { m_text = text; m_setText = TRUE; } | |
c801d85f | 1637 | |
0b30bb0b JS |
1638 | // Sets the interval between updates in milliseconds. |
1639 | // Set to -1 to disable updates, or to 0 to update as frequently as possible. | |
e39af974 | 1640 | static void SetUpdateInterval(long updateInterval) { sm_updateInterval = updateInterval; } |
0b30bb0b JS |
1641 | |
1642 | // Returns the current interval between updates in milliseconds | |
e39af974 | 1643 | static long GetUpdateInterval() { return sm_updateInterval ; } |
0b30bb0b | 1644 | |
e39af974 JS |
1645 | // Can we update this window? |
1646 | static bool CanUpdate(wxWindow* win) ; | |
0b30bb0b JS |
1647 | |
1648 | // Reset the update time to provide a delay until the next | |
1649 | // time we should update | |
1650 | static void ResetUpdateTime() ; | |
1651 | ||
e39af974 JS |
1652 | // Specify how wxWindows will send update events: to |
1653 | // all windows, or only to those which specify that they | |
1654 | // will process the events. | |
1655 | static void SetMode(wxUpdateUIMode mode) { sm_updateMode = mode; } | |
1656 | ||
1657 | // Returns the UI update mode | |
1658 | static wxUpdateUIMode GetMode() { return sm_updateMode ; } | |
1659 | ||
8e72b8b5 | 1660 | virtual wxEvent *Clone() const { return new wxUpdateUIEvent(*this); } |
f305c661 | 1661 | |
2b854a32 VZ |
1662 | protected: |
1663 | bool m_checked; | |
1664 | bool m_enabled; | |
1665 | bool m_setEnabled; | |
1666 | bool m_setText; | |
1667 | bool m_setChecked; | |
1668 | wxString m_text; | |
0b30bb0b | 1669 | #if wxUSE_LONGLONG |
e39af974 | 1670 | static wxLongLong sm_lastUpdate; |
0b30bb0b | 1671 | #endif |
e39af974 JS |
1672 | static long sm_updateInterval; |
1673 | static wxUpdateUIMode sm_updateMode; | |
f97500b8 | 1674 | |
8e72b8b5 | 1675 | private: |
fc7a2a60 | 1676 | DECLARE_DYNAMIC_CLASS_NO_ASSIGN(wxUpdateUIEvent) |
c801d85f KB |
1677 | }; |
1678 | ||
1679 | /* | |
1680 | wxEVT_SYS_COLOUR_CHANGED | |
1681 | */ | |
1682 | ||
1683 | // TODO: shouldn't all events record the window ID? | |
bddd7a8d | 1684 | class WXDLLIMPEXP_CORE wxSysColourChangedEvent : public wxEvent |
c801d85f | 1685 | { |
2b854a32 VZ |
1686 | public: |
1687 | wxSysColourChangedEvent() | |
e6a6feba GD |
1688 | : wxEvent(0, wxEVT_SYS_COLOUR_CHANGED) |
1689 | { } | |
f97500b8 | 1690 | |
8e72b8b5 | 1691 | virtual wxEvent *Clone() const { return new wxSysColourChangedEvent(*this); } |
f97500b8 | 1692 | |
8e72b8b5 | 1693 | private: |
fc7a2a60 | 1694 | DECLARE_DYNAMIC_CLASS_NO_ASSIGN(wxSysColourChangedEvent) |
c801d85f KB |
1695 | }; |
1696 | ||
a5e84126 JS |
1697 | /* |
1698 | wxEVT_MOUSE_CAPTURE_CHANGED | |
1699 | The window losing the capture receives this message | |
1700 | (even if it released the capture itself). | |
1701 | */ | |
1702 | ||
bddd7a8d | 1703 | class WXDLLIMPEXP_CORE wxMouseCaptureChangedEvent : public wxEvent |
a5e84126 JS |
1704 | { |
1705 | public: | |
d9e2e4c2 DE |
1706 | wxMouseCaptureChangedEvent(wxWindowID winid = 0, wxWindow* gainedCapture = NULL) |
1707 | : wxEvent(winid, wxEVT_MOUSE_CAPTURE_CHANGED), | |
497dbbd3 | 1708 | m_gainedCapture(gainedCapture) |
e6a6feba GD |
1709 | { } |
1710 | ||
1711 | wxMouseCaptureChangedEvent(const wxMouseCaptureChangedEvent& event) | |
497dbbd3 VZ |
1712 | : wxEvent(event), |
1713 | m_gainedCapture(event.m_gainedCapture) | |
e6a6feba | 1714 | { } |
a5e84126 JS |
1715 | |
1716 | virtual wxEvent *Clone() const { return new wxMouseCaptureChangedEvent(*this); } | |
1717 | ||
1718 | wxWindow* GetCapturedWindow() const { return m_gainedCapture; }; | |
1719 | ||
1720 | private: | |
1721 | wxWindow* m_gainedCapture; | |
fc7a2a60 VZ |
1722 | |
1723 | DECLARE_DYNAMIC_CLASS_NO_ASSIGN(wxMouseCaptureChangedEvent) | |
a5e84126 JS |
1724 | }; |
1725 | ||
574c939e KB |
1726 | /* |
1727 | wxEVT_DISPLAY_CHANGED | |
1728 | */ | |
bddd7a8d | 1729 | class WXDLLIMPEXP_CORE wxDisplayChangedEvent : public wxEvent |
574c939e KB |
1730 | { |
1731 | private: | |
fc7a2a60 | 1732 | DECLARE_DYNAMIC_CLASS_NO_ASSIGN(wxDisplayChangedEvent) |
574c939e KB |
1733 | |
1734 | public: | |
1735 | wxDisplayChangedEvent() | |
e6a6feba GD |
1736 | : wxEvent(0, wxEVT_DISPLAY_CHANGED) |
1737 | { } | |
574c939e KB |
1738 | |
1739 | virtual wxEvent *Clone() const { return new wxDisplayChangedEvent(*this); } | |
1740 | }; | |
1741 | ||
f7bd2698 JS |
1742 | /* |
1743 | wxEVT_PALETTE_CHANGED | |
1744 | */ | |
1745 | ||
bddd7a8d | 1746 | class WXDLLIMPEXP_CORE wxPaletteChangedEvent : public wxEvent |
f7bd2698 | 1747 | { |
f7bd2698 | 1748 | public: |
d9e2e4c2 DE |
1749 | wxPaletteChangedEvent(wxWindowID winid = 0) |
1750 | : wxEvent(winid, wxEVT_PALETTE_CHANGED), | |
497dbbd3 VZ |
1751 | m_changedWindow((wxWindow *) NULL) |
1752 | { } | |
e6a6feba GD |
1753 | |
1754 | wxPaletteChangedEvent(const wxPaletteChangedEvent& event) | |
497dbbd3 VZ |
1755 | : wxEvent(event), |
1756 | m_changedWindow(event.m_changedWindow) | |
e6a6feba | 1757 | { } |
f7bd2698 | 1758 | |
2b854a32 VZ |
1759 | void SetChangedWindow(wxWindow* win) { m_changedWindow = win; } |
1760 | wxWindow* GetChangedWindow() const { return m_changedWindow; } | |
f7bd2698 | 1761 | |
8e72b8b5 | 1762 | virtual wxEvent *Clone() const { return new wxPaletteChangedEvent(*this); } |
f305c661 | 1763 | |
f7bd2698 | 1764 | protected: |
2b854a32 | 1765 | wxWindow* m_changedWindow; |
8e72b8b5 RR |
1766 | |
1767 | private: | |
fc7a2a60 | 1768 | DECLARE_DYNAMIC_CLASS_NO_ASSIGN(wxPaletteChangedEvent) |
f7bd2698 JS |
1769 | }; |
1770 | ||
1771 | /* | |
1772 | wxEVT_QUERY_NEW_PALETTE | |
1773 | Indicates the window is getting keyboard focus and should re-do its palette. | |
1774 | */ | |
1775 | ||
bddd7a8d | 1776 | class WXDLLIMPEXP_CORE wxQueryNewPaletteEvent : public wxEvent |
f7bd2698 | 1777 | { |
f7bd2698 | 1778 | public: |
d9e2e4c2 DE |
1779 | wxQueryNewPaletteEvent(wxWindowID winid = 0) |
1780 | : wxEvent(winid, wxEVT_QUERY_NEW_PALETTE), | |
497dbbd3 | 1781 | m_paletteRealized(FALSE) |
e6a6feba | 1782 | { } |
1d2eddff JS |
1783 | wxQueryNewPaletteEvent(const wxQueryNewPaletteEvent & event) |
1784 | : wxEvent(event), | |
b2697d42 VZ |
1785 | m_paletteRealized(event.m_paletteRealized) |
1786 | { } | |
c2bbeff0 | 1787 | |
2b854a32 VZ |
1788 | // App sets this if it changes the palette. |
1789 | void SetPaletteRealized(bool realized) { m_paletteRealized = realized; } | |
1790 | bool GetPaletteRealized() const { return m_paletteRealized; } | |
f7bd2698 | 1791 | |
8e72b8b5 | 1792 | virtual wxEvent *Clone() const { return new wxQueryNewPaletteEvent(*this); } |
f305c661 | 1793 | |
f7bd2698 | 1794 | protected: |
2b854a32 | 1795 | bool m_paletteRealized; |
f97500b8 | 1796 | |
8e72b8b5 | 1797 | private: |
fc7a2a60 | 1798 | DECLARE_DYNAMIC_CLASS_NO_ASSIGN(wxQueryNewPaletteEvent) |
f7bd2698 JS |
1799 | }; |
1800 | ||
7fdefd57 VZ |
1801 | /* |
1802 | Event generated by dialog navigation keys | |
1803 | wxEVT_NAVIGATION_KEY | |
1804 | */ | |
d9506e77 | 1805 | // NB: don't derive from command event to avoid being propagated to the parent |
bddd7a8d | 1806 | class WXDLLIMPEXP_CORE wxNavigationKeyEvent : public wxEvent |
7fdefd57 | 1807 | { |
7fdefd57 | 1808 | public: |
d9506e77 | 1809 | wxNavigationKeyEvent() |
497dbbd3 VZ |
1810 | : wxEvent(0, wxEVT_NAVIGATION_KEY), |
1811 | m_flags(IsForward | Propagate), // defaults are for TAB | |
1812 | m_focus((wxWindow *)NULL) | |
e6a6feba | 1813 | { } |
d9506e77 | 1814 | |
e6a6feba | 1815 | wxNavigationKeyEvent(const wxNavigationKeyEvent& event) |
497dbbd3 VZ |
1816 | : wxEvent(event), |
1817 | m_flags(event.m_flags), | |
1818 | m_focus(event.m_focus) | |
e6a6feba | 1819 | { } |
7fdefd57 | 1820 | |
2b854a32 | 1821 | // direction: forward (true) or backward (false) |
d9506e77 VZ |
1822 | bool GetDirection() const |
1823 | { return (m_flags & IsForward) != 0; } | |
1824 | void SetDirection(bool bForward) | |
1825 | { if ( bForward ) m_flags |= IsForward; else m_flags &= ~IsForward; } | |
7fdefd57 | 1826 | |
2b854a32 VZ |
1827 | // it may be a window change event (MDI, notebook pages...) or a control |
1828 | // change event | |
d9506e77 VZ |
1829 | bool IsWindowChange() const |
1830 | { return (m_flags & WinChange) != 0; } | |
1831 | void SetWindowChange(bool bIs) | |
1832 | { if ( bIs ) m_flags |= WinChange; else m_flags &= ~WinChange; } | |
1833 | ||
1834 | // some navigation events are meant to be propagated upwards (Windows | |
1835 | // convention is to do this for TAB events) while others should always | |
1836 | // cycle inside the panel/radiobox/whatever we're current inside | |
1837 | bool ShouldPropagate() const | |
1838 | { return (m_flags & Propagate) != 0; } | |
1839 | void SetPropagate(bool bDoIt) | |
1840 | { if ( bDoIt ) m_flags |= Propagate; else m_flags &= ~Propagate; } | |
7fdefd57 | 1841 | |
2b854a32 VZ |
1842 | // the child which has the focus currently (may be NULL - use |
1843 | // wxWindow::FindFocus then) | |
d9506e77 VZ |
1844 | wxWindow* GetCurrentFocus() const { return m_focus; } |
1845 | void SetCurrentFocus(wxWindow *win) { m_focus = win; } | |
1846 | ||
8e72b8b5 RR |
1847 | virtual wxEvent *Clone() const { return new wxNavigationKeyEvent(*this); } |
1848 | ||
d9506e77 VZ |
1849 | private: |
1850 | enum | |
1851 | { | |
1852 | IsForward = 0x0001, | |
1853 | WinChange = 0x0002, | |
1854 | Propagate = 0x0004 | |
1855 | }; | |
1856 | ||
1857 | long m_flags; | |
1858 | wxWindow *m_focus; | |
1859 | ||
8e72b8b5 | 1860 | private: |
fc7a2a60 | 1861 | DECLARE_DYNAMIC_CLASS_NO_ASSIGN(wxNavigationKeyEvent) |
7fdefd57 VZ |
1862 | }; |
1863 | ||
42e69d6b VZ |
1864 | // Window creation/destruction events: the first is sent as soon as window is |
1865 | // created (i.e. the underlying GUI object exists), but when the C++ object is | |
1866 | // fully initialized (so virtual functions may be called). The second, | |
1867 | // wxEVT_DESTROY, is sent right before the window is destroyed - again, it's | |
1868 | // still safe to call virtual functions at this moment | |
1869 | /* | |
1870 | wxEVT_CREATE | |
1871 | wxEVT_DESTROY | |
1872 | */ | |
1873 | ||
bddd7a8d | 1874 | class WXDLLIMPEXP_CORE wxWindowCreateEvent : public wxCommandEvent |
42e69d6b | 1875 | { |
42e69d6b VZ |
1876 | public: |
1877 | wxWindowCreateEvent(wxWindow *win = NULL); | |
1878 | ||
1879 | wxWindow *GetWindow() const { return (wxWindow *)GetEventObject(); } | |
f97500b8 | 1880 | |
8e72b8b5 | 1881 | virtual wxEvent *Clone() const { return new wxWindowCreateEvent(*this); } |
f97500b8 | 1882 | |
8e72b8b5 | 1883 | private: |
fc7a2a60 | 1884 | DECLARE_DYNAMIC_CLASS_NO_ASSIGN(wxWindowCreateEvent) |
42e69d6b VZ |
1885 | }; |
1886 | ||
bddd7a8d | 1887 | class WXDLLIMPEXP_CORE wxWindowDestroyEvent : public wxCommandEvent |
42e69d6b | 1888 | { |
42e69d6b VZ |
1889 | public: |
1890 | wxWindowDestroyEvent(wxWindow *win = NULL); | |
1891 | ||
1892 | wxWindow *GetWindow() const { return (wxWindow *)GetEventObject(); } | |
f97500b8 | 1893 | |
8e72b8b5 RR |
1894 | virtual wxEvent *Clone() const { return new wxWindowDestroyEvent(*this); } |
1895 | ||
1896 | private: | |
fc7a2a60 | 1897 | DECLARE_DYNAMIC_CLASS_NO_ASSIGN(wxWindowDestroyEvent) |
42e69d6b VZ |
1898 | }; |
1899 | ||
bd83cb56 | 1900 | // A help event is sent when the user clicks on a window in context-help mode. |
b96340e6 | 1901 | /* |
bd83cb56 VZ |
1902 | wxEVT_HELP |
1903 | wxEVT_DETAILED_HELP | |
1904 | */ | |
b96340e6 | 1905 | |
bddd7a8d | 1906 | class WXDLLIMPEXP_CORE wxHelpEvent : public wxCommandEvent |
b96340e6 | 1907 | { |
b96340e6 | 1908 | public: |
bd83cb56 | 1909 | wxHelpEvent(wxEventType type = wxEVT_NULL, |
d9e2e4c2 | 1910 | wxWindowID winid = 0, |
bd83cb56 | 1911 | const wxPoint& pt = wxDefaultPosition) |
d9e2e4c2 | 1912 | : wxCommandEvent(type, winid), |
497dbbd3 | 1913 | m_pos(pt), m_target(), m_link() |
e6a6feba | 1914 | { } |
1d2eddff JS |
1915 | wxHelpEvent(const wxHelpEvent & event) |
1916 | : wxCommandEvent(event), | |
b2697d42 VZ |
1917 | m_pos(event.m_pos), |
1918 | m_target(event.m_target), | |
1919 | m_link(event.m_link) | |
1d2eddff | 1920 | { } |
c2bbeff0 | 1921 | |
bd83cb56 VZ |
1922 | // Position of event (in screen coordinates) |
1923 | const wxPoint& GetPosition() const { return m_pos; } | |
1924 | void SetPosition(const wxPoint& pos) { m_pos = pos; } | |
b96340e6 | 1925 | |
bd83cb56 VZ |
1926 | // Optional link to further help |
1927 | const wxString& GetLink() const { return m_link; } | |
1928 | void SetLink(const wxString& link) { m_link = link; } | |
fb6261e9 | 1929 | |
bd83cb56 VZ |
1930 | // Optional target to display help in. E.g. a window specification |
1931 | const wxString& GetTarget() const { return m_target; } | |
1932 | void SetTarget(const wxString& target) { m_target = target; } | |
fb6261e9 | 1933 | |
8e72b8b5 | 1934 | virtual wxEvent *Clone() const { return new wxHelpEvent(*this); } |
f97500b8 | 1935 | |
bd83cb56 VZ |
1936 | protected: |
1937 | wxPoint m_pos; | |
1938 | wxString m_target; | |
1939 | wxString m_link; | |
1940 | ||
1941 | private: | |
fc7a2a60 | 1942 | DECLARE_DYNAMIC_CLASS_NO_ASSIGN(wxHelpEvent) |
b96340e6 JS |
1943 | }; |
1944 | ||
69231000 JS |
1945 | // A Context event is sent when the user right clicks on a window or |
1946 | // presses Shift-F10 | |
1947 | // NOTE : Under windows this is a repackaged WM_CONTETXMENU message | |
1948 | // Under other systems it may have to be generated from a right click event | |
1949 | /* | |
1950 | wxEVT_CONTEXT_MENU | |
1951 | */ | |
1952 | ||
bddd7a8d | 1953 | class WXDLLIMPEXP_CORE wxContextMenuEvent : public wxCommandEvent |
69231000 JS |
1954 | { |
1955 | public: | |
1956 | wxContextMenuEvent(wxEventType type = wxEVT_NULL, | |
d9e2e4c2 | 1957 | wxWindowID winid = 0, |
e6a6feba | 1958 | const wxPoint& pt = wxDefaultPosition) |
d9e2e4c2 | 1959 | : wxCommandEvent(type, winid), |
497dbbd3 | 1960 | m_pos(pt) |
e6a6feba | 1961 | { } |
1d2eddff JS |
1962 | wxContextMenuEvent(const wxContextMenuEvent & event) |
1963 | : wxCommandEvent(event), | |
b2697d42 | 1964 | m_pos(event.m_pos) |
1d2eddff | 1965 | { } |
c2bbeff0 | 1966 | |
69231000 JS |
1967 | // Position of event (in screen coordinates) |
1968 | const wxPoint& GetPosition() const { return m_pos; } | |
1969 | void SetPosition(const wxPoint& pos) { m_pos = pos; } | |
1970 | ||
8e72b8b5 | 1971 | virtual wxEvent *Clone() const { return new wxContextMenuEvent(*this); } |
f97500b8 | 1972 | |
69231000 JS |
1973 | protected: |
1974 | wxPoint m_pos; | |
1975 | ||
1976 | private: | |
fc7a2a60 | 1977 | DECLARE_DYNAMIC_CLASS_NO_ASSIGN(wxContextMenuEvent) |
69231000 JS |
1978 | }; |
1979 | ||
e90c1d2a VZ |
1980 | // Idle event |
1981 | /* | |
1982 | wxEVT_IDLE | |
1983 | */ | |
1984 | ||
e39af974 JS |
1985 | // Whether to always send idle events to windows, or |
1986 | // to only send update events to those with the | |
1987 | // wxWS_EX_PROCESS_IDLE style. | |
1988 | ||
1989 | enum wxIdleMode | |
1990 | { | |
1991 | // Send idle events to all windows | |
1992 | wxIDLE_PROCESS_ALL, | |
1993 | ||
1994 | // Send idle events to windows that have | |
1995 | // the wxWS_EX_PROCESS_IDLE flag specified | |
1996 | wxIDLE_PROCESS_SPECIFIED | |
1997 | }; | |
1998 | ||
bddd7a8d | 1999 | class WXDLLIMPEXP_CORE wxIdleEvent : public wxEvent |
e90c1d2a | 2000 | { |
e90c1d2a VZ |
2001 | public: |
2002 | wxIdleEvent() | |
497dbbd3 VZ |
2003 | : wxEvent(0, wxEVT_IDLE), |
2004 | m_requestMore(FALSE) | |
e6a6feba | 2005 | { } |
1d2eddff JS |
2006 | wxIdleEvent(const wxIdleEvent & event) |
2007 | : wxEvent(event), | |
b2697d42 VZ |
2008 | m_requestMore(event.m_requestMore) |
2009 | { } | |
c2bbeff0 | 2010 | |
e90c1d2a VZ |
2011 | void RequestMore(bool needMore = TRUE) { m_requestMore = needMore; } |
2012 | bool MoreRequested() const { return m_requestMore; } | |
2013 | ||
8e72b8b5 | 2014 | virtual wxEvent *Clone() const { return new wxIdleEvent(*this); } |
e90c1d2a | 2015 | |
e39af974 JS |
2016 | // Specify how wxWindows will send idle events: to |
2017 | // all windows, or only to those which specify that they | |
2018 | // will process the events. | |
2019 | static void SetMode(wxIdleMode mode) { sm_idleMode = mode; } | |
2020 | ||
2021 | // Returns the idle event mode | |
2022 | static wxIdleMode GetMode() { return sm_idleMode ; } | |
2023 | ||
2024 | // Can we send an idle event? | |
2025 | static bool CanSend(wxWindow* win) ; | |
2026 | ||
e90c1d2a VZ |
2027 | protected: |
2028 | bool m_requestMore; | |
e39af974 | 2029 | static wxIdleMode sm_idleMode; |
f97500b8 | 2030 | |
8e72b8b5 | 2031 | private: |
fc7a2a60 | 2032 | DECLARE_DYNAMIC_CLASS_NO_ASSIGN(wxIdleEvent) |
e90c1d2a VZ |
2033 | }; |
2034 | ||
6b55490a VZ |
2035 | #endif // wxUSE_GUI |
2036 | ||
e5fb7191 | 2037 | /* TODO |
c801d85f | 2038 | wxEVT_POWER, |
c801d85f KB |
2039 | wxEVT_MOUSE_CAPTURE_CHANGED, |
2040 | wxEVT_SETTING_CHANGED, // WM_WININICHANGE (NT) / WM_SETTINGCHANGE (Win95) | |
c801d85f KB |
2041 | // wxEVT_FONT_CHANGED, // WM_FONTCHANGE: roll into wxEVT_SETTING_CHANGED, but remember to propagate |
2042 | // wxEVT_FONT_CHANGED to all other windows (maybe). | |
2043 | wxEVT_DRAW_ITEM, // Leave these three as virtual functions in wxControl?? Platform-specific. | |
2044 | wxEVT_MEASURE_ITEM, | |
2045 | wxEVT_COMPARE_ITEM | |
2046 | */ | |
2047 | ||
88a9f974 | 2048 | |
8e193f38 VZ |
2049 | // ============================================================================ |
2050 | // event handler and related classes | |
2051 | // ============================================================================ | |
2052 | ||
c801d85f KB |
2053 | typedef void (wxObject::*wxObjectEventFunction)(wxEvent&); |
2054 | ||
2e4df4bf VZ |
2055 | // we can't have ctors nor base struct in backwards compatibility mode or |
2056 | // otherwise we won't be able to initialize the objects with an agregate, so | |
2057 | // we have to keep both versions | |
2058 | #if WXWIN_COMPATIBILITY_EVENT_TYPES | |
2059 | ||
bddd7a8d | 2060 | struct WXDLLIMPEXP_BASE wxEventTableEntry |
2e4df4bf VZ |
2061 | { |
2062 | // For some reason, this can't be wxEventType, or VC++ complains. | |
2063 | int m_eventType; // main event type | |
2064 | int m_id; // control/menu/toolbar id | |
2065 | int m_lastId; // used for ranges of ids | |
2066 | wxObjectEventFunction m_fn; // function to call: not wxEventFunction, | |
2067 | // because of dependency problems | |
2068 | ||
2069 | wxObject* m_callbackUserData; | |
2070 | }; | |
2071 | ||
2072 | #else // !WXWIN_COMPATIBILITY_EVENT_TYPES | |
2073 | ||
6164f93c VZ |
2074 | // struct containing the members common to static and dynamic event tables |
2075 | // entries | |
bddd7a8d | 2076 | struct WXDLLIMPEXP_BASE wxEventTableEntryBase |
77d4384e | 2077 | { |
e6a6feba GD |
2078 | private: |
2079 | wxEventTableEntryBase& operator=(const wxEventTableEntryBase& event); | |
abcbaea7 | 2080 | |
e6a6feba | 2081 | public: |
d9e2e4c2 | 2082 | wxEventTableEntryBase(int winid, int idLast, |
6164f93c | 2083 | wxObjectEventFunction fn, wxObject *data) |
d9e2e4c2 | 2084 | : m_id(winid), |
497dbbd3 VZ |
2085 | m_lastId(idLast), |
2086 | m_fn(fn), | |
2087 | m_callbackUserData(data) | |
e6a6feba GD |
2088 | { } |
2089 | ||
2090 | wxEventTableEntryBase(const wxEventTableEntryBase& event) | |
497dbbd3 VZ |
2091 | : m_id(event.m_id), |
2092 | m_lastId(event.m_lastId), | |
2093 | m_fn(event.m_fn), | |
2094 | m_callbackUserData(event.m_callbackUserData) | |
abcbaea7 | 2095 | { } |
6164f93c | 2096 | |
497dbbd3 VZ |
2097 | // the range of ids for this entry: if m_lastId == wxID_ANY, the range |
2098 | // consists only of m_id, otherwise it is m_id..m_lastId inclusive | |
2099 | int m_id, | |
2100 | m_lastId; | |
82a5f02c | 2101 | |
6164f93c VZ |
2102 | // function to call: not wxEventFunction, because of dependency problems |
2103 | wxObjectEventFunction m_fn; | |
77d4384e | 2104 | |
6164f93c | 2105 | // arbitrary user data asosciated with the callback |
77d4384e RR |
2106 | wxObject* m_callbackUserData; |
2107 | }; | |
2108 | ||
6164f93c | 2109 | // an entry from a static event table |
bddd7a8d | 2110 | struct WXDLLIMPEXP_BASE wxEventTableEntry : public wxEventTableEntryBase |
c801d85f | 2111 | { |
d9e2e4c2 | 2112 | wxEventTableEntry(const int& evType, int winid, int idLast, |
6164f93c | 2113 | wxObjectEventFunction fn, wxObject *data) |
d9e2e4c2 | 2114 | : wxEventTableEntryBase(winid, idLast, fn, data), |
e6a6feba GD |
2115 | m_eventType(evType) |
2116 | { } | |
6164f93c VZ |
2117 | |
2118 | // the reference to event type: this allows us to not care about the | |
2119 | // (undefined) order in which the event table entries and the event types | |
2120 | // are initialized: initially the value of this reference might be | |
2121 | // invalid, but by the time it is used for the first time, all global | |
2122 | // objects will have been initialized (including the event type constants) | |
2123 | // and so it will have the correct value when it is needed | |
2124 | const int& m_eventType; | |
fc7a2a60 VZ |
2125 | |
2126 | private: | |
2127 | wxEventTableEntry& operator=(const wxEventTableEntry&); | |
6164f93c VZ |
2128 | }; |
2129 | ||
bddd7a8d | 2130 | class WXDLLIMPEXP_BASE wxEvtHandler; |
65b17727 | 2131 | |
6164f93c | 2132 | // an entry used in dynamic event table managed by wxEvtHandler::Connect() |
bddd7a8d | 2133 | struct WXDLLIMPEXP_BASE wxDynamicEventTableEntry : public wxEventTableEntryBase |
6164f93c | 2134 | { |
d9e2e4c2 | 2135 | wxDynamicEventTableEntry(int evType, int winid, int idLast, |
65b17727 | 2136 | wxObjectEventFunction fn, wxObject *data, wxEvtHandler* eventSink) |
d9e2e4c2 | 2137 | : wxEventTableEntryBase(winid, idLast, fn, data), |
65b17727 JS |
2138 | m_eventType(evType), |
2139 | m_eventSink(eventSink) | |
e6a6feba | 2140 | { } |
6164f93c VZ |
2141 | |
2142 | // not a reference here as we can't keep a reference to a temporary int | |
2143 | // created to wrap the constant value typically passed to Connect() - nor | |
2144 | // do we need it | |
2145 | int m_eventType; | |
65b17727 JS |
2146 | |
2147 | // Pointer to object whose function is fn - so we don't assume the | |
2148 | // EventFunction is always a member of the EventHandler receiving the | |
2149 | // message | |
2150 | wxEvtHandler* m_eventSink; | |
fc7a2a60 VZ |
2151 | |
2152 | DECLARE_NO_COPY_CLASS(wxDynamicEventTableEntry) | |
c801d85f KB |
2153 | }; |
2154 | ||
2e4df4bf VZ |
2155 | #endif // !WXWIN_COMPATIBILITY_EVENT_TYPES |
2156 | ||
2157 | // ---------------------------------------------------------------------------- | |
2158 | // wxEventTable: an array of event entries terminated with {0, 0, 0, 0, 0} | |
2159 | // ---------------------------------------------------------------------------- | |
886dd7d2 | 2160 | |
bddd7a8d | 2161 | struct WXDLLIMPEXP_BASE wxEventTable |
c801d85f | 2162 | { |
0b5eceb6 VZ |
2163 | const wxEventTable *baseTable; // base event table (next in chain) |
2164 | const wxEventTableEntry *entries; // bottom of entry array | |
c801d85f KB |
2165 | }; |
2166 | ||
b5a98acd VZ |
2167 | // ---------------------------------------------------------------------------- |
2168 | // wxEventHashTable: a helper of wxEvtHandler to speed up wxEventTable lookups. | |
2169 | // ---------------------------------------------------------------------------- | |
2170 | ||
6108e3fd | 2171 | WX_DEFINE_ARRAY_NO_PTR(const wxEventTableEntry*, wxEventTableEntryPointerArray); |
b5a98acd VZ |
2172 | class WXDLLIMPEXP_BASE wxEvtHandler; |
2173 | ||
2174 | class WXDLLIMPEXP_BASE wxEventHashTable | |
2175 | { | |
2176 | private: | |
2177 | // Internal data structs | |
2178 | struct EventTypeTable | |
2179 | { | |
2180 | wxEventType eventType; | |
2181 | wxEventTableEntryPointerArray eventEntryTable; | |
2182 | }; | |
2183 | typedef EventTypeTable* EventTypeTablePointer; | |
2184 | ||
2185 | public: | |
2186 | // Constructor, needs the event table it needs to hash later on. | |
2187 | // Note: hashing of the event table is not done in the constructor as it | |
2188 | // can be that the event table is not yet full initialize, the hash | |
2189 | // will gets initialized when handling the first event look-up request. | |
2190 | wxEventHashTable(const wxEventTable &table); | |
2191 | // Destructor. | |
2192 | ~wxEventHashTable(); | |
2193 | ||
2194 | // Handle the given event, in other words search the event table hash | |
2195 | // and call self->ProcessEvent() if a match was found. | |
2196 | bool HandleEvent(wxEvent &event, wxEvtHandler *self); | |
2197 | ||
2198 | protected: | |
2199 | // Init the hash table with the entries of the static event table. | |
2200 | void InitHashTable(); | |
2201 | // Helper funtion of InitHashTable() to insert 1 entry into the hash table. | |
2202 | void AddEntry(const wxEventTableEntry &entry); | |
2203 | // Allocate and init with null pointers the base hash table. | |
2204 | void AllocEventTypeTable(size_t size); | |
2205 | // Grow the hash table in size and transfer all items currently | |
2206 | // in the table to the correct location in the new table. | |
2207 | void GrowEventTypeTable(); | |
2208 | ||
2209 | protected: | |
2210 | const wxEventTable &m_table; | |
2211 | bool m_rebuildHash; | |
2212 | ||
2213 | size_t m_size; | |
2214 | EventTypeTablePointer *m_eventTypeTable; | |
fc7a2a60 VZ |
2215 | |
2216 | DECLARE_NO_COPY_CLASS(wxEventHashTable) | |
b5a98acd VZ |
2217 | }; |
2218 | ||
6164f93c VZ |
2219 | // ---------------------------------------------------------------------------- |
2220 | // wxEvtHandler: the base class for all objects handling wxWindows events | |
2221 | // ---------------------------------------------------------------------------- | |
2222 | ||
bddd7a8d | 2223 | class WXDLLIMPEXP_BASE wxEvtHandler : public wxObject |
c801d85f | 2224 | { |
2b854a32 VZ |
2225 | public: |
2226 | wxEvtHandler(); | |
6164f93c | 2227 | virtual ~wxEvtHandler(); |
2b854a32 VZ |
2228 | |
2229 | wxEvtHandler *GetNextHandler() const { return m_nextHandler; } | |
2230 | wxEvtHandler *GetPreviousHandler() const { return m_previousHandler; } | |
2231 | void SetNextHandler(wxEvtHandler *handler) { m_nextHandler = handler; } | |
2232 | void SetPreviousHandler(wxEvtHandler *handler) { m_previousHandler = handler; } | |
2233 | ||
8e193f38 | 2234 | void SetEvtHandlerEnabled(bool enabled) { m_enabled = enabled; } |
2b854a32 VZ |
2235 | bool GetEvtHandlerEnabled() const { return m_enabled; } |
2236 | ||
8e193f38 VZ |
2237 | // process an event right now |
2238 | virtual bool ProcessEvent(wxEvent& event); | |
2b854a32 | 2239 | |
8e193f38 VZ |
2240 | // add an event to be processed later |
2241 | void AddPendingEvent(wxEvent& event); | |
2b854a32 | 2242 | |
8e193f38 VZ |
2243 | // process all pending events |
2244 | void ProcessPendingEvents(); | |
2b854a32 | 2245 | |
20947e08 | 2246 | // add a |
7214297d GL |
2247 | #if wxUSE_THREADS |
2248 | bool ProcessThreadEvent(wxEvent& event); | |
7214297d | 2249 | #endif |
2b854a32 VZ |
2250 | |
2251 | // Dynamic association of a member function handler with the event handler, | |
d9e2e4c2 DE |
2252 | // winid and event type |
2253 | void Connect( int winid, int lastId, int eventType, | |
2b854a32 | 2254 | wxObjectEventFunction func, |
65b17727 JS |
2255 | wxObject *userData = (wxObject *) NULL, |
2256 | wxEvtHandler *eventSink = (wxEvtHandler *) NULL ); | |
2b854a32 VZ |
2257 | |
2258 | // Convenience function: take just one id | |
d9e2e4c2 | 2259 | void Connect( int winid, int eventType, |
2b854a32 | 2260 | wxObjectEventFunction func, |
65b17727 JS |
2261 | wxObject *userData = (wxObject *) NULL, |
2262 | wxEvtHandler *eventSink = (wxEvtHandler *) NULL ) | |
2263 | { Connect(winid, wxID_ANY, eventType, func, userData, eventSink); } | |
2b854a32 | 2264 | |
d9e2e4c2 | 2265 | bool Disconnect( int winid, int lastId, wxEventType eventType, |
97d7bfb8 | 2266 | wxObjectEventFunction func = NULL, |
65b17727 JS |
2267 | wxObject *userData = (wxObject *) NULL, |
2268 | wxEvtHandler *eventSink = (wxEvtHandler *) NULL ); | |
97d7bfb8 RR |
2269 | |
2270 | // Convenience function: take just one id | |
d9e2e4c2 | 2271 | bool Disconnect( int winid, wxEventType eventType = wxEVT_NULL, |
97d7bfb8 | 2272 | wxObjectEventFunction func = NULL, |
65b17727 JS |
2273 | wxObject *userData = (wxObject *) NULL, |
2274 | wxEvtHandler *eventSink = (wxEvtHandler *) NULL ) | |
2275 | { return Disconnect(winid, wxID_ANY, eventType, func, userData, eventSink); } | |
98243fed | 2276 | |
b88c44e7 RD |
2277 | |
2278 | // User data can be associated with each wxEvtHandler | |
2279 | void SetClientObject( wxClientData *data ) { DoSetClientObject(data); } | |
2280 | wxClientData *GetClientObject() const { return DoGetClientObject(); } | |
2281 | ||
2282 | void SetClientData( void *data ) { DoSetClientData(data); } | |
2283 | void *GetClientData() const { return DoGetClientData(); } | |
2284 | ||
2285 | ||
8e193f38 VZ |
2286 | // implementation from now on |
2287 | virtual bool SearchEventTable(wxEventTable& table, wxEvent& event); | |
2b854a32 | 2288 | bool SearchDynamicEventTable( wxEvent& event ); |
c801d85f | 2289 | |
63863e09 | 2290 | #if wxUSE_THREADS |
20947e08 DW |
2291 | void ClearEventLocker() |
2292 | { | |
2293 | # if !defined(__VISAGECPP__) | |
2294 | delete m_eventsLocker; | |
2295 | m_eventsLocker = NULL; | |
2296 | #endif | |
2297 | }; | |
63863e09 JS |
2298 | #endif |
2299 | ||
8e193f38 VZ |
2300 | // old stuff |
2301 | ||
2302 | #if WXWIN_COMPATIBILITY_2 | |
2303 | virtual void OnCommand(wxWindow& WXUNUSED(win), | |
2304 | wxCommandEvent& WXUNUSED(event)) | |
2305 | { | |
2306 | wxFAIL_MSG(wxT("shouldn't be called any more")); | |
2307 | } | |
2308 | ||
2309 | // Called if child control has no callback function | |
2310 | virtual long Default() | |
2311 | { return GetNextHandler() ? GetNextHandler()->Default() : 0; }; | |
2312 | #endif // WXWIN_COMPATIBILITY_2 | |
2313 | ||
2314 | #if WXWIN_COMPATIBILITY | |
2315 | virtual bool OnClose(); | |
2316 | #endif | |
2317 | ||
c801d85f | 2318 | private: |
8e193f38 | 2319 | static const wxEventTableEntry sm_eventTableEntries[]; |
2b854a32 | 2320 | |
c801d85f | 2321 | protected: |
4caf847c VZ |
2322 | // hooks for wxWindow used by ProcessEvent() |
2323 | // ----------------------------------------- | |
2324 | ||
2325 | // this one is called before trying our own event table to allow plugging | |
2326 | // in the validators | |
2327 | #if wxUSE_VALIDATORS | |
2328 | virtual bool TryValidator(wxEvent& WXUNUSED(event)) { return false; } | |
2329 | #endif // wxUSE_VALIDATORS | |
2330 | ||
2331 | // this one is called after failing to find the event handle in our own | |
2332 | // table to give a chance to the other windows to process it | |
2333 | // | |
2334 | // base class implementation passes the event to wxTheApp | |
2335 | virtual bool TryParent(wxEvent& event); | |
2336 | ||
2337 | ||
b5a98acd | 2338 | static const wxEventTable sm_eventTable; |
193bf013 VZ |
2339 | virtual const wxEventTable *GetEventTable() const; |
2340 | ||
b5a98acd VZ |
2341 | static wxEventHashTable sm_eventHashTable; |
2342 | virtual wxEventHashTable& GetEventHashTable() const; | |
2343 | ||
63863e09 JS |
2344 | wxEvtHandler* m_nextHandler; |
2345 | wxEvtHandler* m_previousHandler; | |
63863e09 | 2346 | wxList* m_dynamicEvents; |
42e69d6b | 2347 | wxList* m_pendingEvents; |
6164f93c | 2348 | |
7214297d | 2349 | #if wxUSE_THREADS |
20947e08 DW |
2350 | #if defined (__VISAGECPP__) |
2351 | wxCriticalSection m_eventsLocker; | |
2352 | # else | |
63863e09 | 2353 | wxCriticalSection* m_eventsLocker; |
20947e08 | 2354 | # endif |
7214297d | 2355 | #endif |
193bf013 | 2356 | |
8e193f38 VZ |
2357 | // Is event handler enabled? |
2358 | bool m_enabled; | |
6164f93c | 2359 | |
b88c44e7 RD |
2360 | |
2361 | // The user data: either an object which will be deleted by the container | |
2362 | // when it's deleted or some raw pointer which we do nothing with - only | |
2363 | // one type of data can be used with the given window (i.e. you cannot set | |
2364 | // the void data and then associate the container with wxClientData or vice | |
2365 | // versa) | |
2366 | union | |
2367 | { | |
2368 | wxClientData *m_clientObject; | |
2369 | void *m_clientData; | |
2370 | }; | |
2371 | ||
2372 | // what kind of data do we have? | |
2373 | wxClientDataType m_clientDataType; | |
2374 | ||
2375 | // client data accessors | |
2376 | virtual void DoSetClientObject( wxClientData *data ); | |
2377 | virtual wxClientData *DoGetClientObject() const; | |
2378 | ||
2379 | virtual void DoSetClientData( void *data ); | |
2380 | virtual void *DoGetClientData() const; | |
2381 | ||
6164f93c | 2382 | private: |
fc7a2a60 | 2383 | DECLARE_DYNAMIC_CLASS_NO_COPY(wxEvtHandler) |
c801d85f KB |
2384 | }; |
2385 | ||
e2478fde VZ |
2386 | // Post a message to the given eventhandler which will be processed during the |
2387 | // next event loop iteration | |
2388 | inline void wxPostEvent(wxEvtHandler *dest, wxEvent& event) | |
2389 | { | |
2390 | wxCHECK_RET( dest, wxT("need an object to post event to in wxPostEvent") ); | |
2391 | ||
2392 | dest->AddPendingEvent(event); | |
2393 | } | |
2394 | ||
c801d85f | 2395 | typedef void (wxEvtHandler::*wxEventFunction)(wxEvent&); |
e90c1d2a | 2396 | #if wxUSE_GUI |
c801d85f KB |
2397 | typedef void (wxEvtHandler::*wxCommandEventFunction)(wxCommandEvent&); |
2398 | typedef void (wxEvtHandler::*wxScrollEventFunction)(wxScrollEvent&); | |
c5b42c87 | 2399 | typedef void (wxEvtHandler::*wxScrollWinEventFunction)(wxScrollWinEvent&); |
c801d85f KB |
2400 | typedef void (wxEvtHandler::*wxSizeEventFunction)(wxSizeEvent&); |
2401 | typedef void (wxEvtHandler::*wxMoveEventFunction)(wxMoveEvent&); | |
2402 | typedef void (wxEvtHandler::*wxPaintEventFunction)(wxPaintEvent&); | |
2403 | typedef void (wxEvtHandler::*wxEraseEventFunction)(wxEraseEvent&); | |
2404 | typedef void (wxEvtHandler::*wxMouseEventFunction)(wxMouseEvent&); | |
2405 | typedef void (wxEvtHandler::*wxCharEventFunction)(wxKeyEvent&); | |
2406 | typedef void (wxEvtHandler::*wxFocusEventFunction)(wxFocusEvent&); | |
456bc6d9 | 2407 | typedef void (wxEvtHandler::*wxChildFocusEventFunction)(wxChildFocusEvent&); |
c801d85f KB |
2408 | typedef void (wxEvtHandler::*wxActivateEventFunction)(wxActivateEvent&); |
2409 | typedef void (wxEvtHandler::*wxMenuEventFunction)(wxMenuEvent&); | |
2410 | typedef void (wxEvtHandler::*wxJoystickEventFunction)(wxJoystickEvent&); | |
2411 | typedef void (wxEvtHandler::*wxDropFilesEventFunction)(wxDropFilesEvent&); | |
2412 | typedef void (wxEvtHandler::*wxInitDialogEventFunction)(wxInitDialogEvent&); | |
2413 | typedef void (wxEvtHandler::*wxSysColourChangedFunction)(wxSysColourChangedEvent&); | |
574c939e | 2414 | typedef void (wxEvtHandler::*wxDisplayChangedFunction)(wxDisplayChangedEvent&); |
c801d85f KB |
2415 | typedef void (wxEvtHandler::*wxUpdateUIEventFunction)(wxUpdateUIEvent&); |
2416 | typedef void (wxEvtHandler::*wxIdleEventFunction)(wxIdleEvent&); | |
2417 | typedef void (wxEvtHandler::*wxCloseEventFunction)(wxCloseEvent&); | |
2418 | typedef void (wxEvtHandler::*wxShowEventFunction)(wxShowEvent&); | |
9bc13858 | 2419 | typedef void (wxEvtHandler::*wxIconizeEventFunction)(wxIconizeEvent&); |
98e78a5e | 2420 | typedef void (wxEvtHandler::*wxMaximizeEventFunction)(wxMaximizeEvent&); |
81d66cf3 | 2421 | typedef void (wxEvtHandler::*wxNavigationKeyEventFunction)(wxNavigationKeyEvent&); |
f7bd2698 JS |
2422 | typedef void (wxEvtHandler::*wxPaletteChangedEventFunction)(wxPaletteChangedEvent&); |
2423 | typedef void (wxEvtHandler::*wxQueryNewPaletteEventFunction)(wxQueryNewPaletteEvent&); | |
43b5058d VZ |
2424 | typedef void (wxEvtHandler::*wxWindowCreateEventFunction)(wxWindowCreateEvent&); |
2425 | typedef void (wxEvtHandler::*wxWindowDestroyEventFunction)(wxWindowDestroyEvent&); | |
2426 | typedef void (wxEvtHandler::*wxSetCursorEventFunction)(wxSetCursorEvent&); | |
669f7a11 | 2427 | typedef void (wxEvtHandler::*wxNotifyEventFunction)(wxNotifyEvent&); |
b96340e6 | 2428 | typedef void (wxEvtHandler::*wxHelpEventFunction)(wxHelpEvent&); |
69231000 | 2429 | typedef void (wxEvtHandler::*wxContextMenuEventFunction)(wxContextMenuEvent&); |
a5e84126 | 2430 | typedef void (wxEvtHandler::*wxMouseCaptureChangedEventFunction)(wxMouseCaptureChangedEvent&); |
e90c1d2a | 2431 | #endif // wxUSE_GUI |
c801d85f KB |
2432 | |
2433 | // N.B. In GNU-WIN32, you *have* to take the address of a member function | |
2434 | // (use &) or the compiler crashes... | |
2435 | ||
2436 | #define DECLARE_EVENT_TABLE() \ | |
2e4df4bf VZ |
2437 | private: \ |
2438 | static const wxEventTableEntry sm_eventTableEntries[]; \ | |
2439 | protected: \ | |
2440 | static const wxEventTable sm_eventTable; \ | |
b5a98acd VZ |
2441 | virtual const wxEventTable* GetEventTable() const; \ |
2442 | static wxEventHashTable sm_eventHashTable; \ | |
2443 | virtual wxEventHashTable& GetEventHashTable() const; | |
c801d85f | 2444 | |
48276300 VZ |
2445 | // N.B.: when building DLL with Borland C++ 5.5 compiler, you must initialize |
2446 | // sm_eventTable before using it in GetEventTable() or the compiler gives | |
2447 | // E2233 (see http://groups.google.com/groups?selm=397dcc8a%241_2%40dnews) | |
b5a98acd | 2448 | |
c801d85f | 2449 | #define BEGIN_EVENT_TABLE(theClass, baseClass) \ |
2e4df4bf VZ |
2450 | const wxEventTable theClass::sm_eventTable = \ |
2451 | { &baseClass::sm_eventTable, &theClass::sm_eventTableEntries[0] }; \ | |
48276300 VZ |
2452 | const wxEventTable *theClass::GetEventTable() const \ |
2453 | { return &theClass::sm_eventTable; } \ | |
b5a98acd VZ |
2454 | wxEventHashTable theClass::sm_eventHashTable(theClass::sm_eventTable); \ |
2455 | wxEventHashTable &theClass::GetEventHashTable() const \ | |
2456 | { return theClass::sm_eventHashTable; } \ | |
2e4df4bf | 2457 | const wxEventTableEntry theClass::sm_eventTableEntries[] = { \ |
c801d85f | 2458 | |
33e29419 | 2459 | #define END_EVENT_TABLE() DECLARE_EVENT_TABLE_ENTRY( wxEVT_NULL, 0, 0, 0, 0 ) }; |
2b854a32 | 2460 | |
c801d85f KB |
2461 | /* |
2462 | * Event table macros | |
2463 | */ | |
2464 | ||
2465 | // Generic events | |
d9e2e4c2 | 2466 | #define EVT_CUSTOM(event, winid, func) DECLARE_EVENT_TABLE_ENTRY( event, winid, wxID_ANY, (wxObjectEventFunction) (wxEventFunction) & func, (wxObject *) NULL ), |
2e4df4bf | 2467 | #define EVT_CUSTOM_RANGE(event, id1, id2, func) DECLARE_EVENT_TABLE_ENTRY( event, id1, id2, (wxObjectEventFunction) (wxEventFunction) & func, (wxObject *) NULL ), |
c801d85f KB |
2468 | |
2469 | // Miscellaneous | |
497dbbd3 | 2470 | #define EVT_SIZE(func) DECLARE_EVENT_TABLE_ENTRY( wxEVT_SIZE, wxID_ANY, wxID_ANY, (wxObjectEventFunction) (wxEventFunction) (wxSizeEventFunction) & func, (wxObject *) NULL ), |
5706de1c | 2471 | #define EVT_SIZING(func) DECLARE_EVENT_TABLE_ENTRY( wxEVT_SIZING, -1, -1, (wxObjectEventFunction) (wxEventFunction) (wxSizeEventFunction) & func, (wxObject *) NULL ), |
497dbbd3 | 2472 | #define EVT_MOVE(func) DECLARE_EVENT_TABLE_ENTRY( wxEVT_MOVE, wxID_ANY, wxID_ANY, (wxObjectEventFunction) (wxEventFunction) (wxMoveEventFunction) & func, (wxObject *) NULL ), |
5706de1c | 2473 | #define EVT_MOVING(func) DECLARE_EVENT_TABLE_ENTRY( wxEVT_MOVING, -1, -1, (wxObjectEventFunction) (wxEventFunction) (wxMoveEventFunction) & func, (wxObject *) NULL ), |
497dbbd3 VZ |
2474 | #define EVT_CLOSE(func) DECLARE_EVENT_TABLE_ENTRY( wxEVT_CLOSE_WINDOW, wxID_ANY, wxID_ANY, (wxObjectEventFunction) (wxEventFunction) (wxCloseEventFunction) & func, (wxObject *) NULL ), |
2475 | #define EVT_END_SESSION(func) DECLARE_EVENT_TABLE_ENTRY( wxEVT_END_SESSION, wxID_ANY, wxID_ANY, (wxObjectEventFunction) (wxEventFunction) (wxCloseEventFunction) & func, (wxObject *) NULL ), | |
2476 | #define EVT_QUERY_END_SESSION(func) DECLARE_EVENT_TABLE_ENTRY( wxEVT_QUERY_END_SESSION, wxID_ANY, wxID_ANY, (wxObjectEventFunction) (wxEventFunction) (wxCloseEventFunction) & func, (wxObject *) NULL ), | |
2477 | #define EVT_PAINT(func) DECLARE_EVENT_TABLE_ENTRY( wxEVT_PAINT, wxID_ANY, wxID_ANY, (wxObjectEventFunction) (wxEventFunction) (wxPaintEventFunction) & func, (wxObject *) NULL ), | |
2478 | #define EVT_NC_PAINT(func) DECLARE_EVENT_TABLE_ENTRY( wxEVT_NC_PAINT, wxID_ANY, wxID_ANY, (wxObjectEventFunction) (wxEventFunction) (wxPaintEventFunction) & func, (wxObject *) NULL ), | |
2479 | #define EVT_ERASE_BACKGROUND(func) DECLARE_EVENT_TABLE_ENTRY( wxEVT_ERASE_BACKGROUND, wxID_ANY, wxID_ANY, (wxObjectEventFunction) (wxEventFunction) (wxEraseEventFunction) & func, (wxObject *) NULL ), | |
2480 | #define EVT_CHAR(func) DECLARE_EVENT_TABLE_ENTRY( wxEVT_CHAR, wxID_ANY, wxID_ANY, (wxObjectEventFunction) (wxEventFunction) (wxCharEventFunction) & func, (wxObject *) NULL ), | |
2481 | #define EVT_KEY_DOWN(func) DECLARE_EVENT_TABLE_ENTRY( wxEVT_KEY_DOWN, wxID_ANY, wxID_ANY, (wxObjectEventFunction) (wxEventFunction) (wxCharEventFunction) & func, (wxObject *) NULL ), | |
2482 | #define EVT_KEY_UP(func) DECLARE_EVENT_TABLE_ENTRY( wxEVT_KEY_UP, wxID_ANY, wxID_ANY, (wxObjectEventFunction) (wxEventFunction) (wxCharEventFunction) & func, (wxObject *) NULL ), | |
5048c832 JS |
2483 | #if wxUSE_HOTKEY |
2484 | #define EVT_HOTKEY(id, func) DECLARE_EVENT_TABLE_ENTRY( wxEVT_HOTKEY, id, wxID_ANY, (wxObjectEventFunction) (wxEventFunction) (wxCharEventFunction) & func, (wxObject *) NULL ), | |
2485 | #endif | |
497dbbd3 VZ |
2486 | #define EVT_CHAR_HOOK(func) DECLARE_EVENT_TABLE_ENTRY( wxEVT_CHAR_HOOK, wxID_ANY, wxID_ANY, (wxObjectEventFunction) (wxEventFunction) (wxCharEventFunction) & func, NULL ), |
2487 | #define EVT_MENU_OPEN(func) DECLARE_EVENT_TABLE_ENTRY( wxEVT_MENU_OPEN, wxID_ANY, wxID_ANY, (wxObjectEventFunction) (wxEventFunction) (wxMenuEventFunction) & func, (wxObject *) NULL ), | |
2488 | #define EVT_MENU_CLOSE(func) DECLARE_EVENT_TABLE_ENTRY( wxEVT_MENU_CLOSE, wxID_ANY, wxID_ANY, (wxObjectEventFunction) (wxEventFunction) (wxMenuEventFunction) & func, (wxObject *) NULL ), | |
d9e2e4c2 | 2489 | #define EVT_MENU_HIGHLIGHT(winid, func) DECLARE_EVENT_TABLE_ENTRY( wxEVT_MENU_HIGHLIGHT, winid, wxID_ANY, (wxObjectEventFunction) (wxEventFunction) (wxMenuEventFunction) & func, (wxObject *) NULL ), |
497dbbd3 VZ |
2490 | #define EVT_MENU_HIGHLIGHT_ALL(func) DECLARE_EVENT_TABLE_ENTRY( wxEVT_MENU_HIGHLIGHT, wxID_ANY, wxID_ANY, (wxObjectEventFunction) (wxEventFunction) (wxMenuEventFunction) & func, (wxObject *) NULL ), |
2491 | #define EVT_SET_FOCUS(func) DECLARE_EVENT_TABLE_ENTRY( wxEVT_SET_FOCUS, wxID_ANY, wxID_ANY, (wxObjectEventFunction) (wxEventFunction) (wxFocusEventFunction) & func, (wxObject *) NULL ), | |
2492 | #define EVT_KILL_FOCUS(func) DECLARE_EVENT_TABLE_ENTRY( wxEVT_KILL_FOCUS, wxID_ANY, wxID_ANY, (wxObjectEventFunction) (wxEventFunction) (wxFocusEventFunction) & func, (wxObject *) NULL ), | |
2493 | #define EVT_CHILD_FOCUS(func) DECLARE_EVENT_TABLE_ENTRY( wxEVT_CHILD_FOCUS, wxID_ANY, wxID_ANY, (wxObjectEventFunction) (wxEventFunction) (wxCommandEventFunction) (wxChildFocusEventFunction) & func, (wxObject *) NULL ), | |
2494 | #define EVT_ACTIVATE(func) DECLARE_EVENT_TABLE_ENTRY( wxEVT_ACTIVATE, wxID_ANY, wxID_ANY, (wxObjectEventFunction) (wxEventFunction) (wxActivateEventFunction) & func, (wxObject *) NULL ), | |
2495 | #define EVT_ACTIVATE_APP(func) DECLARE_EVENT_TABLE_ENTRY( wxEVT_ACTIVATE_APP, wxID_ANY, wxID_ANY, (wxObjectEventFunction) (wxEventFunction) (wxActivateEventFunction) & func, (wxObject *) NULL ), | |
2496 | #define EVT_END_SESSION(func) DECLARE_EVENT_TABLE_ENTRY( wxEVT_END_SESSION, wxID_ANY, wxID_ANY, (wxObjectEventFunction) (wxEventFunction) (wxCloseEventFunction) & func, (wxObject *) NULL ), | |
2497 | #define EVT_QUERY_END_SESSION(func) DECLARE_EVENT_TABLE_ENTRY( wxEVT_QUERY_END_SESSION, wxID_ANY, wxID_ANY, (wxObjectEventFunction) (wxEventFunction) (wxCloseEventFunction) & func, (wxObject *) NULL ), | |
2498 | #define EVT_DROP_FILES(func) DECLARE_EVENT_TABLE_ENTRY( wxEVT_DROP_FILES, wxID_ANY, wxID_ANY, (wxObjectEventFunction) (wxEventFunction) (wxDropFilesEventFunction) & func, (wxObject *) NULL ), | |
2499 | #define EVT_INIT_DIALOG(func) DECLARE_EVENT_TABLE_ENTRY( wxEVT_INIT_DIALOG, wxID_ANY, wxID_ANY, (wxObjectEventFunction) (wxEventFunction) (wxInitDialogEventFunction) & func, (wxObject *) NULL ), | |
2500 | #define EVT_SYS_COLOUR_CHANGED(func) DECLARE_EVENT_TABLE_ENTRY( wxEVT_SYS_COLOUR_CHANGED, wxID_ANY, wxID_ANY, (wxObjectEventFunction) (wxEventFunction) (wxSysColourChangedFunction) & func, (wxObject *) NULL ), | |
2501 | #define EVT_DISPLAY_CHANGED(func) DECLARE_EVENT_TABLE_ENTRY( wxEVT_DISPLAY_CHANGED, wxID_ANY, wxID_ANY, (wxObjectEventFunction) (wxEventFunction) (wxDisplayChangedFunction) & func, (wxObject *) NULL ), | |
2502 | #define EVT_SHOW(func) DECLARE_EVENT_TABLE_ENTRY( wxEVT_SHOW, wxID_ANY, wxID_ANY, (wxObjectEventFunction) (wxEventFunction) (wxShowEventFunction) & func, (wxObject *) NULL ), | |
2503 | #define EVT_MAXIMIZE(func) DECLARE_EVENT_TABLE_ENTRY( wxEVT_MAXIMIZE, wxID_ANY, wxID_ANY, (wxObjectEventFunction) (wxEventFunction) (wxMaximizeEventFunction) & func, (wxObject *) NULL ), | |
2504 | #define EVT_ICONIZE(func) DECLARE_EVENT_TABLE_ENTRY( wxEVT_ICONIZE, wxID_ANY, wxID_ANY, (wxObjectEventFunction) (wxEventFunction) (wxIconizeEventFunction) & func, (wxObject *) NULL ), | |
2505 | #define EVT_NAVIGATION_KEY(func) DECLARE_EVENT_TABLE_ENTRY( wxEVT_NAVIGATION_KEY, wxID_ANY, wxID_ANY, (wxObjectEventFunction) (wxEventFunction) (wxCommandEventFunction) (wxNavigationKeyEventFunction) & func, (wxObject *) NULL ), | |
2506 | #define EVT_PALETTE_CHANGED(func) DECLARE_EVENT_TABLE_ENTRY( wxEVT_PALETTE_CHANGED, wxID_ANY, wxID_ANY, (wxObjectEventFunction) (wxEventFunction) (wxPaletteChangedEventFunction) & func, (wxObject *) NULL ), | |
2507 | #define EVT_QUERY_NEW_PALETTE(func) DECLARE_EVENT_TABLE_ENTRY( wxEVT_QUERY_NEW_PALETTE, wxID_ANY, wxID_ANY, (wxObjectEventFunction) (wxEventFunction) (wxQueryNewPaletteEventFunction) & func, (wxObject *) NULL ), | |
2508 | #define EVT_WINDOW_CREATE(func) DECLARE_EVENT_TABLE_ENTRY( wxEVT_CREATE, wxID_ANY, wxID_ANY, (wxObjectEventFunction) (wxEventFunction) (wxWindowCreateEventFunction) & func, (wxObject *) NULL ), | |
2509 | #define EVT_WINDOW_DESTROY(func) DECLARE_EVENT_TABLE_ENTRY( wxEVT_DESTROY, wxID_ANY, wxID_ANY, (wxObjectEventFunction) (wxEventFunction) (wxWindowDestroyEventFunction) & func, (wxObject *) NULL ), | |
2510 | #define EVT_SET_CURSOR(func) DECLARE_EVENT_TABLE_ENTRY( wxEVT_SET_CURSOR, wxID_ANY, wxID_ANY, (wxObjectEventFunction) (wxEventFunction) (wxSetCursorEventFunction) & func, (wxObject *) NULL ), | |
2511 | #define EVT_MOUSE_CAPTURE_CHANGED(func) DECLARE_EVENT_TABLE_ENTRY( wxEVT_MOUSE_CAPTURE_CHANGED, wxID_ANY, wxID_ANY, (wxObjectEventFunction) (wxEventFunction) (wxMouseCaptureChangedEventFunction) & func, (wxObject *) NULL ), | |
c801d85f KB |
2512 | |
2513 | // Mouse events | |
497dbbd3 VZ |
2514 | #define EVT_LEFT_DOWN(func) DECLARE_EVENT_TABLE_ENTRY( wxEVT_LEFT_DOWN, wxID_ANY, wxID_ANY, (wxObjectEventFunction) (wxEventFunction) (wxMouseEventFunction) & func, (wxObject *) NULL ), |
2515 | #define EVT_LEFT_UP(func) DECLARE_EVENT_TABLE_ENTRY( wxEVT_LEFT_UP, wxID_ANY, wxID_ANY, (wxObjectEventFunction) (wxEventFunction) (wxMouseEventFunction) & func, (wxObject *) NULL ), | |
2516 | #define EVT_MIDDLE_DOWN(func) DECLARE_EVENT_TABLE_ENTRY( wxEVT_MIDDLE_DOWN, wxID_ANY, wxID_ANY, (wxObjectEventFunction) (wxEventFunction) (wxMouseEventFunction) & func, (wxObject *) NULL ), | |
2517 | #define EVT_MIDDLE_UP(func) DECLARE_EVENT_TABLE_ENTRY( wxEVT_MIDDLE_UP, wxID_ANY, wxID_ANY, (wxObjectEventFunction) (wxEventFunction) (wxMouseEventFunction) & func, (wxObject *) NULL ), | |
2518 | #define EVT_RIGHT_DOWN(func) DECLARE_EVENT_TABLE_ENTRY( wxEVT_RIGHT_DOWN, wxID_ANY, wxID_ANY, (wxObjectEventFunction) (wxEventFunction) (wxMouseEventFunction) & func, (wxObject *) NULL ), | |
2519 | #define EVT_RIGHT_UP(func) DECLARE_EVENT_TABLE_ENTRY( wxEVT_RIGHT_UP, wxID_ANY, wxID_ANY, (wxObjectEventFunction) (wxEventFunction) (wxMouseEventFunction) & func, (wxObject *) NULL ), | |
2520 | #define EVT_MOTION(func) DECLARE_EVENT_TABLE_ENTRY( wxEVT_MOTION, wxID_ANY, wxID_ANY, (wxObjectEventFunction) (wxEventFunction) (wxMouseEventFunction) & func, (wxObject *) NULL ), | |
2521 | #define EVT_LEFT_DCLICK(func) DECLARE_EVENT_TABLE_ENTRY( wxEVT_LEFT_DCLICK, wxID_ANY, wxID_ANY, (wxObjectEventFunction) (wxEventFunction) (wxMouseEventFunction) & func, (wxObject *) NULL ), | |
2522 | #define EVT_MIDDLE_DCLICK(func) DECLARE_EVENT_TABLE_ENTRY( wxEVT_MIDDLE_DCLICK, wxID_ANY, wxID_ANY, (wxObjectEventFunction) (wxEventFunction) (wxMouseEventFunction) & func, (wxObject *) NULL ), | |
2523 | #define EVT_RIGHT_DCLICK(func) DECLARE_EVENT_TABLE_ENTRY( wxEVT_RIGHT_DCLICK, wxID_ANY, wxID_ANY, (wxObjectEventFunction) (wxEventFunction) (wxMouseEventFunction) & func, (wxObject *) NULL ), | |
2524 | #define EVT_LEAVE_WINDOW(func) DECLARE_EVENT_TABLE_ENTRY( wxEVT_LEAVE_WINDOW, wxID_ANY, wxID_ANY, (wxObjectEventFunction) (wxEventFunction) (wxMouseEventFunction) & func, (wxObject *) NULL ), | |
2525 | #define EVT_ENTER_WINDOW(func) DECLARE_EVENT_TABLE_ENTRY( wxEVT_ENTER_WINDOW, wxID_ANY, wxID_ANY, (wxObjectEventFunction) (wxEventFunction) (wxMouseEventFunction) & func, (wxObject *) NULL ), | |
2526 | #define EVT_MOUSEWHEEL(func) DECLARE_EVENT_TABLE_ENTRY( wxEVT_MOUSEWHEEL, wxID_ANY, wxID_ANY, (wxObjectEventFunction) (wxEventFunction) (wxMouseEventFunction) & func, (wxObject *) NULL ), | |
c801d85f KB |
2527 | |
2528 | // All mouse events | |
2529 | #define EVT_MOUSE_EVENTS(func) \ | |
497dbbd3 VZ |
2530 | DECLARE_EVENT_TABLE_ENTRY( wxEVT_LEFT_DOWN, wxID_ANY, wxID_ANY, (wxObjectEventFunction) (wxEventFunction) (wxMouseEventFunction) & func, (wxObject *) NULL ),\ |
2531 | DECLARE_EVENT_TABLE_ENTRY( wxEVT_LEFT_UP, wxID_ANY, wxID_ANY, (wxObjectEventFunction) (wxEventFunction) (wxMouseEventFunction) & func, (wxObject *) NULL ),\ | |
2532 | DECLARE_EVENT_TABLE_ENTRY( wxEVT_MIDDLE_DOWN, wxID_ANY, wxID_ANY, (wxObjectEventFunction) (wxEventFunction) (wxMouseEventFunction) & func, (wxObject *) NULL ),\ | |
2533 | DECLARE_EVENT_TABLE_ENTRY( wxEVT_MIDDLE_UP, wxID_ANY, wxID_ANY, (wxObjectEventFunction) (wxEventFunction) (wxMouseEventFunction) & func, (wxObject *) NULL ),\ | |
2534 | DECLARE_EVENT_TABLE_ENTRY( wxEVT_RIGHT_DOWN, wxID_ANY, wxID_ANY, (wxObjectEventFunction) (wxEventFunction) (wxMouseEventFunction) & func, (wxObject *) NULL ),\ | |
2535 | DECLARE_EVENT_TABLE_ENTRY( wxEVT_RIGHT_UP, wxID_ANY, wxID_ANY, (wxObjectEventFunction) (wxEventFunction) (wxMouseEventFunction) & func, (wxObject *) NULL ),\ | |
2536 | DECLARE_EVENT_TABLE_ENTRY( wxEVT_MOTION, wxID_ANY, wxID_ANY, (wxObjectEventFunction) (wxEventFunction) (wxMouseEventFunction) & func, (wxObject *) NULL ),\ | |
2537 | DECLARE_EVENT_TABLE_ENTRY( wxEVT_LEFT_DCLICK, wxID_ANY, wxID_ANY, (wxObjectEventFunction) (wxEventFunction) (wxMouseEventFunction) & func, (wxObject *) NULL ),\ | |
2538 | DECLARE_EVENT_TABLE_ENTRY( wxEVT_MIDDLE_DCLICK, wxID_ANY, wxID_ANY, (wxObjectEventFunction) (wxEventFunction) (wxMouseEventFunction) & func, (wxObject *) NULL ),\ | |
2539 | DECLARE_EVENT_TABLE_ENTRY( wxEVT_RIGHT_DCLICK, wxID_ANY, wxID_ANY, (wxObjectEventFunction) (wxEventFunction) (wxMouseEventFunction) & func, (wxObject *) NULL ),\ | |
2540 | DECLARE_EVENT_TABLE_ENTRY( wxEVT_ENTER_WINDOW, wxID_ANY, wxID_ANY, (wxObjectEventFunction) (wxEventFunction) (wxMouseEventFunction) & func, (wxObject *) NULL ),\ | |
2541 | DECLARE_EVENT_TABLE_ENTRY( wxEVT_LEAVE_WINDOW, wxID_ANY, wxID_ANY, (wxObjectEventFunction) (wxEventFunction) (wxMouseEventFunction) & func, (wxObject *) NULL ),\ | |
2542 | DECLARE_EVENT_TABLE_ENTRY( wxEVT_MOUSEWHEEL, wxID_ANY, wxID_ANY, (wxObjectEventFunction) (wxEventFunction) (wxMouseEventFunction) & func, (wxObject *) NULL ), | |
c801d85f KB |
2543 | |
2544 | // EVT_COMMAND | |
d9e2e4c2 | 2545 | #define EVT_COMMAND(winid, event, fn) DECLARE_EVENT_TABLE_ENTRY( event, winid, wxID_ANY, (wxObjectEventFunction) (wxEventFunction) (wxCommandEventFunction) & fn, (wxObject *) NULL ), |
2e4df4bf | 2546 | #define EVT_COMMAND_RANGE(id1, id2, event, fn) DECLARE_EVENT_TABLE_ENTRY( event, id1, id2, (wxObjectEventFunction) (wxEventFunction) (wxCommandEventFunction) & fn, (wxObject *) NULL ), |
c801d85f | 2547 | |
c5b42c87 RR |
2548 | // Scrolling from wxWindow (sent to wxScrolledWindow) |
2549 | #define EVT_SCROLLWIN(func) \ | |
497dbbd3 VZ |
2550 | DECLARE_EVENT_TABLE_ENTRY( wxEVT_SCROLLWIN_TOP, wxID_ANY, wxID_ANY, (wxObjectEventFunction) (wxEventFunction) (wxScrollWinEventFunction) & func, (wxObject *) NULL ),\ |
2551 | DECLARE_EVENT_TABLE_ENTRY( wxEVT_SCROLLWIN_BOTTOM, wxID_ANY, wxID_ANY, (wxObjectEventFunction) (wxEventFunction) (wxScrollWinEventFunction) & func, (wxObject *) NULL ),\ | |
2552 | DECLARE_EVENT_TABLE_ENTRY( wxEVT_SCROLLWIN_LINEUP, wxID_ANY, wxID_ANY, (wxObjectEventFunction) (wxEventFunction) (wxScrollWinEventFunction) & func, (wxObject *) NULL ),\ | |
2553 | DECLARE_EVENT_TABLE_ENTRY( wxEVT_SCROLLWIN_LINEDOWN, wxID_ANY, wxID_ANY, (wxObjectEventFunction) (wxEventFunction) (wxScrollWinEventFunction) & func, (wxObject *) NULL ),\ | |
2554 | DECLARE_EVENT_TABLE_ENTRY( wxEVT_SCROLLWIN_PAGEUP, wxID_ANY, wxID_ANY, (wxObjectEventFunction) (wxEventFunction) (wxScrollWinEventFunction) & func, (wxObject *) NULL ),\ | |
2555 | DECLARE_EVENT_TABLE_ENTRY( wxEVT_SCROLLWIN_PAGEDOWN, wxID_ANY, wxID_ANY, (wxObjectEventFunction) (wxEventFunction) (wxScrollWinEventFunction) & func, (wxObject *) NULL ),\ | |
2556 | DECLARE_EVENT_TABLE_ENTRY( wxEVT_SCROLLWIN_THUMBTRACK, wxID_ANY, wxID_ANY, (wxObjectEventFunction) (wxEventFunction) (wxScrollWinEventFunction) & func, (wxObject *) NULL ),\ | |
2557 | DECLARE_EVENT_TABLE_ENTRY( wxEVT_SCROLLWIN_THUMBRELEASE, wxID_ANY, wxID_ANY, (wxObjectEventFunction) (wxEventFunction) (wxScrollWinEventFunction) & func, (wxObject *) NULL ), | |
2558 | ||
2559 | #define EVT_SCROLLWIN_TOP(func) DECLARE_EVENT_TABLE_ENTRY( wxEVT_SCROLLWIN_TOP, wxID_ANY, wxID_ANY, (wxObjectEventFunction) (wxEventFunction) (wxScrollWinEventFunction) & func, (wxObject *) NULL ), | |
2560 | #define EVT_SCROLLWIN_BOTTOM(func) DECLARE_EVENT_TABLE_ENTRY( wxEVT_SCROLLWIN_BOTTOM, wxID_ANY, wxID_ANY, (wxObjectEventFunction) (wxEventFunction) (wxScrollWinEventFunction) & func, (wxObject *) NULL ), | |
2561 | #define EVT_SCROLLWIN_LINEUP(func) DECLARE_EVENT_TABLE_ENTRY( wxEVT_SCROLLWIN_LINEUP, wxID_ANY, wxID_ANY, (wxObjectEventFunction) (wxEventFunction) (wxScrollWinEventFunction) & func, (wxObject *) NULL ), | |
2562 | #define EVT_SCROLLWIN_LINEDOWN(func) DECLARE_EVENT_TABLE_ENTRY( wxEVT_SCROLLWIN_LINEDOWN, wxID_ANY, wxID_ANY, (wxObjectEventFunction) (wxEventFunction) (wxScrollWinEventFunction) & func, (wxObject *) NULL ), | |
2563 | #define EVT_SCROLLWIN_PAGEUP(func) DECLARE_EVENT_TABLE_ENTRY( wxEVT_SCROLLWIN_PAGEUP, wxID_ANY, wxID_ANY, (wxObjectEventFunction) (wxEventFunction) (wxScrollWinEventFunction) & func, (wxObject *) NULL ), | |
2564 | #define EVT_SCROLLWIN_PAGEDOWN(func) DECLARE_EVENT_TABLE_ENTRY( wxEVT_SCROLLWIN_PAGEDOWN, wxID_ANY, wxID_ANY, (wxObjectEventFunction) (wxEventFunction) (wxScrollWinEventFunction) & func, (wxObject *) NULL ), | |
2565 | #define EVT_SCROLLWIN_THUMBTRACK(func) DECLARE_EVENT_TABLE_ENTRY( wxEVT_SCROLLWIN_THUMBTRACK, wxID_ANY, wxID_ANY, (wxObjectEventFunction) (wxEventFunction) (wxScrollWinEventFunction) & func, (wxObject *) NULL ), | |
2566 | #define EVT_SCROLLWIN_THUMBRELEASE(func) DECLARE_EVENT_TABLE_ENTRY( wxEVT_SCROLLWIN_THUMBRELEASE, wxID_ANY, wxID_ANY, (wxObjectEventFunction) (wxEventFunction) (wxScrollWinEventFunction) & func, (wxObject *) NULL ), | |
c5b42c87 RR |
2567 | |
2568 | // Scrolling from wxSlider and wxScrollBar | |
c801d85f | 2569 | #define EVT_SCROLL(func) \ |
497dbbd3 VZ |
2570 | DECLARE_EVENT_TABLE_ENTRY( wxEVT_SCROLL_TOP, wxID_ANY, wxID_ANY, (wxObjectEventFunction) (wxEventFunction) (wxScrollEventFunction) & func, (wxObject *) NULL ),\ |
2571 | DECLARE_EVENT_TABLE_ENTRY( wxEVT_SCROLL_BOTTOM, wxID_ANY, wxID_ANY, (wxObjectEventFunction) (wxEventFunction) (wxScrollEventFunction) & func, (wxObject *) NULL ),\ | |
2572 | DECLARE_EVENT_TABLE_ENTRY( wxEVT_SCROLL_LINEUP, wxID_ANY, wxID_ANY, (wxObjectEventFunction) (wxEventFunction) (wxScrollEventFunction) & func, (wxObject *) NULL ),\ | |
2573 | DECLARE_EVENT_TABLE_ENTRY( wxEVT_SCROLL_LINEDOWN, wxID_ANY, wxID_ANY, (wxObjectEventFunction) (wxEventFunction) (wxScrollEventFunction) & func, (wxObject *) NULL ),\ | |
2574 | DECLARE_EVENT_TABLE_ENTRY( wxEVT_SCROLL_PAGEUP, wxID_ANY, wxID_ANY, (wxObjectEventFunction) (wxEventFunction) (wxScrollEventFunction) & func, (wxObject *) NULL ),\ | |
2575 | DECLARE_EVENT_TABLE_ENTRY( wxEVT_SCROLL_PAGEDOWN, wxID_ANY, wxID_ANY, (wxObjectEventFunction) (wxEventFunction) (wxScrollEventFunction) & func, (wxObject *) NULL ),\ | |
2576 | DECLARE_EVENT_TABLE_ENTRY( wxEVT_SCROLL_THUMBTRACK, wxID_ANY, wxID_ANY, (wxObjectEventFunction) (wxEventFunction) (wxScrollEventFunction) & func, (wxObject *) NULL ),\ | |
e8b669d3 VZ |
2577 | DECLARE_EVENT_TABLE_ENTRY( wxEVT_SCROLL_THUMBRELEASE, wxID_ANY, wxID_ANY, (wxObjectEventFunction) (wxEventFunction) (wxScrollEventFunction) & func, (wxObject *) NULL ), \ |
2578 | DECLARE_EVENT_TABLE_ENTRY( wxEVT_SCROLL_ENDSCROLL, wxID_ANY, wxID_ANY, (wxObjectEventFunction) (wxEventFunction) (wxScrollEventFunction) & func, (wxObject *) NULL ), | |
497dbbd3 VZ |
2579 | |
2580 | #define EVT_SCROLL_TOP(func) DECLARE_EVENT_TABLE_ENTRY( wxEVT_SCROLL_TOP, wxID_ANY, wxID_ANY, (wxObjectEventFunction) (wxEventFunction) (wxScrollEventFunction) & func, (wxObject *) NULL ), | |
2581 | #define EVT_SCROLL_BOTTOM(func) DECLARE_EVENT_TABLE_ENTRY( wxEVT_SCROLL_BOTTOM, wxID_ANY, wxID_ANY, (wxObjectEventFunction) (wxEventFunction) (wxScrollEventFunction) & func, (wxObject *) NULL ), | |
2582 | #define EVT_SCROLL_LINEUP(func) DECLARE_EVENT_TABLE_ENTRY( wxEVT_SCROLL_LINEUP, wxID_ANY, wxID_ANY, (wxObjectEventFunction) (wxEventFunction) (wxScrollEventFunction) & func, (wxObject *) NULL ), | |
2583 | #define EVT_SCROLL_LINEDOWN(func) DECLARE_EVENT_TABLE_ENTRY( wxEVT_SCROLL_LINEDOWN, wxID_ANY, wxID_ANY, (wxObjectEventFunction) (wxEventFunction) (wxScrollEventFunction) & func, (wxObject *) NULL ), | |
2584 | #define EVT_SCROLL_PAGEUP(func) DECLARE_EVENT_TABLE_ENTRY( wxEVT_SCROLL_PAGEUP, wxID_ANY, wxID_ANY, (wxObjectEventFunction) (wxEventFunction) (wxScrollEventFunction) & func, (wxObject *) NULL ), | |
2585 | #define EVT_SCROLL_PAGEDOWN(func) DECLARE_EVENT_TABLE_ENTRY( wxEVT_SCROLL_PAGEDOWN, wxID_ANY, wxID_ANY, (wxObjectEventFunction) (wxEventFunction) (wxScrollEventFunction) & func, (wxObject *) NULL ), | |
2586 | #define EVT_SCROLL_THUMBTRACK(func) DECLARE_EVENT_TABLE_ENTRY( wxEVT_SCROLL_THUMBTRACK, wxID_ANY, wxID_ANY, (wxObjectEventFunction) (wxEventFunction) (wxScrollEventFunction) & func, (wxObject *) NULL ), | |
2587 | #define EVT_SCROLL_THUMBRELEASE(func) DECLARE_EVENT_TABLE_ENTRY( wxEVT_SCROLL_THUMBRELEASE, wxID_ANY, wxID_ANY, (wxObjectEventFunction) (wxEventFunction) (wxScrollEventFunction) & func, (wxObject *) NULL ), | |
e8b669d3 | 2588 | #define EVT_SCROLL_ENDSCROLL(func) DECLARE_EVENT_TABLE_ENTRY( wxEVT_SCROLL_ENDSCROLL, wxID_ANY, wxID_ANY, (wxObjectEventFunction) (wxEventFunction) (wxScrollEventFunction) & func, (wxObject *) NULL ), |
c801d85f | 2589 | |
c5b42c87 | 2590 | // Scrolling from wxSlider and wxScrollBar, with an id |
d9e2e4c2 DE |
2591 | #define EVT_COMMAND_SCROLL(winid, func) \ |
2592 | DECLARE_EVENT_TABLE_ENTRY( wxEVT_SCROLL_TOP, winid, wxID_ANY, (wxObjectEventFunction) (wxEventFunction) (wxScrollEventFunction) & func, (wxObject *) NULL ),\ | |
2593 | DECLARE_EVENT_TABLE_ENTRY( wxEVT_SCROLL_BOTTOM, winid, wxID_ANY, (wxObjectEventFunction) (wxEventFunction) (wxScrollEventFunction) & func, (wxObject *) NULL ),\ | |
2594 | DECLARE_EVENT_TABLE_ENTRY( wxEVT_SCROLL_LINEUP, winid, wxID_ANY, (wxObjectEventFunction) (wxEventFunction) (wxScrollEventFunction) & func, (wxObject *) NULL ),\ | |
2595 | DECLARE_EVENT_TABLE_ENTRY( wxEVT_SCROLL_LINEDOWN, winid, wxID_ANY, (wxObjectEventFunction) (wxEventFunction) (wxScrollEventFunction) & func, (wxObject *) NULL ),\ | |
2596 | DECLARE_EVENT_TABLE_ENTRY( wxEVT_SCROLL_PAGEUP, winid, wxID_ANY, (wxObjectEventFunction) (wxEventFunction) (wxScrollEventFunction) & func, (wxObject *) NULL ),\ | |
2597 | DECLARE_EVENT_TABLE_ENTRY( wxEVT_SCROLL_PAGEDOWN, winid, wxID_ANY, (wxObjectEventFunction) (wxEventFunction) (wxScrollEventFunction) & func, (wxObject *) NULL ),\ | |
2598 | DECLARE_EVENT_TABLE_ENTRY( wxEVT_SCROLL_THUMBTRACK, winid, wxID_ANY, (wxObjectEventFunction) (wxEventFunction) (wxScrollEventFunction) & func, (wxObject *) NULL ),\ | |
2599 | DECLARE_EVENT_TABLE_ENTRY( wxEVT_SCROLL_THUMBRELEASE, winid, wxID_ANY, (wxObjectEventFunction) (wxEventFunction) (wxScrollEventFunction) & func, (wxObject *) NULL ), \ | |
2600 | DECLARE_EVENT_TABLE_ENTRY( wxEVT_SCROLL_ENDSCROLL, winid, wxID_ANY, (wxObjectEventFunction) (wxEventFunction) (wxScrollEventFunction) & func, (wxObject *) NULL ), | |
2601 | ||
2602 | #define EVT_COMMAND_SCROLL_TOP(winid, func) DECLARE_EVENT_TABLE_ENTRY( wxEVT_SCROLL_TOP, winid, wxID_ANY, (wxObjectEventFunction) (wxEventFunction) (wxScrollEventFunction) & func, (wxObject *) NULL ), | |
2603 | #define EVT_COMMAND_SCROLL_BOTTOM(winid, func) DECLARE_EVENT_TABLE_ENTRY( wxEVT_SCROLL_BOTTOM, winid, wxID_ANY, (wxObjectEventFunction) (wxEventFunction) (wxScrollEventFunction) & func, (wxObject *) NULL ), | |
2604 | #define EVT_COMMAND_SCROLL_LINEUP(winid, func) DECLARE_EVENT_TABLE_ENTRY( wxEVT_SCROLL_LINEUP, winid, wxID_ANY, (wxObjectEventFunction) (wxEventFunction) (wxScrollEventFunction) & func, (wxObject *) NULL ), | |
2605 | #define EVT_COMMAND_SCROLL_LINEDOWN(winid, func) DECLARE_EVENT_TABLE_ENTRY( wxEVT_SCROLL_LINEDOWN, winid, wxID_ANY, (wxObjectEventFunction) (wxEventFunction) (wxScrollEventFunction) & func, (wxObject *) NULL ), | |
2606 | #define EVT_COMMAND_SCROLL_PAGEUP(winid, func) DECLARE_EVENT_TABLE_ENTRY( wxEVT_SCROLL_PAGEUP, winid, wxID_ANY, (wxObjectEventFunction) (wxEventFunction) (wxScrollEventFunction) & func, (wxObject *) NULL ), | |
2607 | #define EVT_COMMAND_SCROLL_PAGEDOWN(winid, func) DECLARE_EVENT_TABLE_ENTRY( wxEVT_SCROLL_PAGEDOWN, winid, wxID_ANY, (wxObjectEventFunction) (wxEventFunction) (wxScrollEventFunction) & func, (wxObject *) NULL ), | |
2608 | #define EVT_COMMAND_SCROLL_THUMBTRACK(winid, func) DECLARE_EVENT_TABLE_ENTRY( wxEVT_SCROLL_THUMBTRACK, winid, wxID_ANY, (wxObjectEventFunction) (wxEventFunction) (wxScrollEventFunction) & func, (wxObject *) NULL ), | |
2609 | #define EVT_COMMAND_SCROLL_THUMBRELEASE(winid, func) DECLARE_EVENT_TABLE_ENTRY( wxEVT_SCROLL_THUMBRELEASE, winid, wxID_ANY, (wxObjectEventFunction) (wxEventFunction) (wxScrollEventFunction) & func, (wxObject *) NULL ), | |
2610 | #define EVT_COMMAND_SCROLL_ENDSCROLL(winid, func) DECLARE_EVENT_TABLE_ENTRY( wxEVT_SCROLL_ENDSCROLL, winid, wxID_ANY, (wxObjectEventFunction) (wxEventFunction) (wxScrollEventFunction) & func, (wxObject *) NULL ), | |
c801d85f KB |
2611 | |
2612 | // Convenience macros for commonly-used commands | |
d9e2e4c2 DE |
2613 | #define EVT_BUTTON(winid, fn) DECLARE_EVENT_TABLE_ENTRY( wxEVT_COMMAND_BUTTON_CLICKED, winid, wxID_ANY, (wxObjectEventFunction) (wxEventFunction) (wxCommandEventFunction) & fn, (wxObject *) NULL ), |
2614 | #define EVT_CHECKBOX(winid, fn) DECLARE_EVENT_TABLE_ENTRY( wxEVT_COMMAND_CHECKBOX_CLICKED, winid, wxID_ANY, (wxObjectEventFunction) (wxEventFunction) (wxCommandEventFunction) & fn, (wxObject *) NULL ), | |
2615 | #define EVT_CHOICE(winid, fn) DECLARE_EVENT_TABLE_ENTRY( wxEVT_COMMAND_CHOICE_SELECTED, winid, wxID_ANY, (wxObjectEventFunction) (wxEventFunction) (wxCommandEventFunction) & fn, (wxObject *) NULL ), | |
2616 | #define EVT_LISTBOX(winid, fn) DECLARE_EVENT_TABLE_ENTRY( wxEVT_COMMAND_LISTBOX_SELECTED, winid, wxID_ANY, (wxObjectEventFunction) (wxEventFunction) (wxCommandEventFunction) & fn, (wxObject *) NULL ), | |
2617 | #define EVT_LISTBOX_DCLICK(winid, fn) DECLARE_EVENT_TABLE_ENTRY( wxEVT_COMMAND_LISTBOX_DOUBLECLICKED, winid, wxID_ANY, (wxObjectEventFunction) (wxEventFunction) (wxCommandEventFunction) & fn, (wxObject *) NULL ), | |
2618 | #define EVT_MENU(winid, fn) DECLARE_EVENT_TABLE_ENTRY( wxEVT_COMMAND_MENU_SELECTED, winid, wxID_ANY, (wxObjectEventFunction) (wxEventFunction) (wxCommandEventFunction) & fn, (wxObject *) NULL ), | |
2e4df4bf | 2619 | #define EVT_MENU_RANGE(id1, id2, fn) DECLARE_EVENT_TABLE_ENTRY( wxEVT_COMMAND_MENU_SELECTED, id1, id2, (wxObjectEventFunction) (wxEventFunction) (wxCommandEventFunction) & fn, (wxObject *) NULL ), |
d9e2e4c2 DE |
2620 | #define EVT_SLIDER(winid, fn) DECLARE_EVENT_TABLE_ENTRY( wxEVT_COMMAND_SLIDER_UPDATED, winid, wxID_ANY, (wxObjectEventFunction) (wxEventFunction) (wxCommandEventFunction) & fn, (wxObject *) NULL ), |
2621 | #define EVT_RADIOBOX(winid, fn) DECLARE_EVENT_TABLE_ENTRY( wxEVT_COMMAND_RADIOBOX_SELECTED, winid, wxID_ANY, (wxObjectEventFunction) (wxEventFunction) (wxCommandEventFunction) & fn, (wxObject *) NULL ), | |
2622 | #define EVT_RADIOBUTTON(winid, fn) DECLARE_EVENT_TABLE_ENTRY( wxEVT_COMMAND_RADIOBUTTON_SELECTED, winid, wxID_ANY, (wxObjectEventFunction) (wxEventFunction) (wxCommandEventFunction) & fn, (wxObject *) NULL ), | |
c801d85f | 2623 | // EVT_SCROLLBAR is now obsolete since we use EVT_COMMAND_SCROLL... events |
d9e2e4c2 DE |
2624 | #define EVT_SCROLLBAR(winid, fn) DECLARE_EVENT_TABLE_ENTRY( wxEVT_COMMAND_SCROLLBAR_UPDATED, winid, wxID_ANY, (wxObjectEventFunction) (wxEventFunction) (wxCommandEventFunction) & fn, (wxObject *) NULL ), |
2625 | #define EVT_VLBOX(winid, fn) DECLARE_EVENT_TABLE_ENTRY( wxEVT_COMMAND_VLBOX_SELECTED, winid, wxID_ANY, (wxObjectEventFunction) (wxEventFunction) (wxCommandEventFunction) & fn, (wxObject *) NULL ), | |
2626 | #define EVT_COMBOBOX(winid, fn) DECLARE_EVENT_TABLE_ENTRY( wxEVT_COMMAND_COMBOBOX_SELECTED, winid, wxID_ANY, (wxObjectEventFunction) (wxEventFunction) (wxCommandEventFunction) & fn, (wxObject *) NULL ), | |
2627 | #define EVT_TOOL(winid, fn) DECLARE_EVENT_TABLE_ENTRY( wxEVT_COMMAND_TOOL_CLICKED, winid, wxID_ANY, (wxObjectEventFunction) (wxEventFunction) (wxCommandEventFunction) & fn, (wxObject *) NULL ), | |
2e4df4bf | 2628 | #define EVT_TOOL_RANGE(id1, id2, fn) DECLARE_EVENT_TABLE_ENTRY( wxEVT_COMMAND_TOOL_CLICKED, id1, id2, (wxObjectEventFunction) (wxEventFunction) (wxCommandEventFunction) & fn, (wxObject *) NULL ), |
d9e2e4c2 | 2629 | #define EVT_TOOL_RCLICKED(winid, fn) DECLARE_EVENT_TABLE_ENTRY( wxEVT_COMMAND_TOOL_RCLICKED, winid, wxID_ANY, (wxObjectEventFunction) (wxEventFunction) (wxCommandEventFunction) & fn, (wxObject *) NULL ), |
2e4df4bf | 2630 | #define EVT_TOOL_RCLICKED_RANGE(id1, id2, fn) DECLARE_EVENT_TABLE_ENTRY( wxEVT_COMMAND_TOOL_RCLICKED, id1, id2, (wxObjectEventFunction) (wxEventFunction) (wxCommandEventFunction) & fn, (wxObject *) NULL ), |
d9e2e4c2 DE |
2631 | #define EVT_TOOL_ENTER(winid, fn) DECLARE_EVENT_TABLE_ENTRY( wxEVT_COMMAND_TOOL_ENTER, winid, wxID_ANY, (wxObjectEventFunction) (wxEventFunction) (wxCommandEventFunction) & fn, (wxObject *) NULL ), |
2632 | #define EVT_CHECKLISTBOX(winid, fn) DECLARE_EVENT_TABLE_ENTRY( wxEVT_COMMAND_CHECKLISTBOX_TOGGLED, winid, wxID_ANY, (wxObjectEventFunction) (wxEventFunction) (wxCommandEventFunction) & fn, (wxObject *) NULL ), | |
c801d85f KB |
2633 | |
2634 | // Generic command events | |
d9e2e4c2 DE |
2635 | #define EVT_COMMAND_LEFT_CLICK(winid, fn) DECLARE_EVENT_TABLE_ENTRY( wxEVT_COMMAND_LEFT_CLICK, winid, wxID_ANY, (wxObjectEventFunction) (wxEventFunction) (wxCommandEventFunction) & fn, (wxObject *) NULL ), |
2636 | #define EVT_COMMAND_LEFT_DCLICK(winid, fn) DECLARE_EVENT_TABLE_ENTRY( wxEVT_COMMAND_LEFT_DCLICK, winid, wxID_ANY, (wxObjectEventFunction) (wxEventFunction) (wxCommandEventFunction) & fn, (wxObject *) NULL ), | |
2637 | #define EVT_COMMAND_RIGHT_CLICK(winid, fn) DECLARE_EVENT_TABLE_ENTRY( wxEVT_COMMAND_RIGHT_CLICK, winid, wxID_ANY, (wxObjectEventFunction) (wxEventFunction) (wxCommandEventFunction) & fn, (wxObject *) NULL ), | |
2638 | #define EVT_COMMAND_RIGHT_DCLICK(winid, fn) DECLARE_EVENT_TABLE_ENTRY( wxEVT_COMMAND_RIGHT_DCLICK, winid, wxID_ANY, (wxObjectEventFunction) (wxEventFunction) (wxCommandEventFunction) & fn, (wxObject *) NULL ), | |
2639 | #define EVT_COMMAND_SET_FOCUS(winid, fn) DECLARE_EVENT_TABLE_ENTRY( wxEVT_COMMAND_SET_FOCUS, winid, wxID_ANY, (wxObjectEventFunction) (wxEventFunction) (wxCommandEventFunction) & fn, (wxObject *) NULL ), | |
2640 | #define EVT_COMMAND_KILL_FOCUS(winid, fn) DECLARE_EVENT_TABLE_ENTRY( wxEVT_COMMAND_KILL_FOCUS, winid, wxID_ANY, (wxObjectEventFunction) (wxEventFunction) (wxCommandEventFunction) & fn, (wxObject *) NULL ), | |
2641 | #define EVT_COMMAND_ENTER(winid, fn) DECLARE_EVENT_TABLE_ENTRY( wxEVT_COMMAND_ENTER, winid, wxID_ANY, (wxObjectEventFunction) (wxEventFunction) (wxCommandEventFunction) & fn, (wxObject *) NULL ), | |
c801d85f KB |
2642 | |
2643 | // Joystick events | |
1241ab8b JS |
2644 | |
2645 | #define EVT_JOY_BUTTON_DOWN(func) \ | |
497dbbd3 | 2646 | DECLARE_EVENT_TABLE_ENTRY( wxEVT_JOY_BUTTON_DOWN, wxID_ANY, wxID_ANY, (wxObjectEventFunction) (wxEventFunction) (wxJoystickEventFunction) & func, (wxObject *) NULL ), |
1241ab8b | 2647 | #define EVT_JOY_BUTTON_UP(func) \ |
497dbbd3 | 2648 | DECLARE_EVENT_TABLE_ENTRY( wxEVT_JOY_BUTTON_UP, wxID_ANY, wxID_ANY, (wxObjectEventFunction) (wxEventFunction) (wxJoystickEventFunction) & func, (wxObject *) NULL ), |
c801d85f | 2649 | #define EVT_JOY_MOVE(func) \ |
497dbbd3 | 2650 | DECLARE_EVENT_TABLE_ENTRY( wxEVT_JOY_MOVE, wxID_ANY, wxID_ANY, (wxObjectEventFunction) (wxEventFunction) (wxJoystickEventFunction) & func, (wxObject *) NULL ), |
c801d85f | 2651 | #define EVT_JOY_ZMOVE(func) \ |
497dbbd3 | 2652 | DECLARE_EVENT_TABLE_ENTRY( wxEVT_JOY_ZMOVE, wxID_ANY, wxID_ANY, (wxObjectEventFunction) (wxEventFunction) (wxJoystickEventFunction) & func, (wxObject *) NULL ), |
c801d85f | 2653 | |
1241ab8b JS |
2654 | // These are obsolete, see _BUTTON_ events |
2655 | #define EVT_JOY_DOWN(func) \ | |
2656 | DECLARE_EVENT_TABLE_ENTRY( wxEVT_JOY_BUTTON_DOWN, wxID_ANY, wxID_ANY, (wxObjectEventFunction) (wxEventFunction) (wxJoystickEventFunction) & func, (wxObject *) NULL ), | |
2657 | #define EVT_JOY_UP(func) \ | |
2658 | DECLARE_EVENT_TABLE_ENTRY( wxEVT_JOY_BUTTON_UP, wxID_ANY, wxID_ANY, (wxObjectEventFunction) (wxEventFunction) (wxJoystickEventFunction) & func, (wxObject *) NULL ), | |
2659 | ||
c801d85f KB |
2660 | // All joystick events |
2661 | #define EVT_JOYSTICK_EVENTS(func) \ | |
497dbbd3 VZ |
2662 | DECLARE_EVENT_TABLE_ENTRY( wxEVT_JOY_BUTTON_DOWN, wxID_ANY, wxID_ANY, (wxObjectEventFunction) (wxEventFunction) (wxJoystickEventFunction) & func, (wxObject *) NULL ),\ |
2663 | DECLARE_EVENT_TABLE_ENTRY( wxEVT_JOY_BUTTON_UP, wxID_ANY, wxID_ANY, (wxObjectEventFunction) (wxEventFunction) (wxJoystickEventFunction) & func, (wxObject *) NULL ),\ | |
2664 | DECLARE_EVENT_TABLE_ENTRY( wxEVT_JOY_MOVE, wxID_ANY, wxID_ANY, (wxObjectEventFunction) (wxEventFunction) (wxJoystickEventFunction) & func, (wxObject *) NULL ),\ | |
2665 | DECLARE_EVENT_TABLE_ENTRY( wxEVT_JOY_ZMOVE, wxID_ANY, wxID_ANY, (wxObjectEventFunction) (wxEventFunction) (wxJoystickEventFunction) & func, (wxObject *) NULL ), | |
c801d85f KB |
2666 | |
2667 | // Idle event | |
2668 | #define EVT_IDLE(func) \ | |
497dbbd3 | 2669 | DECLARE_EVENT_TABLE_ENTRY( wxEVT_IDLE, wxID_ANY, wxID_ANY, (wxObjectEventFunction) (wxEventFunction) (wxIdleEventFunction) & func, (wxObject *) NULL ), |
c801d85f KB |
2670 | |
2671 | // Update UI event | |
d9e2e4c2 DE |
2672 | #define EVT_UPDATE_UI(winid, func) \ |
2673 | DECLARE_EVENT_TABLE_ENTRY( wxEVT_UPDATE_UI, winid, wxID_ANY, (wxObjectEventFunction) (wxEventFunction) (wxUpdateUIEventFunction) & func, (wxObject *) NULL ), | |
3ca6a5f0 | 2674 | #define EVT_UPDATE_UI_RANGE(id1, id2, func) \ |
2e4df4bf | 2675 | DECLARE_EVENT_TABLE_ENTRY( wxEVT_UPDATE_UI, id1, id2, (wxObjectEventFunction)(wxEventFunction)(wxUpdateUIEventFunction)&func, (wxObject *) NULL ), |
c801d85f | 2676 | |
b96340e6 | 2677 | // Help events |
d9e2e4c2 DE |
2678 | #define EVT_HELP(winid, func) \ |
2679 | DECLARE_EVENT_TABLE_ENTRY( wxEVT_HELP, winid, wxID_ANY, (wxObjectEventFunction) (wxEventFunction) (wxCommandEventFunction) (wxHelpEventFunction) & func, (wxObject *) NULL ), | |
b96340e6 JS |
2680 | |
2681 | #define EVT_HELP_RANGE(id1, id2, func) \ | |
2e4df4bf | 2682 | DECLARE_EVENT_TABLE_ENTRY( wxEVT_HELP, id1, id2, (wxObjectEventFunction) (wxEventFunction) (wxCommandEventFunction) (wxHelpEventFunction) & func, (wxObject *) NULL ), |
b96340e6 | 2683 | |
d9e2e4c2 DE |
2684 | #define EVT_DETAILED_HELP(winid, func) \ |
2685 | DECLARE_EVENT_TABLE_ENTRY( wxEVT_DETAILED_HELP, winid, wxID_ANY, (wxObjectEventFunction) (wxEventFunction) (wxCommandEventFunction) (wxHelpEventFunction) & func, (wxObject *) NULL ), | |
fb6261e9 JS |
2686 | |
2687 | #define EVT_DETAILED_HELP_RANGE(id1, id2, func) \ | |
2e4df4bf | 2688 | DECLARE_EVENT_TABLE_ENTRY( wxEVT_DETAILED_HELP, id1, id2, (wxObjectEventFunction) (wxEventFunction) (wxCommandEventFunction) (wxHelpEventFunction) & func, (wxObject *) NULL ), |
fb6261e9 | 2689 | |
69231000 JS |
2690 | // Context Menu Events |
2691 | #define EVT_CONTEXT_MENU(func) \ | |
497dbbd3 | 2692 | DECLARE_EVENT_TABLE_ENTRY(wxEVT_CONTEXT_MENU, wxID_ANY, wxID_ANY, (wxObjectEventFunction) (wxEventFunction) (wxContextMenuEventFunction) & func, (wxObject *) NULL ), |
69231000 | 2693 | |
8e193f38 VZ |
2694 | // ---------------------------------------------------------------------------- |
2695 | // Global data | |
2696 | // ---------------------------------------------------------------------------- | |
2697 | ||
2698 | // for pending event processing - notice that there is intentionally no | |
2699 | // WXDLLEXPORT here | |
bddd7a8d | 2700 | extern WXDLLIMPEXP_BASE wxList *wxPendingEvents; |
8e193f38 | 2701 | #if wxUSE_THREADS |
bddd7a8d | 2702 | extern WXDLLIMPEXP_BASE wxCriticalSection *wxPendingEventsLocker; |
8e193f38 VZ |
2703 | #endif |
2704 | ||
e90c1d2a VZ |
2705 | // ---------------------------------------------------------------------------- |
2706 | // Helper functions | |
2707 | // ---------------------------------------------------------------------------- | |
2708 | ||
2709 | #if wxUSE_GUI | |
e702ff0f JS |
2710 | |
2711 | // Find a window with the focus, that is also a descendant of the given window. | |
2712 | // This is used to determine the window to initially send commands to. | |
2713 | wxWindow* wxFindFocusDescendant(wxWindow* ancestor); | |
2714 | ||
e90c1d2a VZ |
2715 | #endif // wxUSE_GUI |
2716 | ||
1648d51b VZ |
2717 | #endif // _WX_EVENT_H__ |
2718 |