]> git.saurik.com Git - wxWidgets.git/blob - include/wx/event.h
Added wxEVT_SCROLL[WIN]_THUMBRELEASE
[wxWidgets.git] / include / wx / event.h
1 /////////////////////////////////////////////////////////////////////////////
2 // Name: event.h
3 // Purpose: Event classes
4 // Author: Julian Smart
5 // Modified by:
6 // Created: 01/02/97
7 // RCS-ID: $Id$
8 // Copyright: (c)
9 // Licence: wxWindows licence
10 /////////////////////////////////////////////////////////////////////////////
11
12 #ifndef _WX_EVENTH__
13 #define _WX_EVENTH__
14
15 #ifdef __GNUG__
16 #pragma interface "event.h"
17 #endif
18
19 #include "wx/defs.h"
20 #include "wx/object.h"
21
22 #if wxUSE_GUI
23 #include "wx/gdicmn.h"
24 #endif
25
26 #include "wx/thread.h"
27
28 // ----------------------------------------------------------------------------
29 // forward declarations
30 // ----------------------------------------------------------------------------
31
32 class WXDLLEXPORT wxList;
33
34 #if wxUSE_GUI
35 class WXDLLEXPORT wxClientData;
36 class WXDLLEXPORT wxDC;
37 class WXDLLEXPORT wxMenu;
38 class WXDLLEXPORT wxWindow;
39 #endif // wxUSE_GUI
40
41 // ----------------------------------------------------------------------------
42 // Event types
43 // ----------------------------------------------------------------------------
44
45 typedef int wxEventType;
46
47 #if defined(__VISAGECPP__) && __IBMCPP__ >= 400
48 // must define these static for VA or else you get multiply defined symbols everywhere
49 extern const wxEventType wxEVT_NULL;
50 extern const wxEventType wxEVT_FIRST;
51
52 extern const wxEventType wxEVT_COMMAND_BUTTON_CLICKED;
53 extern const wxEventType wxEVT_COMMAND_CHECKBOX_CLICKED;
54 extern const wxEventType wxEVT_COMMAND_CHOICE_SELECTED;
55 extern const wxEventType wxEVT_COMMAND_LISTBOX_SELECTED;
56 extern const wxEventType wxEVT_COMMAND_LISTBOX_DOUBLECLICKED;
57 extern const wxEventType wxEVT_COMMAND_CHECKLISTBOX_TOGGLED;
58 extern const wxEventType wxEVT_COMMAND_TEXT_UPDATED;
59 extern const wxEventType wxEVT_COMMAND_TEXT_ENTER;
60 extern const wxEventType wxEVT_COMMAND_MENU_SELECTED;
61 extern const wxEventType wxEVT_COMMAND_TOOL_CLICKED;
62 extern const wxEventType wxEVT_COMMAND_SLIDER_UPDATED;
63 extern const wxEventType wxEVT_COMMAND_RADIOBOX_SELECTED;
64 extern const wxEventType wxEVT_COMMAND_RADIOBUTTON_SELECTED;
65 extern const wxEventType wxEVT_COMMAND_SCROLLBAR_UPDATED;
66 extern const wxEventType wxEVT_COMMAND_VLBOX_SELECTED;
67 extern const wxEventType wxEVT_COMMAND_COMBOBOX_SELECTED;
68 extern const wxEventType wxEVT_COMMAND_TOOL_RCLICKED;
69 extern const wxEventType wxEVT_COMMAND_TOOL_ENTER;
70 extern const wxEventType wxEVT_COMMAND_SPINCTRL_UPDATED;
71
72 /* Sockets and timers send events, too */
73 extern const wxEventType wxEVT_SOCKET;
74 extern const wxEventType wxEVT_TIMER;
75
76 /* Mouse event types */
77 extern const wxEventType wxEVT_LEFT_DOWN;
78 extern const wxEventType wxEVT_LEFT_UP;
79 extern const wxEventType wxEVT_MIDDLE_DOWN;
80 extern const wxEventType wxEVT_MIDDLE_UP;
81 extern const wxEventType wxEVT_RIGHT_DOWN;
82 extern const wxEventType wxEVT_RIGHT_UP;
83 extern const wxEventType wxEVT_MOTION;
84 extern const wxEventType wxEVT_ENTER_WINDOW;
85 extern const wxEventType wxEVT_LEAVE_WINDOW;
86 extern const wxEventType wxEVT_LEFT_DCLICK;
87 extern const wxEventType wxEVT_MIDDLE_DCLICK;
88 extern const wxEventType wxEVT_RIGHT_DCLICK;
89 extern const wxEventType wxEVT_SET_FOCUS;
90 extern const wxEventType wxEVT_KILL_FOCUS;
91
92 /* Non-client mouse events */
93 extern const wxEventType wxEVT_NC_LEFT_DOWN;
94 extern const wxEventType wxEVT_NC_LEFT_UP;
95 extern const wxEventType wxEVT_NC_MIDDLE_DOWN;
96 extern const wxEventType wxEVT_NC_MIDDLE_UP;
97 extern const wxEventType wxEVT_NC_RIGHT_DOWN;
98 extern const wxEventType wxEVT_NC_RIGHT_UP;
99 extern const wxEventType wxEVT_NC_MOTION;
100 extern const wxEventType wxEVT_NC_ENTER_WINDOW;
101 extern const wxEventType wxEVT_NC_LEAVE_WINDOW;
102 extern const wxEventType wxEVT_NC_LEFT_DCLICK;
103 extern const wxEventType wxEVT_NC_MIDDLE_DCLICK;
104 extern const wxEventType wxEVT_NC_RIGHT_DCLICK;
105
106 /* Character input event type */
107 extern const wxEventType wxEVT_CHAR;
108 extern const wxEventType wxEVT_CHAR_HOOK;
109 extern const wxEventType wxEVT_NAVIGATION_KEY;
110 extern const wxEventType wxEVT_KEY_DOWN;
111 extern const wxEventType wxEVT_KEY_UP;
112
113 /*
114 * wxScrollbar and wxSlider event identifiers
115 */
116 extern const wxEventType wxEVT_SCROLL_TOP;
117 extern const wxEventType wxEVT_SCROLL_BOTTOM;
118 extern const wxEventType wxEVT_SCROLL_LINEUP;
119 extern const wxEventType wxEVT_SCROLL_LINEDOWN;
120 extern const wxEventType wxEVT_SCROLL_PAGEUP;
121 extern const wxEventType wxEVT_SCROLL_PAGEDOWN;
122 extern const wxEventType wxEVT_SCROLL_THUMBTRACK;
123 extern const wxEventType wxEVT_SCROLL_THUMBRELEASE;
124
125 /*
126 * Scroll events from wxWindow
127 */
128 extern const wxEventType wxEVT_SCROLLWIN_TOP;
129 extern const wxEventType wxEVT_SCROLLWIN_BOTTOM;
130 extern const wxEventType wxEVT_SCROLLWIN_LINEUP;
131 extern const wxEventType wxEVT_SCROLLWIN_LINEDOWN;
132 extern const wxEventType wxEVT_SCROLLWIN_PAGEUP;
133 extern const wxEventType wxEVT_SCROLLWIN_PAGEDOWN;
134 extern const wxEventType wxEVT_SCROLLWIN_THUMBTRACK;
135 extern const wxEventType wxEVT_SCROLLWIN_THUMBRELEASE;
136
137 /*
138 * System events
139 */
140 extern const wxEventType wxEVT_SIZE;
141 extern const wxEventType wxEVT_MOVE;
142 extern const wxEventType wxEVT_CLOSE_WINDOW;
143 extern const wxEventType wxEVT_END_SESSION;
144 extern const wxEventType wxEVT_QUERY_END_SESSION;
145 extern const wxEventType wxEVT_ACTIVATE_APP;
146 extern const wxEventType wxEVT_POWER;
147 extern const wxEventType wxEVT_ACTIVATE;
148 extern const wxEventType wxEVT_CREATE;
149 extern const wxEventType wxEVT_DESTROY;
150 extern const wxEventType wxEVT_SHOW;
151 extern const wxEventType wxEVT_ICONIZE;
152 extern const wxEventType wxEVT_MAXIMIZE;
153 extern const wxEventType wxEVT_MOUSE_CAPTURE_CHANGED;
154 extern const wxEventType wxEVT_PAINT;
155 extern const wxEventType wxEVT_ERASE_BACKGROUND;
156 extern const wxEventType wxEVT_NC_PAINT;
157 extern const wxEventType wxEVT_PAINT_ICON;
158 extern const wxEventType wxEVT_MENU_CHAR;
159 extern const wxEventType wxEVT_MENU_INIT;
160 extern const wxEventType wxEVT_MENU_HIGHLIGHT;
161 extern const wxEventType wxEVT_POPUP_MENU_INIT;
162 extern const wxEventType wxEVT_CONTEXT_MENU;
163 extern const wxEventType wxEVT_SYS_COLOUR_CHANGED;
164 extern const wxEventType wxEVT_SETTING_CHANGED;
165 extern const wxEventType wxEVT_QUERY_NEW_PALETTE;
166 extern const wxEventType wxEVT_PALETTE_CHANGED;
167 extern const wxEventType wxEVT_JOY_BUTTON_DOWN;
168 extern const wxEventType wxEVT_JOY_BUTTON_UP;
169 extern const wxEventType wxEVT_JOY_MOVE;
170 extern const wxEventType wxEVT_JOY_ZMOVE;
171 extern const wxEventType wxEVT_DROP_FILES;
172 extern const wxEventType wxEVT_DRAW_ITEM;
173 extern const wxEventType wxEVT_MEASURE_ITEM;
174 extern const wxEventType wxEVT_COMPARE_ITEM;
175 extern const wxEventType wxEVT_INIT_DIALOG;
176 extern const wxEventType wxEVT_IDLE;
177 extern const wxEventType wxEVT_UPDATE_UI;
178
179 /* System misc. */
180 extern const wxEventType wxEVT_END_PROCESS;
181
182 /* Dial up events */
183 extern const wxEventType wxEVT_DIALUP_CONNECTED;
184 extern const wxEventType wxEVT_DIALUP_DISCONNECTED;
185
186 /* Generic command events */
187 /* Note: a click is a higher-level event than button down/up */
188 extern const wxEventType wxEVT_COMMAND_LEFT_CLICK;
189 extern const wxEventType wxEVT_COMMAND_LEFT_DCLICK;
190 extern const wxEventType wxEVT_COMMAND_RIGHT_CLICK;
191 extern const wxEventType wxEVT_COMMAND_RIGHT_DCLICK;
192 extern const wxEventType wxEVT_COMMAND_SET_FOCUS;
193 extern const wxEventType wxEVT_COMMAND_KILL_FOCUS;
194 extern const wxEventType wxEVT_COMMAND_ENTER;
195
196 /* Tree control event types */
197 extern const wxEventType wxEVT_COMMAND_TREE_BEGIN_DRAG;
198 extern const wxEventType wxEVT_COMMAND_TREE_BEGIN_RDRAG;
199 extern const wxEventType wxEVT_COMMAND_TREE_BEGIN_LABEL_EDIT;
200 extern const wxEventType wxEVT_COMMAND_TREE_END_LABEL_EDIT;
201 extern const wxEventType wxEVT_COMMAND_TREE_DELETE_ITEM;
202 extern const wxEventType wxEVT_COMMAND_TREE_GET_INFO;
203 extern const wxEventType wxEVT_COMMAND_TREE_SET_INFO;
204 extern const wxEventType wxEVT_COMMAND_TREE_ITEM_EXPANDED;
205 extern const wxEventType wxEVT_COMMAND_TREE_ITEM_EXPANDING;
206 extern const wxEventType wxEVT_COMMAND_TREE_ITEM_COLLAPSED;
207 extern const wxEventType wxEVT_COMMAND_TREE_ITEM_COLLAPSING;
208 extern const wxEventType wxEVT_COMMAND_TREE_SEL_CHANGED;
209 extern const wxEventType wxEVT_COMMAND_TREE_SEL_CHANGING;
210 extern const wxEventType wxEVT_COMMAND_TREE_KEY_DOWN;
211 extern const wxEventType wxEVT_COMMAND_TREE_ITEM_ACTIVATED;
212 extern const wxEventType wxEVT_COMMAND_TREE_ITEM_RIGHT_CLICK;
213 extern const wxEventType wxEVT_COMMAND_TREE_ITEM_MIDDLE_CLICK;
214
215 /* List control event types */
216 extern const wxEventType wxEVT_COMMAND_LIST_BEGIN_DRAG;
217 extern const wxEventType wxEVT_COMMAND_LIST_BEGIN_RDRAG;
218 extern const wxEventType wxEVT_COMMAND_LIST_BEGIN_LABEL_EDIT;
219 extern const wxEventType wxEVT_COMMAND_LIST_END_LABEL_EDIT;
220 extern const wxEventType wxEVT_COMMAND_LIST_DELETE_ITEM;
221 extern const wxEventType wxEVT_COMMAND_LIST_DELETE_ALL_ITEMS;
222 extern const wxEventType wxEVT_COMMAND_LIST_GET_INFO;
223 extern const wxEventType wxEVT_COMMAND_LIST_SET_INFO;
224 extern const wxEventType wxEVT_COMMAND_LIST_ITEM_SELECTED;
225 extern const wxEventType wxEVT_COMMAND_LIST_ITEM_DESELECTED;
226 extern const wxEventType wxEVT_COMMAND_LIST_KEY_DOWN;
227 extern const wxEventType wxEVT_COMMAND_LIST_INSERT_ITEM;
228 extern const wxEventType wxEVT_COMMAND_LIST_COL_CLICK;
229 extern const wxEventType wxEVT_COMMAND_LIST_ITEM_RIGHT_CLICK;
230 extern const wxEventType wxEVT_COMMAND_LIST_ITEM_MIDDLE_CLICK;
231 extern const wxEventType wxEVT_COMMAND_LIST_ITEM_ACTIVATED;
232
233 /* Tab and notebook control event types */
234 extern const wxEventType wxEVT_COMMAND_TAB_SEL_CHANGED;
235 extern const wxEventType wxEVT_COMMAND_TAB_SEL_CHANGING;
236 extern const wxEventType wxEVT_COMMAND_NOTEBOOK_PAGE_CHANGED;
237 extern const wxEventType wxEVT_COMMAND_NOTEBOOK_PAGE_CHANGING;
238
239 /* Splitter events */
240 extern const wxEventType wxEVT_COMMAND_SPLITTER_SASH_POS_CHANGED;
241 extern const wxEventType wxEVT_COMMAND_SPLITTER_SASH_POS_CHANGING;
242 extern const wxEventType wxEVT_COMMAND_SPLITTER_DOUBLECLICKED;
243 extern const wxEventType wxEVT_COMMAND_SPLITTER_UNSPLIT;
244
245 /* Wizard events */
246 extern const wxEventType wxEVT_WIZARD_PAGE_CHANGED;
247 extern const wxEventType wxEVT_WIZARD_PAGE_CHANGING;
248 extern const wxEventType wxEVT_WIZARD_CANCEL;
249
250 /* Calendar events */
251 extern const wxEventType wxEVT_CALENDAR_SEL_CHANGED;
252 extern const wxEventType wxEVT_CALENDAR_DAY_CHANGED;
253 extern const wxEventType wxEVT_CALENDAR_MONTH_CHANGED;
254 extern const wxEventType wxEVT_CALENDAR_YEAR_CHANGED;
255 extern const wxEventType wxEVT_CALENDAR_DOUBLECLICKED;
256 extern const wxEventType wxEVT_CALENDAR_WEEKDAY_CLICKED;
257
258 /* Plot events */
259 extern const wxEventType wxEVT_PLOT_SEL_CHANGING;
260 extern const wxEventType wxEVT_PLOT_SEL_CHANGED;
261 extern const wxEventType wxEVT_PLOT_CLICKED;
262 extern const wxEventType wxEVT_PLOT_DOUBLECLICKED;
263 extern const wxEventType wxEVT_PLOT_ZOOM_IN;
264 extern const wxEventType wxEVT_PLOT_ZOOM_OUT;
265 extern const wxEventType wxEVT_PLOT_VALUE_SEL_CREATING;
266 extern const wxEventType wxEVT_PLOT_VALUE_SEL_CREATED;
267 extern const wxEventType wxEVT_PLOT_VALUE_SEL_CHANGING;
268 extern const wxEventType wxEVT_PLOT_VALUE_SEL_CHANGED;
269 extern const wxEventType wxEVT_PLOT_AREA_SEL_CREATING;
270 extern const wxEventType wxEVT_PLOT_AREA_SEL_CREATED;
271 extern const wxEventType wxEVT_PLOT_AREA_SEL_CHANGING;
272 extern const wxEventType wxEVT_PLOT_AREA_SEL_CHANGED;
273 extern const wxEventType wxEVT_PLOT_BEGIN_X_LABEL_EDIT;
274 extern const wxEventType wxEVT_PLOT_END_X_LABEL_EDIT;
275 extern const wxEventType wxEVT_PLOT_BEGIN_Y_LABEL_EDIT;
276 extern const wxEventType wxEVT_PLOT_END_Y_LABEL_EDIT;
277 extern const wxEventType wxEVT_PLOT_BEGIN_TITLE_EDIT;
278 extern const wxEventType wxEVT_PLOT_END_TITLE_EDIT;
279
280 extern const wxEventType wxEVT_USER_FIRST;
281
282 #else // everybody else
283
284 const wxEventType wxEVT_NULL = 0;
285 const wxEventType wxEVT_FIRST = 10000;
286
287 const wxEventType wxEVT_COMMAND_BUTTON_CLICKED = wxEVT_FIRST + 1;
288 const wxEventType wxEVT_COMMAND_CHECKBOX_CLICKED = wxEVT_FIRST + 2;
289 const wxEventType wxEVT_COMMAND_CHOICE_SELECTED = wxEVT_FIRST + 3;
290 const wxEventType wxEVT_COMMAND_LISTBOX_SELECTED = wxEVT_FIRST + 4;
291 const wxEventType wxEVT_COMMAND_LISTBOX_DOUBLECLICKED = wxEVT_FIRST + 5;
292 const wxEventType wxEVT_COMMAND_CHECKLISTBOX_TOGGLED = wxEVT_FIRST + 6;
293 const wxEventType wxEVT_COMMAND_TEXT_UPDATED = wxEVT_FIRST + 7;
294 const wxEventType wxEVT_COMMAND_TEXT_ENTER = wxEVT_FIRST + 8;
295 const wxEventType wxEVT_COMMAND_MENU_SELECTED = wxEVT_FIRST + 9;
296 const wxEventType wxEVT_COMMAND_TOOL_CLICKED = wxEVT_COMMAND_MENU_SELECTED;
297 const wxEventType wxEVT_COMMAND_SLIDER_UPDATED = wxEVT_FIRST + 10;
298 const wxEventType wxEVT_COMMAND_RADIOBOX_SELECTED = wxEVT_FIRST + 11;
299 const wxEventType wxEVT_COMMAND_RADIOBUTTON_SELECTED = wxEVT_FIRST + 12;
300 //const wxEventType wxEVT_COMMAND_SCROLLBAR_UPDATED is now obsolete since we use wxEVT_SCROLL... events
301 const wxEventType wxEVT_COMMAND_SCROLLBAR_UPDATED = wxEVT_FIRST + 13;
302 const wxEventType wxEVT_COMMAND_VLBOX_SELECTED = wxEVT_FIRST + 14;
303 const wxEventType wxEVT_COMMAND_COMBOBOX_SELECTED = wxEVT_FIRST + 15;
304 const wxEventType wxEVT_COMMAND_TOOL_RCLICKED = wxEVT_FIRST + 16;
305 const wxEventType wxEVT_COMMAND_TOOL_ENTER = wxEVT_FIRST + 17;
306 const wxEventType wxEVT_COMMAND_SPINCTRL_UPDATED = wxEVT_FIRST + 18;
307
308 /* Sockets send events, too */
309 const wxEventType wxEVT_SOCKET = wxEVT_FIRST + 50;
310
311 /* And timers do as well */
312 const wxEventType wxEVT_TIMER = wxEVT_FIRST + 80;
313
314 /* Mouse event types */
315 const wxEventType wxEVT_LEFT_DOWN = wxEVT_FIRST + 100;
316 const wxEventType wxEVT_LEFT_UP = wxEVT_FIRST + 101;
317 const wxEventType wxEVT_MIDDLE_DOWN = wxEVT_FIRST + 102;
318 const wxEventType wxEVT_MIDDLE_UP = wxEVT_FIRST + 103;
319 const wxEventType wxEVT_RIGHT_DOWN = wxEVT_FIRST + 104;
320 const wxEventType wxEVT_RIGHT_UP = wxEVT_FIRST + 105;
321 const wxEventType wxEVT_MOTION = wxEVT_FIRST + 106;
322 const wxEventType wxEVT_ENTER_WINDOW = wxEVT_FIRST + 107;
323 const wxEventType wxEVT_LEAVE_WINDOW = wxEVT_FIRST + 108;
324 const wxEventType wxEVT_LEFT_DCLICK = wxEVT_FIRST + 109;
325 const wxEventType wxEVT_MIDDLE_DCLICK = wxEVT_FIRST + 110;
326 const wxEventType wxEVT_RIGHT_DCLICK = wxEVT_FIRST + 111;
327 const wxEventType wxEVT_SET_FOCUS = wxEVT_FIRST + 112;
328 const wxEventType wxEVT_KILL_FOCUS = wxEVT_FIRST + 113;
329
330 /* Non-client mouse events */
331 const wxEventType wxEVT_NC_LEFT_DOWN = wxEVT_FIRST + 200;
332 const wxEventType wxEVT_NC_LEFT_UP = wxEVT_FIRST + 201;
333 const wxEventType wxEVT_NC_MIDDLE_DOWN = wxEVT_FIRST + 202;
334 const wxEventType wxEVT_NC_MIDDLE_UP = wxEVT_FIRST + 203;
335 const wxEventType wxEVT_NC_RIGHT_DOWN = wxEVT_FIRST + 204;
336 const wxEventType wxEVT_NC_RIGHT_UP = wxEVT_FIRST + 205;
337 const wxEventType wxEVT_NC_MOTION = wxEVT_FIRST + 206;
338 const wxEventType wxEVT_NC_ENTER_WINDOW = wxEVT_FIRST + 207;
339 const wxEventType wxEVT_NC_LEAVE_WINDOW = wxEVT_FIRST + 208;
340 const wxEventType wxEVT_NC_LEFT_DCLICK = wxEVT_FIRST + 209;
341 const wxEventType wxEVT_NC_MIDDLE_DCLICK = wxEVT_FIRST + 210;
342 const wxEventType wxEVT_NC_RIGHT_DCLICK = wxEVT_FIRST + 211;
343
344 /* Character input event type */
345 const wxEventType wxEVT_CHAR = wxEVT_FIRST + 212;
346 const wxEventType wxEVT_CHAR_HOOK = wxEVT_FIRST + 213;
347 const wxEventType wxEVT_NAVIGATION_KEY = wxEVT_FIRST + 214;
348 const wxEventType wxEVT_KEY_DOWN = wxEVT_FIRST + 215;
349 const wxEventType wxEVT_KEY_UP = wxEVT_FIRST + 216;
350
351 /*
352 * wxScrollbar and wxSlider event identifiers
353 */
354 const wxEventType wxEVT_SCROLL_TOP = wxEVT_FIRST + 300;
355 const wxEventType wxEVT_SCROLL_BOTTOM = wxEVT_FIRST + 301;
356 const wxEventType wxEVT_SCROLL_LINEUP = wxEVT_FIRST + 302;
357 const wxEventType wxEVT_SCROLL_LINEDOWN = wxEVT_FIRST + 303;
358 const wxEventType wxEVT_SCROLL_PAGEUP = wxEVT_FIRST + 304;
359 const wxEventType wxEVT_SCROLL_PAGEDOWN = wxEVT_FIRST + 305;
360 const wxEventType wxEVT_SCROLL_THUMBTRACK = wxEVT_FIRST + 306;
361 const wxEventType wxEVT_SCROLL_THUMBRELEASE = wxEVT_FIRST + 307;
362
363 /*
364 * Scroll events from wxWindow
365 */
366 const wxEventType wxEVT_SCROLLWIN_TOP = wxEVT_FIRST + 320;
367 const wxEventType wxEVT_SCROLLWIN_BOTTOM = wxEVT_FIRST + 321;
368 const wxEventType wxEVT_SCROLLWIN_LINEUP = wxEVT_FIRST + 322;
369 const wxEventType wxEVT_SCROLLWIN_LINEDOWN = wxEVT_FIRST + 323;
370 const wxEventType wxEVT_SCROLLWIN_PAGEUP = wxEVT_FIRST + 324;
371 const wxEventType wxEVT_SCROLLWIN_PAGEDOWN = wxEVT_FIRST + 325;
372 const wxEventType wxEVT_SCROLLWIN_THUMBTRACK = wxEVT_FIRST + 326;
373 const wxEventType wxEVT_SCROLLWIN_THUMBRELEASE = wxEVT_FIRST + 327;
374
375 /*
376 * System events
377 */
378 const wxEventType wxEVT_SIZE = wxEVT_FIRST + 400;
379 const wxEventType wxEVT_MOVE = wxEVT_FIRST + 401;
380 const wxEventType wxEVT_CLOSE_WINDOW = wxEVT_FIRST + 402;
381 const wxEventType wxEVT_END_SESSION = wxEVT_FIRST + 403;
382 const wxEventType wxEVT_QUERY_END_SESSION = wxEVT_FIRST + 404;
383 const wxEventType wxEVT_ACTIVATE_APP = wxEVT_FIRST + 405;
384 const wxEventType wxEVT_POWER = wxEVT_FIRST + 406;
385 const wxEventType wxEVT_ACTIVATE = wxEVT_FIRST + 409;
386 const wxEventType wxEVT_CREATE = wxEVT_FIRST + 410;
387 const wxEventType wxEVT_DESTROY = wxEVT_FIRST + 411;
388 const wxEventType wxEVT_SHOW = wxEVT_FIRST + 412;
389 const wxEventType wxEVT_ICONIZE = wxEVT_FIRST + 413;
390 const wxEventType wxEVT_MAXIMIZE = wxEVT_FIRST + 414;
391 const wxEventType wxEVT_MOUSE_CAPTURE_CHANGED = wxEVT_FIRST + 415;
392 const wxEventType wxEVT_PAINT = wxEVT_FIRST + 416;
393 const wxEventType wxEVT_ERASE_BACKGROUND = wxEVT_FIRST + 417;
394 const wxEventType wxEVT_NC_PAINT = wxEVT_FIRST + 418;
395 const wxEventType wxEVT_PAINT_ICON = wxEVT_FIRST + 419;
396 const wxEventType wxEVT_MENU_CHAR = wxEVT_FIRST + 420;
397 const wxEventType wxEVT_MENU_INIT = wxEVT_FIRST + 421;
398 const wxEventType wxEVT_MENU_HIGHLIGHT = wxEVT_FIRST + 422;
399 const wxEventType wxEVT_POPUP_MENU_INIT = wxEVT_FIRST + 423;
400 const wxEventType wxEVT_CONTEXT_MENU = wxEVT_FIRST + 424;
401 const wxEventType wxEVT_SYS_COLOUR_CHANGED = wxEVT_FIRST + 425;
402 const wxEventType wxEVT_SETTING_CHANGED = wxEVT_FIRST + 426;
403 const wxEventType wxEVT_QUERY_NEW_PALETTE = wxEVT_FIRST + 427;
404 const wxEventType wxEVT_PALETTE_CHANGED = wxEVT_FIRST + 428;
405 const wxEventType wxEVT_JOY_BUTTON_DOWN = wxEVT_FIRST + 429;
406 const wxEventType wxEVT_JOY_BUTTON_UP = wxEVT_FIRST + 430;
407 const wxEventType wxEVT_JOY_MOVE = wxEVT_FIRST + 431;
408 const wxEventType wxEVT_JOY_ZMOVE = wxEVT_FIRST + 432;
409 const wxEventType wxEVT_DROP_FILES = wxEVT_FIRST + 433;
410 const wxEventType wxEVT_DRAW_ITEM = wxEVT_FIRST + 434;
411 const wxEventType wxEVT_MEASURE_ITEM = wxEVT_FIRST + 435;
412 const wxEventType wxEVT_COMPARE_ITEM = wxEVT_FIRST + 436;
413 const wxEventType wxEVT_INIT_DIALOG = wxEVT_FIRST + 437;
414 const wxEventType wxEVT_IDLE = wxEVT_FIRST + 438;
415 const wxEventType wxEVT_UPDATE_UI = wxEVT_FIRST + 439;
416
417 /* System misc. */
418 const wxEventType wxEVT_END_PROCESS = wxEVT_FIRST + 440;
419
420 /* Dial up events */
421 const wxEventType wxEVT_DIALUP_CONNECTED = wxEVT_FIRST + 450;
422 const wxEventType wxEVT_DIALUP_DISCONNECTED = wxEVT_FIRST + 451;
423
424 /* Generic command events */
425 /* Note: a click is a higher-level event than button down/up */
426 const wxEventType wxEVT_COMMAND_LEFT_CLICK = wxEVT_FIRST + 500;
427 const wxEventType wxEVT_COMMAND_LEFT_DCLICK = wxEVT_FIRST + 501;
428 const wxEventType wxEVT_COMMAND_RIGHT_CLICK = wxEVT_FIRST + 502;
429 const wxEventType wxEVT_COMMAND_RIGHT_DCLICK = wxEVT_FIRST + 503;
430 const wxEventType wxEVT_COMMAND_SET_FOCUS = wxEVT_FIRST + 504;
431 const wxEventType wxEVT_COMMAND_KILL_FOCUS = wxEVT_FIRST + 505;
432 const wxEventType wxEVT_COMMAND_ENTER = wxEVT_FIRST + 506;
433
434 /* Tree control event types */
435 const wxEventType wxEVT_COMMAND_TREE_BEGIN_DRAG = wxEVT_FIRST + 600;
436 const wxEventType wxEVT_COMMAND_TREE_BEGIN_RDRAG = wxEVT_FIRST + 601;
437 const wxEventType wxEVT_COMMAND_TREE_BEGIN_LABEL_EDIT = wxEVT_FIRST + 602;
438 const wxEventType wxEVT_COMMAND_TREE_END_LABEL_EDIT = wxEVT_FIRST + 603;
439 const wxEventType wxEVT_COMMAND_TREE_DELETE_ITEM = wxEVT_FIRST + 604;
440 const wxEventType wxEVT_COMMAND_TREE_GET_INFO = wxEVT_FIRST + 605;
441 const wxEventType wxEVT_COMMAND_TREE_SET_INFO = wxEVT_FIRST + 606;
442 const wxEventType wxEVT_COMMAND_TREE_ITEM_EXPANDED = wxEVT_FIRST + 607;
443 const wxEventType wxEVT_COMMAND_TREE_ITEM_EXPANDING = wxEVT_FIRST + 608;
444 const wxEventType wxEVT_COMMAND_TREE_ITEM_COLLAPSED = wxEVT_FIRST + 609;
445 const wxEventType wxEVT_COMMAND_TREE_ITEM_COLLAPSING = wxEVT_FIRST + 610;
446 const wxEventType wxEVT_COMMAND_TREE_SEL_CHANGED = wxEVT_FIRST + 611;
447 const wxEventType wxEVT_COMMAND_TREE_SEL_CHANGING = wxEVT_FIRST + 612;
448 const wxEventType wxEVT_COMMAND_TREE_KEY_DOWN = wxEVT_FIRST + 613;
449 const wxEventType wxEVT_COMMAND_TREE_ITEM_ACTIVATED = wxEVT_FIRST + 614;
450 const wxEventType wxEVT_COMMAND_TREE_ITEM_RIGHT_CLICK = wxEVT_FIRST + 615;
451 const wxEventType wxEVT_COMMAND_TREE_ITEM_MIDDLE_CLICK = wxEVT_FIRST + 616;
452
453 /* List control event types */
454 const wxEventType wxEVT_COMMAND_LIST_BEGIN_DRAG = wxEVT_FIRST + 700;
455 const wxEventType wxEVT_COMMAND_LIST_BEGIN_RDRAG = wxEVT_FIRST + 701;
456 const wxEventType wxEVT_COMMAND_LIST_BEGIN_LABEL_EDIT = wxEVT_FIRST + 702;
457 const wxEventType wxEVT_COMMAND_LIST_END_LABEL_EDIT = wxEVT_FIRST + 703;
458 const wxEventType wxEVT_COMMAND_LIST_DELETE_ITEM = wxEVT_FIRST + 704;
459 const wxEventType wxEVT_COMMAND_LIST_DELETE_ALL_ITEMS = wxEVT_FIRST + 705;
460 const wxEventType wxEVT_COMMAND_LIST_GET_INFO = wxEVT_FIRST + 706;
461 const wxEventType wxEVT_COMMAND_LIST_SET_INFO = wxEVT_FIRST + 707;
462 const wxEventType wxEVT_COMMAND_LIST_ITEM_SELECTED = wxEVT_FIRST + 708;
463 const wxEventType wxEVT_COMMAND_LIST_ITEM_DESELECTED = wxEVT_FIRST + 709;
464 const wxEventType wxEVT_COMMAND_LIST_KEY_DOWN = wxEVT_FIRST + 710;
465 const wxEventType wxEVT_COMMAND_LIST_INSERT_ITEM = wxEVT_FIRST + 711;
466 const wxEventType wxEVT_COMMAND_LIST_COL_CLICK = wxEVT_FIRST + 712;
467 const wxEventType wxEVT_COMMAND_LIST_ITEM_RIGHT_CLICK = wxEVT_FIRST + 713;
468 const wxEventType wxEVT_COMMAND_LIST_ITEM_MIDDLE_CLICK = wxEVT_FIRST + 714;
469 const wxEventType wxEVT_COMMAND_LIST_ITEM_ACTIVATED = wxEVT_FIRST + 715;
470
471 /* Tab and notebook control event types */
472 const wxEventType wxEVT_COMMAND_TAB_SEL_CHANGED = wxEVT_FIRST + 800;
473 const wxEventType wxEVT_COMMAND_TAB_SEL_CHANGING = wxEVT_FIRST + 801;
474
475 #if defined(__BORLANDC__) && defined(__WIN16__)
476 /* For 16-bit BC++, these 2 are identical (truncated) */
477 const wxEventType wxEVT_COMMAND_NB_PAGE_CHANGED = wxEVT_FIRST + 802;
478 const wxEventType wxEVT_COMMAND_NB_PAGE_CHANGING = wxEVT_FIRST + 803;
479 #else
480 const wxEventType wxEVT_COMMAND_NOTEBOOK_PAGE_CHANGED = wxEVT_FIRST + 802;
481 const wxEventType wxEVT_COMMAND_NOTEBOOK_PAGE_CHANGING = wxEVT_FIRST + 803;
482 #endif
483
484 /* Splitter events */
485 const wxEventType wxEVT_COMMAND_SPLITTER_SASH_POS_CHANGED = wxEVT_FIRST + 850;
486 const wxEventType wxEVT_COMMAND_SPLITTER_SASH_POS_CHANGING = wxEVT_FIRST + 851;
487 const wxEventType wxEVT_COMMAND_SPLITTER_DOUBLECLICKED = wxEVT_FIRST + 852;
488 const wxEventType wxEVT_COMMAND_SPLITTER_UNSPLIT = wxEVT_FIRST + 853;
489
490 /* Wizard events */
491 const wxEventType wxEVT_WIZARD_PAGE_CHANGED = wxEVT_FIRST + 900;
492 const wxEventType wxEVT_WIZARD_PAGE_CHANGING = wxEVT_FIRST + 901;
493 const wxEventType wxEVT_WIZARD_CANCEL = wxEVT_FIRST + 902;
494
495 /* Calendar events */
496 const wxEventType wxEVT_CALENDAR_SEL_CHANGED = wxEVT_FIRST + 950;
497 const wxEventType wxEVT_CALENDAR_DAY_CHANGED = wxEVT_FIRST + 951;
498 const wxEventType wxEVT_CALENDAR_MONTH_CHANGED = wxEVT_FIRST + 952;
499 const wxEventType wxEVT_CALENDAR_YEAR_CHANGED = wxEVT_FIRST + 953;
500 const wxEventType wxEVT_CALENDAR_DOUBLECLICKED = wxEVT_FIRST + 954;
501 const wxEventType wxEVT_CALENDAR_WEEKDAY_CLICKED = wxEVT_FIRST + 955;
502
503 /* Plot events */
504 const wxEventType wxEVT_PLOT_SEL_CHANGING = wxEVT_FIRST + 1000;
505 const wxEventType wxEVT_PLOT_SEL_CHANGED = wxEVT_FIRST + 1001;
506 const wxEventType wxEVT_PLOT_CLICKED = wxEVT_FIRST + 1002;
507 const wxEventType wxEVT_PLOT_DOUBLECLICKED = wxEVT_FIRST + 1003;
508 const wxEventType wxEVT_PLOT_ZOOM_IN = wxEVT_FIRST + 1004;
509 const wxEventType wxEVT_PLOT_ZOOM_OUT = wxEVT_FIRST + 1005;
510 const wxEventType wxEVT_PLOT_VALUE_SEL_CREATING = wxEVT_FIRST + 1010;
511 const wxEventType wxEVT_PLOT_VALUE_SEL_CREATED = wxEVT_FIRST + 1011;
512 const wxEventType wxEVT_PLOT_VALUE_SEL_CHANGING = wxEVT_FIRST + 1012;
513 const wxEventType wxEVT_PLOT_VALUE_SEL_CHANGED = wxEVT_FIRST + 1013;
514 const wxEventType wxEVT_PLOT_AREA_SEL_CREATING = wxEVT_FIRST + 1014;
515 const wxEventType wxEVT_PLOT_AREA_SEL_CREATED = wxEVT_FIRST + 1015;
516 const wxEventType wxEVT_PLOT_AREA_SEL_CHANGING = wxEVT_FIRST + 1016;
517 const wxEventType wxEVT_PLOT_AREA_SEL_CHANGED = wxEVT_FIRST + 1017;
518 const wxEventType wxEVT_PLOT_BEGIN_X_LABEL_EDIT = wxEVT_FIRST + 1020;
519 const wxEventType wxEVT_PLOT_END_X_LABEL_EDIT = wxEVT_FIRST + 1021;
520 const wxEventType wxEVT_PLOT_BEGIN_Y_LABEL_EDIT = wxEVT_FIRST + 1022;
521 const wxEventType wxEVT_PLOT_END_Y_LABEL_EDIT = wxEVT_FIRST + 1023;
522 const wxEventType wxEVT_PLOT_BEGIN_TITLE_EDIT = wxEVT_FIRST + 1024;
523 const wxEventType wxEVT_PLOT_END_TITLE_EDIT = wxEVT_FIRST + 1025;
524
525 const wxEventType wxEVT_USER_FIRST = wxEVT_FIRST + 2000;
526
527 #endif // for VisualAge C++ V4.0
528
529 /* Compatibility */
530
531 #if WXWIN_COMPATIBILITY
532
533 #define wxEVENT_TYPE_BUTTON_COMMAND wxEVT_COMMAND_BUTTON_CLICKED
534 #define wxEVENT_TYPE_CHECKBOX_COMMAND wxEVT_COMMAND_CHECKBOX_CLICKED
535 #define wxEVENT_TYPE_CHOICE_COMMAND wxEVT_COMMAND_CHOICE_SELECTED
536 #define wxEVENT_TYPE_LISTBOX_COMMAND wxEVT_COMMAND_LISTBOX_SELECTED
537 #define wxEVENT_TYPE_LISTBOX_DCLICK_COMMAND wxEVT_COMMAND_LISTBOX_DOUBLECLICKED
538 #define wxEVENT_TYPE_TEXT_COMMAND wxEVT_COMMAND_TEXT_UPDATED
539 #define wxEVENT_TYPE_MULTITEXT_COMMAND wxEVT_COMMAND_TEXT_UPDATED
540 #define wxEVENT_TYPE_MENU_COMMAND wxEVT_COMMAND_MENU_SELECTED
541 #define wxEVENT_TYPE_SLIDER_COMMAND wxEVT_COMMAND_SLIDER_UPDATED
542 #define wxEVENT_TYPE_RADIOBOX_COMMAND wxEVT_COMMAND_RADIOBOX_SELECTED
543 #define wxEVENT_TYPE_RADIOBUTTON_COMMAND wxEVT_COMMAND_RADIOBUTTON_SELECTED
544 #define wxEVENT_TYPE_TEXT_ENTER_COMMAND wxEVT_COMMAND_TEXT_ENTER
545 #define wxEVENT_TYPE_SET_FOCUS wxEVT_SET_FOCUS
546 #define wxEVENT_TYPE_KILL_FOCUS wxEVT_KILL_FOCUS
547 #define wxEVENT_TYPE_SCROLLBAR_COMMAND wxEVT_COMMAND_SCROLLBAR_UPDATED
548 #define wxEVENT_TYPE_VIRT_LISTBOX_COMMAND wxEVT_COMMAND_VLBOX_SELECTED
549 #define wxEVENT_TYPE_COMBOBOX_COMMAND wxEVT_COMMAND_COMBOBOX_SELECTED
550
551 #define wxEVENT_TYPE_LEFT_DOWN wxEVT_LEFT_DOWN
552 #define wxEVENT_TYPE_LEFT_UP wxEVT_LEFT_UP
553 #define wxEVENT_TYPE_MIDDLE_DOWN wxEVT_MIDDLE_DOWN
554 #define wxEVENT_TYPE_MIDDLE_UP wxEVT_MIDDLE_UP
555 #define wxEVENT_TYPE_RIGHT_DOWN wxEVT_RIGHT_DOWN
556 #define wxEVENT_TYPE_RIGHT_UP wxEVT_RIGHT_UP
557 #define wxEVENT_TYPE_MOTION wxEVT_MOTION
558 #define wxEVENT_TYPE_ENTER_WINDOW wxEVT_ENTER_WINDOW
559 #define wxEVENT_TYPE_LEAVE_WINDOW wxEVT_LEAVE_WINDOW
560 #define wxEVENT_TYPE_LEFT_DCLICK wxEVT_LEFT_DCLICK
561 #define wxEVENT_TYPE_MIDDLE_DCLICK wxEVT_MIDDLE_DCLICK
562 #define wxEVENT_TYPE_RIGHT_DCLICK wxEVT_RIGHT_DCLICK
563 #define wxEVENT_TYPE_CHAR wxEVT_CHAR
564 #define wxEVENT_TYPE_SCROLL_TOP wxEVT_SCROLL_TOP
565 #define wxEVENT_TYPE_SCROLL_BOTTOM wxEVT_SCROLL_BOTTOM
566 #define wxEVENT_TYPE_SCROLL_LINEUP wxEVT_SCROLL_LINEUP
567 #define wxEVENT_TYPE_SCROLL_LINEDOWN wxEVT_SCROLL_LINEDOWN
568 #define wxEVENT_TYPE_SCROLL_PAGEUP wxEVT_SCROLL_PAGEUP
569 #define wxEVENT_TYPE_SCROLL_PAGEDOWN wxEVT_SCROLL_PAGEDOWN
570 #define wxEVENT_TYPE_SCROLL_THUMBTRACK wxEVT_SCROLL_THUMBTRACK
571
572 #endif // WXWIN_COMPATIBILITY
573
574 /*
575 * wxWindows events, covering all interesting things that might happen
576 * (button clicking, resizing, setting text in widgets, etc.).
577 *
578 * For each completely new event type, derive a new event class.
579 * An event CLASS represents a C++ class defining a range of similar event TYPES;
580 * examples are canvas events, panel item command events.
581 * An event TYPE is a unique identifier for a particular system event,
582 * such as a button press or a listbox deselection.
583 *
584 */
585
586 class WXDLLEXPORT wxEvent : public wxObject
587 {
588 DECLARE_ABSTRACT_CLASS(wxEvent)
589
590 public:
591 wxEvent(int id = 0);
592 ~wxEvent() {}
593
594 void SetEventType(wxEventType typ) { m_eventType = typ; }
595 wxEventType GetEventType() const { return m_eventType; }
596 wxObject *GetEventObject() const { return m_eventObject; }
597 void SetEventObject(wxObject *obj) { m_eventObject = obj; }
598 long GetTimestamp() const { return m_timeStamp; }
599 void SetTimestamp(long ts = 0) { m_timeStamp = ts; }
600 int GetId() const { return m_id; }
601 void SetId(int Id) { m_id = Id; }
602
603 // Can instruct event processor that we wish to ignore this event
604 // (treat as if the event table entry had not been found): this must be done
605 // to allow the event processing by the base classes (calling event.Skip()
606 // is the analog of calling the base class verstion of a virtual function)
607 void Skip(bool skip = TRUE) { m_skipped = skip; }
608 bool GetSkipped() const { return m_skipped; };
609
610 // implementation only: this test is explicitlty anti OO and this functions
611 // exists only for optimization purposes
612 bool IsCommandEvent() const { return m_isCommandEvent; }
613
614 void CopyObject(wxObject& object_dest) const;
615
616 public:
617 wxObject* m_eventObject;
618 wxEventType m_eventType;
619 long m_timeStamp;
620 int m_id;
621 wxObject* m_callbackUserData;
622 bool m_skipped;
623
624 // optimization: instead of using costly IsKindOf() we keep a flag telling
625 // whether we're a command event (by far the most common case)
626 bool m_isCommandEvent;
627 };
628
629 #if wxUSE_GUI
630
631 // Item or menu event class
632 /*
633 wxEVT_COMMAND_BUTTON_CLICKED
634 wxEVT_COMMAND_CHECKBOX_CLICKED
635 wxEVT_COMMAND_CHOICE_SELECTED
636 wxEVT_COMMAND_LISTBOX_SELECTED
637 wxEVT_COMMAND_LISTBOX_DOUBLECLICKED
638 wxEVT_COMMAND_TEXT_UPDATED
639 wxEVT_COMMAND_TEXT_ENTER
640 wxEVT_COMMAND_MENU_SELECTED
641 wxEVT_COMMAND_SLIDER_UPDATED
642 wxEVT_COMMAND_RADIOBOX_SELECTED
643 wxEVT_COMMAND_RADIOBUTTON_SELECTED
644 wxEVT_COMMAND_SCROLLBAR_UPDATED
645 wxEVT_COMMAND_VLBOX_SELECTED
646 wxEVT_COMMAND_COMBOBOX_SELECTED
647 */
648
649 class WXDLLEXPORT wxCommandEvent : public wxEvent
650 {
651 DECLARE_DYNAMIC_CLASS(wxCommandEvent)
652
653 public:
654 wxCommandEvent(wxEventType commandType = wxEVT_NULL, int id = 0);
655 ~wxCommandEvent() {}
656
657 /*
658 * Accessors dependent on context
659 *
660 */
661
662 // Set/Get client data from controls
663 void SetClientData(void* clientData) { m_clientData = clientData; }
664 void *GetClientData() const { return m_clientData; }
665
666 // Set/Get client object from controls
667 void SetClientObject(wxClientData* clientObject) { m_clientObject = clientObject; }
668 void *GetClientObject() const { return m_clientObject; }
669
670 // Get listbox selection if single-choice
671 int GetSelection() const { return m_commandInt; }
672
673 // Set/Get listbox/choice selection string
674 void SetString(const wxString& s) { m_commandString = s; }
675 wxString GetString() const { return m_commandString; }
676
677 // Get checkbox value
678 bool Checked() const { return (m_commandInt != 0); }
679
680 // TRUE if the listbox event was a selection.
681 bool IsSelection() const { return (m_extraLong != 0); }
682
683 void SetExtraLong(long extraLong) { m_extraLong = extraLong; }
684 long GetExtraLong() const { return m_extraLong ; }
685
686 void SetInt(int i) { m_commandInt = i; }
687 long GetInt() const { return m_commandInt ; }
688
689 void CopyObject(wxObject& obj) const;
690
691 public:
692 wxString m_commandString; // String event argument
693 int m_commandInt;
694 long m_extraLong; // Additional information (e.g. select/deselect)
695 void* m_clientData; // Arbitrary client data
696 wxClientData* m_clientObject; // Arbitrary client object
697 };
698
699 // this class adds a possibility to react (from the user) code to a control
700 // notification: allow or veto the operation being reported.
701 class WXDLLEXPORT wxNotifyEvent : public wxCommandEvent
702 {
703 public:
704 wxNotifyEvent(wxEventType commandType = wxEVT_NULL, int id = 0)
705 : wxCommandEvent(commandType, id) { m_bAllow = TRUE; }
706
707 // veto the operation (by default it's allowed)
708 void Veto() { m_bAllow = FALSE; }
709
710 // for implementation code only: is the operation allowed?
711 bool IsAllowed() const { return m_bAllow; }
712
713 // probably useless: CopyObject() is used for deferred event
714 // handling but wxNotifyEvent must be processed immediately
715 void CopyObject(wxObject& obj) const;
716
717 private:
718 bool m_bAllow;
719
720 DECLARE_DYNAMIC_CLASS(wxNotifyEvent)
721 };
722
723 // Scroll event class, derived form wxCommandEvent. wxScrollEvents are
724 // sent by wxSlider and wxScrollbar.
725 /*
726 wxEVT_SCROLL_TOP
727 wxEVT_SCROLL_BOTTOM
728 wxEVT_SCROLL_LINEUP
729 wxEVT_SCROLL_LINEDOWN
730 wxEVT_SCROLL_PAGEUP
731 wxEVT_SCROLL_PAGEDOWN
732 wxEVT_SCROLL_THUMBTRACK
733 wxEVT_SCROLL_THUMBRELEASE
734 */
735
736 class WXDLLEXPORT wxScrollEvent : public wxCommandEvent
737 {
738 DECLARE_DYNAMIC_CLASS(wxScrollEvent)
739
740 public:
741 wxScrollEvent(wxEventType commandType = wxEVT_NULL,
742 int id = 0, int pos = 0, int orient = 0);
743 ~wxScrollEvent() {}
744
745 /*
746 * Accessors
747 *
748 */
749
750 int GetOrientation() const { return (int) m_extraLong ; }
751 int GetPosition() const { return m_commandInt ; }
752 void SetOrientation(int orient) { m_extraLong = (long) orient; }
753 void SetPosition(int pos) { m_commandInt = pos; }
754 };
755
756 // ScrollWin event class, derived fom wxEvent. wxScrollWinEvents
757 // are sent by wxWindow.
758 /*
759 wxEVT_SCROLLWIN_TOP
760 wxEVT_SCROLLWIN_BOTTOM
761 wxEVT_SCROLLWIN_LINEUP
762 wxEVT_SCROLLWIN_LINEDOWN
763 wxEVT_SCROLLWIN_PAGEUP
764 wxEVT_SCROLLWIN_PAGEDOWN
765 wxEVT_SCROLLWIN_THUMBTRACK
766 wxEVT_SCROLLWIN_THUMBRELEASE
767 */
768
769 class WXDLLEXPORT wxScrollWinEvent : public wxEvent
770 {
771 DECLARE_DYNAMIC_CLASS(wxScrollWinEvent)
772
773 public:
774 wxScrollWinEvent(wxEventType commandType = wxEVT_NULL,
775 int pos = 0, int orient = 0);
776 ~wxScrollWinEvent() {}
777
778 /*
779 * Accessors
780 */
781
782 int GetOrientation() const { return (int) m_extraLong ; }
783 int GetPosition() const { return m_commandInt ; }
784 void SetOrientation(int orient) { m_extraLong = (long) orient; }
785 void SetPosition(int pos) { m_commandInt = pos; }
786
787 void CopyObject(wxObject& object_dest) const;
788 public:
789 int m_commandInt; // Additional information
790 long m_extraLong;
791 };
792
793 // Mouse event class
794
795 /*
796 wxEVT_LEFT_DOWN
797 wxEVT_LEFT_UP
798 wxEVT_MIDDLE_DOWN
799 wxEVT_MIDDLE_UP
800 wxEVT_RIGHT_DOWN
801 wxEVT_RIGHT_UP
802 wxEVT_MOTION
803 wxEVT_ENTER_WINDOW
804 wxEVT_LEAVE_WINDOW
805 wxEVT_LEFT_DCLICK
806 wxEVT_MIDDLE_DCLICK
807 wxEVT_RIGHT_DCLICK
808 wxEVT_NC_LEFT_DOWN
809 wxEVT_NC_LEFT_UP,
810 wxEVT_NC_MIDDLE_DOWN,
811 wxEVT_NC_MIDDLE_UP,
812 wxEVT_NC_RIGHT_DOWN,
813 wxEVT_NC_RIGHT_UP,
814 wxEVT_NC_MOTION,
815 wxEVT_NC_ENTER_WINDOW,
816 wxEVT_NC_LEAVE_WINDOW,
817 wxEVT_NC_LEFT_DCLICK,
818 wxEVT_NC_MIDDLE_DCLICK,
819 wxEVT_NC_RIGHT_DCLICK,
820 */
821
822 class WXDLLEXPORT wxMouseEvent : public wxEvent
823 {
824 DECLARE_DYNAMIC_CLASS(wxMouseEvent)
825
826 public:
827 wxMouseEvent(wxEventType mouseType = wxEVT_NULL);
828
829 // Was it a button event? (*doesn't* mean: is any button *down*?)
830 bool IsButton() const { return Button(-1); }
831
832 // Was it a down event from button 1, 2 or 3 or any?
833 bool ButtonDown(int but = -1) const;
834
835 // Was it a dclick event from button 1, 2 or 3 or any?
836 bool ButtonDClick(int but = -1) const;
837
838 // Was it a up event from button 1, 2 or 3 or any?
839 bool ButtonUp(int but = -1) const;
840
841 // Was the given button 1,2,3 or any changing state?
842 bool Button(int but) const;
843
844 // Was the given button 1,2,3 or any in Down state?
845 bool ButtonIsDown(int but) const;
846
847 // Find state of shift/control keys
848 bool ControlDown() const { return m_controlDown; }
849 bool MetaDown() const { return m_metaDown; }
850 bool AltDown() const { return m_altDown; }
851 bool ShiftDown() const { return m_shiftDown; }
852
853 // Find which event was just generated
854 bool LeftDown() const { return (m_eventType == wxEVT_LEFT_DOWN); }
855 bool MiddleDown() const { return (m_eventType == wxEVT_MIDDLE_DOWN); }
856 bool RightDown() const { return (m_eventType == wxEVT_RIGHT_DOWN); }
857
858 bool LeftUp() const { return (m_eventType == wxEVT_LEFT_UP); }
859 bool MiddleUp() const { return (m_eventType == wxEVT_MIDDLE_UP); }
860 bool RightUp() const { return (m_eventType == wxEVT_RIGHT_UP); }
861
862 bool LeftDClick() const { return (m_eventType == wxEVT_LEFT_DCLICK); }
863 bool MiddleDClick() const { return (m_eventType == wxEVT_MIDDLE_DCLICK); }
864 bool RightDClick() const { return (m_eventType == wxEVT_RIGHT_DCLICK); }
865
866 // Find the current state of the mouse buttons (regardless
867 // of current event type)
868 bool LeftIsDown() const { return m_leftDown; }
869 bool MiddleIsDown() const { return m_middleDown; }
870 bool RightIsDown() const { return m_rightDown; }
871
872 // True if a button is down and the mouse is moving
873 bool Dragging() const
874 {
875 return ((m_eventType == wxEVT_MOTION) &&
876 (LeftIsDown() || MiddleIsDown() || RightIsDown()));
877 }
878
879 // True if the mouse is moving, and no button is down
880 bool Moving() const { return (m_eventType == wxEVT_MOTION); }
881
882 // True if the mouse is just entering the window
883 bool Entering() const { return (m_eventType == wxEVT_ENTER_WINDOW); }
884
885 // True if the mouse is just leaving the window
886 bool Leaving() const { return (m_eventType == wxEVT_LEAVE_WINDOW); }
887
888 // Find the position of the event
889 void GetPosition(wxCoord *xpos, wxCoord *ypos) const
890 {
891 if (xpos)
892 *xpos = m_x;
893 if (ypos)
894 *ypos = m_y;
895 }
896
897 #ifndef __WIN16__
898 void GetPosition(long *xpos, long *ypos) const
899 {
900 if (xpos)
901 *xpos = (long)m_x;
902 if (ypos)
903 *ypos = (long)m_y;
904 }
905 #endif
906
907 // Find the position of the event
908 wxPoint GetPosition() const { return wxPoint(m_x, m_y); }
909
910 // Find the logical position of the event given the DC
911 wxPoint GetLogicalPosition(const wxDC& dc) const ;
912
913 // Compatibility
914 #if WXWIN_COMPATIBILITY
915 void Position(long *xpos, long *ypos) const
916 {
917 if (xpos)
918 *xpos = (long)m_x;
919 if (ypos)
920 *ypos = (long)m_y;
921 }
922
923 void Position(float *xpos, float *ypos) const
924 {
925 *xpos = (float) m_x; *ypos = (float) m_y;
926 }
927 #endif // WXWIN_COMPATIBILITY
928
929 // Get X position
930 long GetX() const { return m_x; }
931
932 // Get Y position
933 long GetY() const { return m_y; }
934
935 void CopyObject(wxObject& obj) const;
936
937 public:
938 wxCoord m_x, m_y;
939
940 bool m_leftDown;
941 bool m_middleDown;
942 bool m_rightDown;
943
944 bool m_controlDown;
945 bool m_shiftDown;
946 bool m_altDown;
947 bool m_metaDown;
948 };
949
950 // Keyboard input event class
951
952 /*
953 wxEVT_CHAR
954 wxEVT_CHAR_HOOK
955 wxEVT_KEY_DOWN
956 wxEVT_KEY_UP
957 */
958
959 class WXDLLEXPORT wxKeyEvent : public wxEvent
960 {
961 DECLARE_DYNAMIC_CLASS(wxKeyEvent)
962
963 public:
964 wxKeyEvent(wxEventType keyType = wxEVT_NULL);
965
966 // Find state of shift/control keys
967 bool ControlDown() const { return m_controlDown; }
968 bool MetaDown() const { return m_metaDown; }
969 bool AltDown() const { return m_altDown; }
970 bool ShiftDown() const { return m_shiftDown; }
971 long KeyCode() const { return m_keyCode; }
972
973 // Find the position of the event
974 void GetPosition(wxCoord *xpos, wxCoord *ypos) const
975 {
976 if (xpos) *xpos = m_x;
977 if (ypos) *ypos = m_y;
978 }
979
980 #ifndef __WIN16__
981 void GetPosition(long *xpos, long *ypos) const
982 {
983 if (xpos) *xpos = (long)m_x;
984 if (ypos) *ypos = (long)m_y;
985 }
986 #endif
987
988 wxPoint GetPosition() const
989 { return wxPoint(m_x, m_y); }
990
991 // Get X position
992 wxCoord GetX() const { return m_x; }
993
994 // Get Y position
995 wxCoord GetY() const { return m_y; }
996
997 void CopyObject(wxObject& obj) const;
998
999 public:
1000 wxCoord m_x, m_y;
1001
1002 long m_keyCode;
1003
1004 bool m_controlDown;
1005 bool m_shiftDown;
1006 bool m_altDown;
1007 bool m_metaDown;
1008 bool m_scanCode;
1009 };
1010
1011 // Size event class
1012 /*
1013 wxEVT_SIZE
1014 */
1015
1016 class WXDLLEXPORT wxSizeEvent : public wxEvent
1017 {
1018 DECLARE_DYNAMIC_CLASS(wxSizeEvent)
1019
1020 public:
1021 wxSize m_size;
1022
1023 wxSizeEvent() { m_eventType = wxEVT_SIZE; }
1024 wxSizeEvent(const wxSize& sz, int id = 0)
1025 : m_size(sz)
1026 { m_eventType = wxEVT_SIZE; m_id = id; }
1027
1028 wxSize GetSize() const { return m_size; }
1029
1030 void CopyObject(wxObject& obj) const;
1031 };
1032
1033 // Move event class
1034
1035 /*
1036 wxEVT_MOVE
1037 */
1038
1039 class WXDLLEXPORT wxMoveEvent : public wxEvent
1040 {
1041 DECLARE_DYNAMIC_CLASS(wxMoveEvent)
1042
1043 public:
1044 wxPoint m_pos;
1045
1046 wxMoveEvent() { m_eventType = wxEVT_MOVE; }
1047 wxMoveEvent(const wxPoint& pos, int id = 0)
1048 : m_pos(pos)
1049 { m_eventType = wxEVT_MOVE; m_id = id; }
1050
1051 wxPoint GetPosition() const { return m_pos; }
1052
1053 void CopyObject(wxObject& obj) const;
1054 };
1055
1056 // Paint event class
1057 /*
1058 wxEVT_PAINT
1059 wxEVT_NC_PAINT
1060 wxEVT_PAINT_ICON
1061 */
1062
1063 #if defined(__WXDEBUG__) && defined(__WXMSW__)
1064 // see comments in src/msw/dcclient.cpp where g_isPainting is defined
1065 extern int g_isPainting;
1066 #endif // debug
1067
1068 class WXDLLEXPORT wxPaintEvent : public wxEvent
1069 {
1070 DECLARE_DYNAMIC_CLASS(wxPaintEvent)
1071
1072 public:
1073 wxPaintEvent(int Id = 0)
1074 {
1075 m_eventType = wxEVT_PAINT;
1076 m_id = Id;
1077
1078 #if defined(__WXDEBUG__) && defined(__WXMSW__)
1079 // set the internal flag for the duration of processing of WM_PAINT
1080 g_isPainting++;
1081 #endif // debug
1082 }
1083
1084 #if defined(__WXDEBUG__) && defined(__WXMSW__)
1085 ~wxPaintEvent()
1086 {
1087 g_isPainting--;
1088 }
1089 #endif // debug
1090 };
1091
1092 // Erase background event class
1093 /*
1094 wxEVT_ERASE_BACKGROUND
1095 */
1096
1097 class WXDLLEXPORT wxEraseEvent : public wxEvent
1098 {
1099 DECLARE_DYNAMIC_CLASS(wxEraseEvent)
1100
1101 public:
1102 wxDC *m_dc;
1103
1104 wxEraseEvent(int Id = 0, wxDC *dc = (wxDC *) NULL)
1105 { m_eventType = wxEVT_ERASE_BACKGROUND; m_id = Id; m_dc = dc; }
1106 wxDC *GetDC() const { return m_dc; }
1107
1108 void CopyObject(wxObject& obj) const;
1109 };
1110
1111 // Focus event class
1112 /*
1113 wxEVT_SET_FOCUS
1114 wxEVT_KILL_FOCUS
1115 */
1116
1117 class WXDLLEXPORT wxFocusEvent : public wxEvent
1118 {
1119 DECLARE_DYNAMIC_CLASS(wxFocusEvent)
1120
1121 public:
1122 wxFocusEvent(wxEventType type = wxEVT_NULL, int Id = 0)
1123 { m_eventType = type; m_id = Id; }
1124 };
1125
1126 // Activate event class
1127 /*
1128 wxEVT_ACTIVATE
1129 wxEVT_ACTIVATE_APP
1130 */
1131
1132 class WXDLLEXPORT wxActivateEvent : public wxEvent
1133 {
1134 DECLARE_DYNAMIC_CLASS(wxActivateEvent)
1135
1136 public:
1137 wxActivateEvent(wxEventType type = wxEVT_NULL, bool active = TRUE, int Id = 0)
1138 { m_eventType = type; m_active = active; m_id = Id; }
1139 bool GetActive() const { return m_active; }
1140
1141 void CopyObject(wxObject& obj) const;
1142
1143 private:
1144 bool m_active;
1145 };
1146
1147 // InitDialog event class
1148 /*
1149 wxEVT_INIT_DIALOG
1150 */
1151
1152 class WXDLLEXPORT wxInitDialogEvent : public wxEvent
1153 {
1154 DECLARE_DYNAMIC_CLASS(wxInitDialogEvent)
1155
1156 public:
1157 wxInitDialogEvent(int Id = 0)
1158 { m_eventType = wxEVT_INIT_DIALOG; m_id = Id; }
1159 };
1160
1161 // Miscellaneous menu event class
1162 /*
1163 wxEVT_MENU_CHAR,
1164 wxEVT_MENU_INIT,
1165 wxEVT_MENU_HIGHLIGHT,
1166 wxEVT_POPUP_MENU_INIT,
1167 wxEVT_CONTEXT_MENU,
1168 */
1169
1170 class WXDLLEXPORT wxMenuEvent : public wxEvent
1171 {
1172 DECLARE_DYNAMIC_CLASS(wxMenuEvent)
1173
1174 public:
1175 wxMenuEvent(wxEventType type = wxEVT_NULL, int id = 0)
1176 { m_eventType = type; m_menuId = id; }
1177
1178 int GetMenuId() const { return m_menuId; }
1179
1180 void CopyObject(wxObject& obj) const;
1181 private:
1182 int m_menuId;
1183 };
1184
1185 // Window close or session close event class
1186 /*
1187 wxEVT_CLOSE_WINDOW,
1188 wxEVT_END_SESSION,
1189 wxEVT_QUERY_END_SESSION
1190 */
1191
1192 class WXDLLEXPORT wxCloseEvent : public wxEvent
1193 {
1194 DECLARE_DYNAMIC_CLASS(wxCloseEvent)
1195
1196 public:
1197 wxCloseEvent(wxEventType type = wxEVT_NULL, int id = 0)
1198 {
1199 m_eventType = type;
1200 m_loggingOff = TRUE;
1201 m_veto = FALSE; // should be FALSE by default
1202 m_id = id;
1203 #if WXWIN_COMPATIBILITY
1204 m_force = FALSE;
1205 #endif // WXWIN_COMPATIBILITY
1206 m_canVeto = TRUE;
1207 }
1208
1209 void SetLoggingOff(bool logOff) { m_loggingOff = logOff; }
1210 bool GetLoggingOff() const { return m_loggingOff; }
1211
1212 void Veto(bool veto = TRUE)
1213 {
1214 // GetVeto() will return FALSE anyhow...
1215 wxCHECK_RET( m_canVeto,
1216 wxT("call to Veto() ignored (can't veto this event)") );
1217
1218 m_veto = veto;
1219 }
1220 void SetCanVeto(bool canVeto) { m_canVeto = canVeto; }
1221 // No more asserts here please, the one you put here was wrong.
1222 bool CanVeto() const { return m_canVeto; }
1223 bool GetVeto() const { return m_canVeto && m_veto; }
1224
1225 #if WXWIN_COMPATIBILITY
1226 // This is probably obsolete now, since we use CanVeto instead, in
1227 // both OnCloseWindow and OnQueryEndSession.
1228 // m_force == ! m_canVeto i.e., can't veto means we must force it to close.
1229 void SetForce(bool force) { m_force = force; }
1230 bool GetForce() const { return m_force; }
1231 #endif
1232
1233 void CopyObject(wxObject& obj) const;
1234
1235 protected:
1236 bool m_loggingOff;
1237 bool m_veto, m_canVeto;
1238
1239 #if WXWIN_COMPATIBILITY
1240 bool m_force;
1241 #endif
1242 };
1243
1244 /*
1245 wxEVT_SHOW
1246 */
1247
1248 class WXDLLEXPORT wxShowEvent : public wxEvent
1249 {
1250 DECLARE_DYNAMIC_CLASS(wxShowEvent)
1251
1252 public:
1253
1254 wxShowEvent(int id = 0, bool show = FALSE)
1255 { m_eventType = wxEVT_SHOW; m_id = id; m_show = show; }
1256
1257 void SetShow(bool show) { m_show = show; }
1258 bool GetShow() const { return m_show; }
1259
1260 void CopyObject(wxObject& obj) const;
1261
1262 protected:
1263 bool m_show;
1264 };
1265
1266 /*
1267 wxEVT_ICONIZE
1268 */
1269
1270 class WXDLLEXPORT wxIconizeEvent : public wxEvent
1271 {
1272 DECLARE_DYNAMIC_CLASS(wxIconizeEvent)
1273
1274 public:
1275 wxIconizeEvent(int id = 0)
1276 { m_eventType = wxEVT_ICONIZE; m_id = id; }
1277 };
1278
1279 /*
1280 wxEVT_MAXIMIZE
1281 */
1282
1283 class WXDLLEXPORT wxMaximizeEvent : public wxEvent
1284 {
1285 DECLARE_DYNAMIC_CLASS(wxMaximizeEvent)
1286
1287 public:
1288 wxMaximizeEvent(int id = 0)
1289 { m_eventType = wxEVT_MAXIMIZE; m_id = id; }
1290 };
1291
1292 // Joystick event class
1293 /*
1294 wxEVT_JOY_BUTTON_DOWN,
1295 wxEVT_JOY_BUTTON_UP,
1296 wxEVT_JOY_MOVE,
1297 wxEVT_JOY_ZMOVE
1298 */
1299
1300 // Which joystick? Same as Windows ids so no conversion necessary.
1301 #define wxJOYSTICK1 0
1302 #define wxJOYSTICK2 1
1303
1304 // Which button is down?
1305 #define wxJOY_BUTTON1 1
1306 #define wxJOY_BUTTON2 2
1307 #define wxJOY_BUTTON3 4
1308 #define wxJOY_BUTTON4 8
1309 #define wxJOY_BUTTON_ANY -1
1310
1311 class WXDLLEXPORT wxJoystickEvent : public wxEvent
1312 {
1313 DECLARE_DYNAMIC_CLASS(wxJoystickEvent)
1314
1315 public:
1316 wxPoint m_pos;
1317 int m_zPosition;
1318 int m_buttonChange; // Which button changed?
1319 int m_buttonState; // Which buttons are down?
1320 int m_joyStick; // Which joystick?
1321
1322 wxJoystickEvent(wxEventType type = wxEVT_NULL,
1323 int state = 0,
1324 int joystick = wxJOYSTICK1,
1325 int change = 0)
1326 {
1327 m_eventType = type;
1328 m_buttonState = state;
1329 m_pos = wxPoint(0,0);
1330 m_zPosition = 0;
1331 m_joyStick = joystick;
1332 m_buttonChange = change;
1333 }
1334
1335 wxPoint GetPosition() const { return m_pos; }
1336 int GetZPosition() const { return m_zPosition; }
1337 int GetButtonState() const { return m_buttonState; }
1338 int GetButtonChange() const { return m_buttonChange; }
1339 int GetJoystick() const { return m_joyStick; }
1340
1341 void SetJoystick(int stick) { m_joyStick = stick; }
1342 void SetButtonState(int state) { m_buttonState = state; }
1343 void SetButtonChange(int change) { m_buttonChange = change; }
1344 void SetPosition(const wxPoint& pos) { m_pos = pos; }
1345 void SetZPosition(int zPos) { m_zPosition = zPos; }
1346
1347 // Was it a button event? (*doesn't* mean: is any button *down*?)
1348 bool IsButton() const { return ((GetEventType() == wxEVT_JOY_BUTTON_DOWN) ||
1349 (GetEventType() == wxEVT_JOY_BUTTON_UP)); }
1350
1351 // Was it a move event?
1352 bool IsMove() const { return (GetEventType() == wxEVT_JOY_MOVE) ; }
1353
1354 // Was it a zmove event?
1355 bool IsZMove() const { return (GetEventType() == wxEVT_JOY_ZMOVE) ; }
1356
1357 // Was it a down event from button 1, 2, 3, 4 or any?
1358 bool ButtonDown(int but = wxJOY_BUTTON_ANY) const
1359 { return ((GetEventType() == wxEVT_JOY_BUTTON_DOWN) &&
1360 ((but == wxJOY_BUTTON_ANY) || (but == m_buttonChange))); }
1361
1362 // Was it a up event from button 1, 2, 3 or any?
1363 bool ButtonUp(int but = wxJOY_BUTTON_ANY) const
1364 { return ((GetEventType() == wxEVT_JOY_BUTTON_UP) &&
1365 ((but == wxJOY_BUTTON_ANY) || (but == m_buttonChange))); }
1366
1367 // Was the given button 1,2,3,4 or any in Down state?
1368 bool ButtonIsDown(int but = wxJOY_BUTTON_ANY) const
1369 { return (((but == wxJOY_BUTTON_ANY) && (m_buttonState != 0)) ||
1370 ((m_buttonState & but) == but)); }
1371
1372 void CopyObject(wxObject& obj) const;
1373 };
1374
1375 // Drop files event class
1376 /*
1377 wxEVT_DROP_FILES
1378 */
1379
1380 class WXDLLEXPORT wxDropFilesEvent : public wxEvent
1381 {
1382 DECLARE_DYNAMIC_CLASS(wxDropFilesEvent)
1383
1384 public:
1385 int m_noFiles;
1386 wxPoint m_pos;
1387 wxString* m_files; // Memory (de)allocated by code calling ProcessEvent
1388
1389 wxDropFilesEvent(wxEventType type = wxEVT_NULL,
1390 int noFiles = 0,
1391 wxString *files = (wxString *) NULL)
1392 { m_eventType = type; m_noFiles = noFiles; m_files = files; }
1393
1394 wxPoint GetPosition() const { return m_pos; }
1395 int GetNumberOfFiles() const { return m_noFiles; }
1396 wxString *GetFiles() const { return m_files; }
1397
1398 void CopyObject(wxObject& obj) const;
1399 };
1400
1401 // Update UI event
1402 /*
1403 wxEVT_UPDATE_UI
1404 */
1405
1406 class WXDLLEXPORT wxUpdateUIEvent : public wxCommandEvent
1407 {
1408 DECLARE_DYNAMIC_CLASS(wxUpdateUIEvent)
1409
1410 public:
1411 wxUpdateUIEvent(wxWindowID commandId = 0)
1412 {
1413 m_eventType = wxEVT_UPDATE_UI;
1414 m_id = commandId;
1415 m_checked = FALSE;
1416 m_setChecked = FALSE;
1417 m_enabled = FALSE;
1418 m_setEnabled = FALSE;
1419 m_setText = FALSE;
1420 m_text = "";
1421 }
1422
1423 bool GetChecked() const { return m_checked; }
1424 bool GetEnabled() const { return m_enabled; }
1425 wxString GetText() const { return m_text; }
1426 bool GetSetText() const { return m_setText; }
1427 bool GetSetChecked() const { return m_setChecked; }
1428 bool GetSetEnabled() const { return m_setEnabled; }
1429
1430 void Check(bool check) { m_checked = check; m_setChecked = TRUE; }
1431 void Enable(bool enable) { m_enabled = enable; m_setEnabled = TRUE; }
1432 void SetText(const wxString& text) { m_text = text; m_setText = TRUE; }
1433
1434 void CopyObject(wxObject& obj) const;
1435
1436 protected:
1437 bool m_checked;
1438 bool m_enabled;
1439 bool m_setEnabled;
1440 bool m_setText;
1441 bool m_setChecked;
1442 wxString m_text;
1443 };
1444
1445 /*
1446 wxEVT_SYS_COLOUR_CHANGED
1447 */
1448
1449 // TODO: shouldn't all events record the window ID?
1450 class WXDLLEXPORT wxSysColourChangedEvent : public wxEvent
1451 {
1452 DECLARE_DYNAMIC_CLASS(wxSysColourChangedEvent)
1453
1454 public:
1455 wxSysColourChangedEvent()
1456 { m_eventType = wxEVT_SYS_COLOUR_CHANGED; }
1457 };
1458
1459 /*
1460 wxEVT_PALETTE_CHANGED
1461 */
1462
1463 class WXDLLEXPORT wxPaletteChangedEvent : public wxEvent
1464 {
1465 DECLARE_DYNAMIC_CLASS(wxPaletteChangedEvent)
1466
1467 public:
1468 wxPaletteChangedEvent(wxWindowID id = 0) : wxEvent(id)
1469 {
1470 m_eventType = wxEVT_PALETTE_CHANGED;
1471 m_changedWindow = (wxWindow *) NULL;
1472 }
1473
1474 void SetChangedWindow(wxWindow* win) { m_changedWindow = win; }
1475 wxWindow* GetChangedWindow() const { return m_changedWindow; }
1476
1477 void CopyObject(wxObject& obj) const;
1478
1479 protected:
1480 wxWindow* m_changedWindow;
1481 };
1482
1483 /*
1484 wxEVT_QUERY_NEW_PALETTE
1485 Indicates the window is getting keyboard focus and should re-do its palette.
1486 */
1487
1488 class WXDLLEXPORT wxQueryNewPaletteEvent : public wxEvent
1489 {
1490 DECLARE_DYNAMIC_CLASS(wxQueryNewPaletteEvent)
1491
1492 public:
1493 wxQueryNewPaletteEvent(wxWindowID id = 0): wxEvent(id)
1494 { m_eventType = wxEVT_QUERY_NEW_PALETTE; m_paletteRealized = FALSE; }
1495
1496 // App sets this if it changes the palette.
1497 void SetPaletteRealized(bool realized) { m_paletteRealized = realized; }
1498 bool GetPaletteRealized() const { return m_paletteRealized; }
1499
1500 void CopyObject(wxObject& obj) const;
1501
1502 protected:
1503 bool m_paletteRealized;
1504 };
1505
1506 /*
1507 Event generated by dialog navigation keys
1508 wxEVT_NAVIGATION_KEY
1509 */
1510 // NB: don't derive from command event to avoid being propagated to the parent
1511 class WXDLLEXPORT wxNavigationKeyEvent : public wxEvent
1512 {
1513 public:
1514 wxNavigationKeyEvent()
1515 {
1516 SetEventType(wxEVT_NAVIGATION_KEY);
1517
1518 m_flags = IsForward | Propagate; // defaults are for TAB
1519 m_focus = (wxWindow *)NULL;
1520 }
1521
1522 // direction: forward (true) or backward (false)
1523 bool GetDirection() const
1524 { return (m_flags & IsForward) != 0; }
1525 void SetDirection(bool bForward)
1526 { if ( bForward ) m_flags |= IsForward; else m_flags &= ~IsForward; }
1527
1528 // it may be a window change event (MDI, notebook pages...) or a control
1529 // change event
1530 bool IsWindowChange() const
1531 { return (m_flags & WinChange) != 0; }
1532 void SetWindowChange(bool bIs)
1533 { if ( bIs ) m_flags |= WinChange; else m_flags &= ~WinChange; }
1534
1535 // some navigation events are meant to be propagated upwards (Windows
1536 // convention is to do this for TAB events) while others should always
1537 // cycle inside the panel/radiobox/whatever we're current inside
1538 bool ShouldPropagate() const
1539 { return (m_flags & Propagate) != 0; }
1540 void SetPropagate(bool bDoIt)
1541 { if ( bDoIt ) m_flags |= Propagate; else m_flags &= ~Propagate; }
1542
1543 // the child which has the focus currently (may be NULL - use
1544 // wxWindow::FindFocus then)
1545 wxWindow* GetCurrentFocus() const { return m_focus; }
1546 void SetCurrentFocus(wxWindow *win) { m_focus = win; }
1547
1548 private:
1549 enum
1550 {
1551 IsForward = 0x0001,
1552 WinChange = 0x0002,
1553 Propagate = 0x0004
1554 };
1555
1556 long m_flags;
1557 wxWindow *m_focus;
1558
1559 DECLARE_DYNAMIC_CLASS(wxNavigationKeyEvent)
1560 };
1561
1562 // Window creation/destruction events: the first is sent as soon as window is
1563 // created (i.e. the underlying GUI object exists), but when the C++ object is
1564 // fully initialized (so virtual functions may be called). The second,
1565 // wxEVT_DESTROY, is sent right before the window is destroyed - again, it's
1566 // still safe to call virtual functions at this moment
1567 /*
1568 wxEVT_CREATE
1569 wxEVT_DESTROY
1570 */
1571
1572 class WXDLLEXPORT wxWindowCreateEvent : public wxEvent
1573 {
1574 DECLARE_DYNAMIC_CLASS(wxWindowCreateEvent)
1575
1576 public:
1577 wxWindowCreateEvent(wxWindow *win = NULL);
1578
1579 wxWindow *GetWindow() const { return (wxWindow *)GetEventObject(); }
1580 };
1581
1582 class WXDLLEXPORT wxWindowDestroyEvent : public wxEvent
1583 {
1584 DECLARE_DYNAMIC_CLASS(wxWindowDestroyEvent)
1585
1586 public:
1587 wxWindowDestroyEvent(wxWindow *win = NULL);
1588
1589 wxWindow *GetWindow() const { return (wxWindow *)GetEventObject(); }
1590 };
1591
1592 #endif // wxUSE_GUI
1593
1594 // Idle event
1595 /*
1596 wxEVT_IDLE
1597 */
1598
1599 class WXDLLEXPORT wxIdleEvent : public wxEvent
1600 {
1601 DECLARE_DYNAMIC_CLASS(wxIdleEvent)
1602
1603 public:
1604 wxIdleEvent()
1605 { m_eventType = wxEVT_IDLE; m_requestMore = FALSE; }
1606
1607 void RequestMore(bool needMore = TRUE) { m_requestMore = needMore; }
1608 bool MoreRequested() const { return m_requestMore; }
1609
1610 void CopyObject(wxObject& obj) const;
1611
1612 protected:
1613 bool m_requestMore;
1614 };
1615
1616 /* TODO
1617 wxEVT_POWER,
1618 wxEVT_MOUSE_CAPTURE_CHANGED,
1619 wxEVT_SETTING_CHANGED, // WM_WININICHANGE (NT) / WM_SETTINGCHANGE (Win95)
1620 // wxEVT_FONT_CHANGED, // WM_FONTCHANGE: roll into wxEVT_SETTING_CHANGED, but remember to propagate
1621 // wxEVT_FONT_CHANGED to all other windows (maybe).
1622 wxEVT_DRAW_ITEM, // Leave these three as virtual functions in wxControl?? Platform-specific.
1623 wxEVT_MEASURE_ITEM,
1624 wxEVT_COMPARE_ITEM
1625 */
1626
1627 // ============================================================================
1628 // event handler and related classes
1629 // ============================================================================
1630
1631 typedef void (wxObject::*wxObjectEventFunction)(wxEvent&);
1632
1633 struct WXDLLEXPORT wxEventTableEntry
1634 {
1635 // For some reason, this can't be wxEventType, or VC++ complains.
1636 int m_eventType; // main event type
1637 int m_id; // control/menu/toolbar id
1638 int m_lastId; // used for ranges of ids
1639 wxObjectEventFunction m_fn; // function to call: not wxEventFunction,
1640 // because of dependency problems
1641
1642 wxObject* m_callbackUserData;
1643 };
1644
1645 struct WXDLLEXPORT wxEventTable
1646 {
1647 const wxEventTable *baseTable; // Points to base event table (next in chain)
1648 const wxEventTableEntry *entries; // Points to bottom of entry array
1649 };
1650
1651 class WXDLLEXPORT wxEvtHandler : public wxObject
1652 {
1653 DECLARE_DYNAMIC_CLASS(wxEvtHandler)
1654
1655 public:
1656 wxEvtHandler();
1657 ~wxEvtHandler();
1658
1659 wxEvtHandler *GetNextHandler() const { return m_nextHandler; }
1660 wxEvtHandler *GetPreviousHandler() const { return m_previousHandler; }
1661 void SetNextHandler(wxEvtHandler *handler) { m_nextHandler = handler; }
1662 void SetPreviousHandler(wxEvtHandler *handler) { m_previousHandler = handler; }
1663
1664 void SetEvtHandlerEnabled(bool enabled) { m_enabled = enabled; }
1665 bool GetEvtHandlerEnabled() const { return m_enabled; }
1666
1667 // process an event right now
1668 virtual bool ProcessEvent(wxEvent& event);
1669
1670 // add an event to be processed later
1671 void AddPendingEvent(wxEvent& event);
1672
1673 // process all pending events
1674 void ProcessPendingEvents();
1675
1676 // add a
1677 #if wxUSE_THREADS
1678 bool ProcessThreadEvent(wxEvent& event);
1679 #endif
1680
1681 // Dynamic association of a member function handler with the event handler,
1682 // id and event type
1683 void Connect( int id, int lastId, wxEventType eventType,
1684 wxObjectEventFunction func,
1685 wxObject *userData = (wxObject *) NULL );
1686
1687 // Convenience function: take just one id
1688 void Connect( int id, wxEventType eventType,
1689 wxObjectEventFunction func,
1690 wxObject *userData = (wxObject *) NULL )
1691 { Connect(id, -1, eventType, func, userData); }
1692
1693 bool Disconnect( int id, int lastId = -1, wxEventType eventType = wxEVT_NULL,
1694 wxObjectEventFunction func = NULL,
1695 wxObject *userData = (wxObject *) NULL );
1696
1697 // Convenience function: take just one id
1698 bool Disconnect( int id, wxEventType eventType = wxEVT_NULL,
1699 wxObjectEventFunction func = NULL,
1700 wxObject *userData = (wxObject *) NULL )
1701 { return Disconnect(id, -1, eventType, func, userData); }
1702
1703 // implementation from now on
1704 virtual bool SearchEventTable(wxEventTable& table, wxEvent& event);
1705 bool SearchDynamicEventTable( wxEvent& event );
1706
1707 #if wxUSE_THREADS
1708 void ClearEventLocker()
1709 {
1710 # if !defined(__VISAGECPP__)
1711 delete m_eventsLocker;
1712 m_eventsLocker = NULL;
1713 #endif
1714 };
1715 #endif
1716
1717 // old stuff
1718
1719 #if WXWIN_COMPATIBILITY_2
1720 virtual void OnCommand(wxWindow& WXUNUSED(win),
1721 wxCommandEvent& WXUNUSED(event))
1722 {
1723 wxFAIL_MSG(wxT("shouldn't be called any more"));
1724 }
1725
1726 // Called if child control has no callback function
1727 virtual long Default()
1728 { return GetNextHandler() ? GetNextHandler()->Default() : 0; };
1729 #endif // WXWIN_COMPATIBILITY_2
1730
1731 #if WXWIN_COMPATIBILITY
1732 virtual bool OnClose();
1733 #endif
1734
1735 private:
1736 static const wxEventTableEntry sm_eventTableEntries[];
1737
1738 protected:
1739 static const wxEventTable sm_eventTable;
1740
1741 virtual const wxEventTable *GetEventTable() const;
1742
1743 protected:
1744 wxEvtHandler* m_nextHandler;
1745 wxEvtHandler* m_previousHandler;
1746 wxList* m_dynamicEvents;
1747 wxList* m_pendingEvents;
1748 #if wxUSE_THREADS
1749 #if defined (__VISAGECPP__)
1750 wxCriticalSection m_eventsLocker;
1751 # else
1752 wxCriticalSection* m_eventsLocker;
1753 # endif
1754 #endif
1755
1756 // optimization: instead of using costly IsKindOf() to decide whether we're
1757 // a window (which is true in 99% of cases), use this flag
1758 bool m_isWindow;
1759
1760 // Is event handler enabled?
1761 bool m_enabled;
1762 };
1763
1764 typedef void (wxEvtHandler::*wxEventFunction)(wxEvent&);
1765 #if wxUSE_GUI
1766 typedef void (wxEvtHandler::*wxCommandEventFunction)(wxCommandEvent&);
1767 typedef void (wxEvtHandler::*wxScrollEventFunction)(wxScrollEvent&);
1768 typedef void (wxEvtHandler::*wxScrollWinEventFunction)(wxScrollWinEvent&);
1769 typedef void (wxEvtHandler::*wxSizeEventFunction)(wxSizeEvent&);
1770 typedef void (wxEvtHandler::*wxMoveEventFunction)(wxMoveEvent&);
1771 typedef void (wxEvtHandler::*wxPaintEventFunction)(wxPaintEvent&);
1772 typedef void (wxEvtHandler::*wxEraseEventFunction)(wxEraseEvent&);
1773 typedef void (wxEvtHandler::*wxMouseEventFunction)(wxMouseEvent&);
1774 typedef void (wxEvtHandler::*wxCharEventFunction)(wxKeyEvent&);
1775 typedef void (wxEvtHandler::*wxFocusEventFunction)(wxFocusEvent&);
1776 typedef void (wxEvtHandler::*wxActivateEventFunction)(wxActivateEvent&);
1777 typedef void (wxEvtHandler::*wxMenuEventFunction)(wxMenuEvent&);
1778 typedef void (wxEvtHandler::*wxJoystickEventFunction)(wxJoystickEvent&);
1779 typedef void (wxEvtHandler::*wxDropFilesEventFunction)(wxDropFilesEvent&);
1780 typedef void (wxEvtHandler::*wxInitDialogEventFunction)(wxInitDialogEvent&);
1781 typedef void (wxEvtHandler::*wxSysColourChangedFunction)(wxSysColourChangedEvent&);
1782 typedef void (wxEvtHandler::*wxUpdateUIEventFunction)(wxUpdateUIEvent&);
1783 typedef void (wxEvtHandler::*wxIdleEventFunction)(wxIdleEvent&);
1784 typedef void (wxEvtHandler::*wxCloseEventFunction)(wxCloseEvent&);
1785 typedef void (wxEvtHandler::*wxShowEventFunction)(wxShowEvent&);
1786 typedef void (wxEvtHandler::*wxIconizeEventFunction)(wxShowEvent&);
1787 typedef void (wxEvtHandler::*wxMaximizeEventFunction)(wxShowEvent&);
1788 typedef void (wxEvtHandler::*wxNavigationKeyEventFunction)(wxNavigationKeyEvent&);
1789 typedef void (wxEvtHandler::*wxPaletteChangedEventFunction)(wxPaletteChangedEvent&);
1790 typedef void (wxEvtHandler::*wxQueryNewPaletteEventFunction)(wxQueryNewPaletteEvent&);
1791 #endif // wxUSE_GUI
1792
1793 // N.B. In GNU-WIN32, you *have* to take the address of a member function
1794 // (use &) or the compiler crashes...
1795
1796 #define DECLARE_EVENT_TABLE() \
1797 private:\
1798 static const wxEventTableEntry sm_eventTableEntries[];\
1799 protected:\
1800 static const wxEventTable sm_eventTable;\
1801 virtual const wxEventTable* GetEventTable() const;
1802
1803 #define BEGIN_EVENT_TABLE(theClass, baseClass) \
1804 const wxEventTable *theClass::GetEventTable() const { return &theClass::sm_eventTable; }\
1805 const wxEventTable theClass::sm_eventTable =\
1806 { &baseClass::sm_eventTable, &theClass::sm_eventTableEntries[0] };\
1807 const wxEventTableEntry theClass::sm_eventTableEntries[] = { \
1808
1809 #define END_EVENT_TABLE() \
1810 { 0, 0, 0, 0, 0 } };
1811
1812 /*
1813 * Event table macros
1814 */
1815
1816 // Generic events
1817 #define EVT_CUSTOM(event, id, func) { event, id, -1, (wxObjectEventFunction) (wxEventFunction) & func, (wxObject *) NULL },
1818 #define EVT_CUSTOM_RANGE(event, id1, id2, func) { event, id1, id2, (wxObjectEventFunction) (wxEventFunction) & func, (wxObject *) NULL },
1819
1820 // Miscellaneous
1821 #define EVT_SIZE(func) { wxEVT_SIZE, -1, -1, (wxObjectEventFunction) (wxEventFunction) (wxSizeEventFunction) & func, (wxObject *) NULL },
1822 #define EVT_MOVE(func) { wxEVT_MOVE, -1, -1, (wxObjectEventFunction) (wxEventFunction) (wxMoveEventFunction) & func, (wxObject *) NULL },
1823 #define EVT_CLOSE(func) { wxEVT_CLOSE_WINDOW, -1, -1, (wxObjectEventFunction) (wxEventFunction) (wxCloseEventFunction) & func, (wxObject *) NULL },
1824 #define EVT_END_SESSION(func) { wxEVT_END_SESSION, -1, -1, (wxObjectEventFunction) (wxEventFunction) (wxCloseEventFunction) & func, (wxObject *) NULL },
1825 #define EVT_QUERY_END_SESSION(func) { wxEVT_QUERY_END_SESSION, -1, -1, (wxObjectEventFunction) (wxEventFunction) (wxCloseEventFunction) & func, (wxObject *) NULL },
1826 #define EVT_PAINT(func) { wxEVT_PAINT, -1, -1, (wxObjectEventFunction) (wxEventFunction) (wxPaintEventFunction) & func, (wxObject *) NULL },
1827 #define EVT_ERASE_BACKGROUND(func) { wxEVT_ERASE_BACKGROUND, -1, -1, (wxObjectEventFunction) (wxEventFunction) (wxEraseEventFunction) & func, (wxObject *) NULL },
1828 #define EVT_CHAR(func) { wxEVT_CHAR, -1, -1, (wxObjectEventFunction) (wxEventFunction) (wxCharEventFunction) & func, (wxObject *) NULL },
1829 #define EVT_KEY_DOWN(func) { wxEVT_KEY_DOWN, -1, -1, (wxObjectEventFunction) (wxEventFunction) (wxCharEventFunction) & func, (wxObject *) NULL },
1830 #define EVT_KEY_UP(func) { wxEVT_KEY_UP, -1, -1, (wxObjectEventFunction) (wxEventFunction) (wxCharEventFunction) & func, (wxObject *) NULL },
1831 #define EVT_CHAR_HOOK(func) { wxEVT_CHAR_HOOK, -1, -1, (wxObjectEventFunction) (wxEventFunction) (wxCharEventFunction) & func, NULL },
1832 #define EVT_MENU_HIGHLIGHT(id, func) { wxEVT_MENU_HIGHLIGHT, id, -1, (wxObjectEventFunction) (wxEventFunction) (wxMenuEventFunction) & func, (wxObject *) NULL },
1833 #define EVT_MENU_HIGHLIGHT_ALL(func) { wxEVT_MENU_HIGHLIGHT, -1, -1, (wxObjectEventFunction) (wxEventFunction) (wxMenuEventFunction) & func, (wxObject *) NULL },
1834 #define EVT_SET_FOCUS(func) { wxEVT_SET_FOCUS, -1, -1, (wxObjectEventFunction) (wxEventFunction) (wxFocusEventFunction) & func, (wxObject *) NULL },
1835 #define EVT_KILL_FOCUS(func) { wxEVT_KILL_FOCUS, -1, -1, (wxObjectEventFunction) (wxEventFunction) (wxFocusEventFunction) & func, (wxObject *) NULL },
1836 #define EVT_ACTIVATE(func) { wxEVT_ACTIVATE, -1, -1, (wxObjectEventFunction) (wxEventFunction) (wxActivateEventFunction) & func, (wxObject *) NULL },
1837 #define EVT_ACTIVATE_APP(func) { wxEVT_ACTIVATE_APP, -1, -1, (wxObjectEventFunction) (wxEventFunction) (wxActivateEventFunction) & func, (wxObject *) NULL },
1838 #define EVT_END_SESSION(func) { wxEVT_END_SESSION, -1, -1, (wxObjectEventFunction) (wxEventFunction) (wxCloseEventFunction) & func, (wxObject *) NULL },
1839 #define EVT_QUERY_END_SESSION(func) { wxEVT_QUERY_END_SESSION, -1, -1, (wxObjectEventFunction) (wxEventFunction) (wxCloseEventFunction) & func, (wxObject *) NULL },
1840 #define EVT_DROP_FILES(func) { wxEVT_DROP_FILES, -1, -1, (wxObjectEventFunction) (wxEventFunction) (wxDropFilesEventFunction) & func, (wxObject *) NULL },
1841 #define EVT_INIT_DIALOG(func) { wxEVT_INIT_DIALOG, -1, -1, (wxObjectEventFunction) (wxEventFunction) (wxInitDialogEventFunction) & func, (wxObject *) NULL },
1842 #define EVT_SYS_COLOUR_CHANGED(func) { wxEVT_SYS_COLOUR_CHANGED, -1, -1, (wxObjectEventFunction) (wxEventFunction) (wxSysColourChangedFunction) & func, (wxObject *) NULL },
1843 #define EVT_SHOW(func) { wxEVT_SHOW, -1, -1, (wxObjectEventFunction) (wxEventFunction) (wxShowEventFunction) & func, (wxObject *) NULL },
1844 #define EVT_MAXIMIZE(func) { wxEVT_MAXIMIZE, -1, -1, (wxObjectEventFunction) (wxEventFunction) (wxMaximizeEventFunction) & func, (wxObject *) NULL },
1845 #define EVT_ICONIZE(func) { wxEVT_ICONIZE, -1, -1, (wxObjectEventFunction) (wxEventFunction) (wxIconizeEventFunction) & func, (wxObject *) NULL },
1846 #define EVT_NAVIGATION_KEY(func) { wxEVT_NAVIGATION_KEY, -1, -1, (wxObjectEventFunction) (wxEventFunction) (wxCommandEventFunction) (wxNavigationKeyEventFunction) & func, (wxObject *) NULL },
1847 #define EVT_PALETTE_CHANGED(func) { wxEVT_PALETTE_CHANGED, -1, -1, (wxObjectEventFunction) (wxEventFunction) (wxPaletteChangedEventFunction) & func, (wxObject *) NULL },
1848 #define EVT_QUERY_NEW_PALETTE(func) { wxEVT_QUERY_NEW_PALETTE, -1, -1, (wxObjectEventFunction) (wxEventFunction) (wxQueryNewPaletteEventFunction) & func, (wxObject *) NULL },
1849 #define EVT_WINDOW_CREATE(func) { wxEVT_CREATE, -1, -1, (wxObjectEventFunction) (wxEventFunction) (wxQueryNewPaletteEventFunction) & func, (wxObject *) NULL },
1850 #define EVT_WINDOW_DESTROY(func) { wxEVT_DESTROY, -1, -1, (wxObjectEventFunction) (wxEventFunction) (wxQueryNewPaletteEventFunction) & func, (wxObject *) NULL },
1851
1852 // Mouse events
1853 #define EVT_LEFT_DOWN(func) { wxEVT_LEFT_DOWN, -1, -1, (wxObjectEventFunction) (wxEventFunction) (wxMouseEventFunction) & func, (wxObject *) NULL },
1854 #define EVT_LEFT_UP(func) { wxEVT_LEFT_UP, -1, -1, (wxObjectEventFunction) (wxEventFunction) (wxMouseEventFunction) & func, (wxObject *) NULL },
1855 #define EVT_MIDDLE_DOWN(func) { wxEVT_MIDDLE_DOWN, -1, -1, (wxObjectEventFunction) (wxEventFunction) (wxMouseEventFunction) & func, (wxObject *) NULL },
1856 #define EVT_MIDDLE_UP(func) { wxEVT_MIDDLE_UP, -1, -1, (wxObjectEventFunction) (wxEventFunction) (wxMouseEventFunction) & func, (wxObject *) NULL },
1857 #define EVT_RIGHT_DOWN(func) { wxEVT_RIGHT_DOWN, -1, -1, (wxObjectEventFunction) (wxEventFunction) (wxMouseEventFunction) & func, (wxObject *) NULL },
1858 #define EVT_RIGHT_UP(func) { wxEVT_RIGHT_UP, -1, -1, (wxObjectEventFunction) (wxEventFunction) (wxMouseEventFunction) & func, (wxObject *) NULL },
1859 #define EVT_MOTION(func) { wxEVT_MOTION, -1, -1, (wxObjectEventFunction) (wxEventFunction) (wxMouseEventFunction) & func, (wxObject *) NULL },
1860 #define EVT_LEFT_DCLICK(func) { wxEVT_LEFT_DCLICK, -1, -1, (wxObjectEventFunction) (wxEventFunction) (wxMouseEventFunction) & func, (wxObject *) NULL },
1861 #define EVT_MIDDLE_DCLICK(func) { wxEVT_MIDDLE_DCLICK, -1, -1, (wxObjectEventFunction) (wxEventFunction) (wxMouseEventFunction) & func, (wxObject *) NULL },
1862 #define EVT_RIGHT_DCLICK(func) { wxEVT_RIGHT_DCLICK, -1, -1, (wxObjectEventFunction) (wxEventFunction) (wxMouseEventFunction) & func, (wxObject *) NULL },
1863 #define EVT_LEAVE_WINDOW(func) { wxEVT_LEAVE_WINDOW, -1, -1, (wxObjectEventFunction) (wxEventFunction) (wxMouseEventFunction) & func, (wxObject *) NULL },
1864 #define EVT_ENTER_WINDOW(func) { wxEVT_ENTER_WINDOW, -1, -1, (wxObjectEventFunction) (wxEventFunction) (wxMouseEventFunction) & func, (wxObject *) NULL },
1865
1866 // All mouse events
1867 #define EVT_MOUSE_EVENTS(func) \
1868 { wxEVT_LEFT_DOWN, -1, -1, (wxObjectEventFunction) (wxEventFunction) (wxMouseEventFunction) & func, (wxObject *) NULL },\
1869 { wxEVT_LEFT_UP, -1, -1, (wxObjectEventFunction) (wxEventFunction) (wxMouseEventFunction) & func, (wxObject *) NULL },\
1870 { wxEVT_MIDDLE_DOWN, -1, -1, (wxObjectEventFunction) (wxEventFunction) (wxMouseEventFunction) & func, (wxObject *) NULL },\
1871 { wxEVT_MIDDLE_UP, -1, -1, (wxObjectEventFunction) (wxEventFunction) (wxMouseEventFunction) & func, (wxObject *) NULL },\
1872 { wxEVT_RIGHT_DOWN, -1, -1, (wxObjectEventFunction) (wxEventFunction) (wxMouseEventFunction) & func, (wxObject *) NULL },\
1873 { wxEVT_RIGHT_UP, -1, -1, (wxObjectEventFunction) (wxEventFunction) (wxMouseEventFunction) & func, (wxObject *) NULL },\
1874 { wxEVT_MOTION, -1, -1, (wxObjectEventFunction) (wxEventFunction) (wxMouseEventFunction) & func, (wxObject *) NULL },\
1875 { wxEVT_LEFT_DCLICK, -1, -1, (wxObjectEventFunction) (wxEventFunction) (wxMouseEventFunction) & func, (wxObject *) NULL },\
1876 { wxEVT_MIDDLE_DCLICK, -1, -1, (wxObjectEventFunction) (wxEventFunction) (wxMouseEventFunction) & func, (wxObject *) NULL },\
1877 { wxEVT_RIGHT_DCLICK, -1, -1, (wxObjectEventFunction) (wxEventFunction) (wxMouseEventFunction) & func, (wxObject *) NULL },\
1878 { wxEVT_ENTER_WINDOW, -1, -1, (wxObjectEventFunction) (wxEventFunction) (wxMouseEventFunction) & func, (wxObject *) NULL },\
1879 { wxEVT_LEAVE_WINDOW, -1, -1, (wxObjectEventFunction) (wxEventFunction) (wxMouseEventFunction) & func, (wxObject *) NULL },
1880
1881 // EVT_COMMAND
1882 #define EVT_COMMAND(id, event, fn) { event, id, -1, (wxObjectEventFunction) (wxEventFunction) (wxCommandEventFunction) & fn, (wxObject *) NULL },
1883 #define EVT_COMMAND_RANGE(id1, id2, event, fn) { event, id1, id2, (wxObjectEventFunction) (wxEventFunction) (wxCommandEventFunction) & fn, (wxObject *) NULL },
1884
1885 // Scrolling from wxWindow (sent to wxScrolledWindow)
1886 #define EVT_SCROLLWIN(func) \
1887 { wxEVT_SCROLLWIN_TOP, -1, -1, (wxObjectEventFunction) (wxEventFunction) (wxScrollWinEventFunction) & func, (wxObject *) NULL },\
1888 { wxEVT_SCROLLWIN_BOTTOM, -1, -1, (wxObjectEventFunction) (wxEventFunction) (wxScrollWinEventFunction) & func, (wxObject *) NULL },\
1889 { wxEVT_SCROLLWIN_LINEUP, -1, -1, (wxObjectEventFunction) (wxEventFunction) (wxScrollWinEventFunction) & func, (wxObject *) NULL },\
1890 { wxEVT_SCROLLWIN_LINEDOWN, -1, -1, (wxObjectEventFunction) (wxEventFunction) (wxScrollWinEventFunction) & func, (wxObject *) NULL },\
1891 { wxEVT_SCROLLWIN_PAGEUP, -1, -1, (wxObjectEventFunction) (wxEventFunction) (wxScrollWinEventFunction) & func, (wxObject *) NULL },\
1892 { wxEVT_SCROLLWIN_PAGEDOWN, -1, -1, (wxObjectEventFunction) (wxEventFunction) (wxScrollWinEventFunction) & func, (wxObject *) NULL },\
1893 { wxEVT_SCROLLWIN_THUMBTRACK, -1, -1, (wxObjectEventFunction) (wxEventFunction) (wxScrollWinEventFunction) & func, (wxObject *) NULL },\
1894 { wxEVT_SCROLLWIN_THUMBRELEASE, -1, -1, (wxObjectEventFunction) (wxEventFunction) (wxScrollWinEventFunction) & func, (wxObject *) NULL },
1895
1896 #define EVT_SCROLLWIN_TOP(func) { wxEVT_SCROLLWIN_TOP, -1, -1, (wxObjectEventFunction) (wxEventFunction) (wxScrollWinEventFunction) & func, (wxObject *) NULL },
1897 #define EVT_SCROLLWIN_BOTTOM(func) { wxEVT_SCROLLWIN_BOTTOM, -1, -1, (wxObjectEventFunction) (wxEventFunction) (wxScrollWinEventFunction) & func, (wxObject *) NULL },
1898 #define EVT_SCROLLWIN_LINEUP(func) { wxEVT_SCROLLWIN_LINEUP, -1, -1, (wxObjectEventFunction) (wxEventFunction) (wxScrollWinEventFunction) & func, (wxObject *) NULL },
1899 #define EVT_SCROLLWIN_LINEDOWN(func) { wxEVT_SCROLLWIN_LINEDOWN, -1, -1, (wxObjectEventFunction) (wxEventFunction) (wxScrollWinEventFunction) & func, (wxObject *) NULL },
1900 #define EVT_SCROLLWIN_PAGEUP(func) { wxEVT_SCROLLWIN_PAGEUP, -1, -1, (wxObjectEventFunction) (wxEventFunction) (wxScrollWinEventFunction) & func, (wxObject *) NULL },
1901 #define EVT_SCROLLWIN_PAGEDOWN(func) { wxEVT_SCROLLWIN_PAGEDOWN, -1, -1, (wxObjectEventFunction) (wxEventFunction) (wxScrollWinEventFunction) & func, (wxObject *) NULL },
1902 #define EVT_SCROLLWIN_THUMBTRACK(func) { wxEVT_SCROLLWIN_THUMBTRACK, -1, -1, (wxObjectEventFunction) (wxEventFunction) (wxScrollWinEventFunction) & func, (wxObject *) NULL },
1903 #define EVT_SCROLLWIN_THUMBRELEASE(func) { wxEVT_SCROLLWIN_THUMBRELEASE, -1, -1, (wxObjectEventFunction) (wxEventFunction) (wxScrollWinEventFunction) & func, (wxObject *) NULL },
1904
1905 // Scrolling from wxSlider and wxScrollBar
1906 #define EVT_SCROLL(func) \
1907 { wxEVT_SCROLL_TOP, -1, -1, (wxObjectEventFunction) (wxEventFunction) (wxScrollEventFunction) & func, (wxObject *) NULL },\
1908 { wxEVT_SCROLL_BOTTOM, -1, -1, (wxObjectEventFunction) (wxEventFunction) (wxScrollEventFunction) & func, (wxObject *) NULL },\
1909 { wxEVT_SCROLL_LINEUP, -1, -1, (wxObjectEventFunction) (wxEventFunction) (wxScrollEventFunction) & func, (wxObject *) NULL },\
1910 { wxEVT_SCROLL_LINEDOWN, -1, -1, (wxObjectEventFunction) (wxEventFunction) (wxScrollEventFunction) & func, (wxObject *) NULL },\
1911 { wxEVT_SCROLL_PAGEUP, -1, -1, (wxObjectEventFunction) (wxEventFunction) (wxScrollEventFunction) & func, (wxObject *) NULL },\
1912 { wxEVT_SCROLL_PAGEDOWN, -1, -1, (wxObjectEventFunction) (wxEventFunction) (wxScrollEventFunction) & func, (wxObject *) NULL },\
1913 { wxEVT_SCROLL_THUMBTRACK, -1, -1, (wxObjectEventFunction) (wxEventFunction) (wxScrollEventFunction) & func, (wxObject *) NULL },\
1914 { wxEVT_SCROLL_THUMBRELEASE, -1, -1, (wxObjectEventFunction) (wxEventFunction) (wxScrollEventFunction) & func, (wxObject *) NULL },
1915
1916 #define EVT_SCROLL_TOP(func) { wxEVT_SCROLL_TOP, -1, -1, (wxObjectEventFunction) (wxEventFunction) (wxScrollEventFunction) & func, (wxObject *) NULL },
1917 #define EVT_SCROLL_BOTTOM(func) { wxEVT_SCROLL_BOTTOM, -1, -1, (wxObjectEventFunction) (wxEventFunction) (wxScrollEventFunction) & func, (wxObject *) NULL },
1918 #define EVT_SCROLL_LINEUP(func) { wxEVT_SCROLL_LINEUP, -1, -1, (wxObjectEventFunction) (wxEventFunction) (wxScrollEventFunction) & func, (wxObject *) NULL },
1919 #define EVT_SCROLL_LINEDOWN(func) { wxEVT_SCROLL_LINEDOWN, -1, -1, (wxObjectEventFunction) (wxEventFunction) (wxScrollEventFunction) & func, (wxObject *) NULL },
1920 #define EVT_SCROLL_PAGEUP(func) { wxEVT_SCROLL_PAGEUP, -1, -1, (wxObjectEventFunction) (wxEventFunction) (wxScrollEventFunction) & func, (wxObject *) NULL },
1921 #define EVT_SCROLL_PAGEDOWN(func) { wxEVT_SCROLL_PAGEDOWN, -1, -1, (wxObjectEventFunction) (wxEventFunction) (wxScrollEventFunction) & func, (wxObject *) NULL },
1922 #define EVT_SCROLL_THUMBTRACK(func) { wxEVT_SCROLL_THUMBTRACK, -1, -1, (wxObjectEventFunction) (wxEventFunction) (wxScrollEventFunction) & func, (wxObject *) NULL },
1923 #define EVT_SCROLL_THUMBRELEASE(func) { wxEVT_SCROLL_THUMBRELEASE, -1, -1, (wxObjectEventFunction) (wxEventFunction) (wxScrollEventFunction) & func, (wxObject *) NULL },
1924
1925 // Scrolling from wxSlider and wxScrollBar, with an id
1926 #define EVT_COMMAND_SCROLL(id, func) \
1927 { wxEVT_SCROLL_TOP, id, -1, (wxObjectEventFunction) (wxEventFunction) (wxScrollEventFunction) & func, (wxObject *) NULL },\
1928 { wxEVT_SCROLL_BOTTOM, id, -1, (wxObjectEventFunction) (wxEventFunction) (wxScrollEventFunction) & func, (wxObject *) NULL },\
1929 { wxEVT_SCROLL_LINEUP, id, -1, (wxObjectEventFunction) (wxEventFunction) (wxScrollEventFunction) & func, (wxObject *) NULL },\
1930 { wxEVT_SCROLL_LINEDOWN, id, -1, (wxObjectEventFunction) (wxEventFunction) (wxScrollEventFunction) & func, (wxObject *) NULL },\
1931 { wxEVT_SCROLL_PAGEUP, id, -1, (wxObjectEventFunction) (wxEventFunction) (wxScrollEventFunction) & func, (wxObject *) NULL },\
1932 { wxEVT_SCROLL_PAGEDOWN, id, -1, (wxObjectEventFunction) (wxEventFunction) (wxScrollEventFunction) & func, (wxObject *) NULL },\
1933 { wxEVT_SCROLL_THUMBTRACK, id, -1, (wxObjectEventFunction) (wxEventFunction) (wxScrollEventFunction) & func, (wxObject *) NULL },\
1934 { wxEVT_SCROLL_THUMBRELEASE, id, -1, (wxObjectEventFunction) (wxEventFunction) (wxScrollEventFunction) & func, (wxObject *) NULL },
1935
1936 #define EVT_COMMAND_SCROLL_TOP(id, func) { wxEVT_SCROLL_TOP, id, -1, (wxObjectEventFunction) (wxEventFunction) (wxScrollEventFunction) & func, (wxObject *) NULL },
1937 #define EVT_COMMAND_SCROLL_BOTTOM(id, func) { wxEVT_SCROLL_BOTTOM, id, -1, (wxObjectEventFunction) (wxEventFunction) (wxScrollEventFunction) & func, (wxObject *) NULL },
1938 #define EVT_COMMAND_SCROLL_LINEUP(id, func) { wxEVT_SCROLL_LINEUP, id, -1, (wxObjectEventFunction) (wxEventFunction) (wxScrollEventFunction) & func, (wxObject *) NULL },
1939 #define EVT_COMMAND_SCROLL_LINEDOWN(id, func) { wxEVT_SCROLL_LINEDOWN, id, -1, (wxObjectEventFunction) (wxEventFunction) (wxScrollEventFunction) & func, (wxObject *) NULL },
1940 #define EVT_COMMAND_SCROLL_PAGEUP(id, func) { wxEVT_SCROLL_PAGEUP, id, -1, (wxObjectEventFunction) (wxEventFunction) (wxScrollEventFunction) & func, (wxObject *) NULL },
1941 #define EVT_COMMAND_SCROLL_PAGEDOWN(id, func) { wxEVT_SCROLL_PAGEDOWN, id, -1, (wxObjectEventFunction) (wxEventFunction) (wxScrollEventFunction) & func, (wxObject *) NULL },
1942 #define EVT_COMMAND_SCROLL_THUMBTRACK(id, func) { wxEVT_SCROLL_THUMBTRACK, id, -1, (wxObjectEventFunction) (wxEventFunction) (wxScrollEventFunction) & func, (wxObject *) NULL },
1943 #define EVT_COMMAND_SCROLL_THUMBRELEASE(id, func) { wxEVT_SCROLL_THUMBRELEASE, id, -1, (wxObjectEventFunction) (wxEventFunction) (wxScrollEventFunction) & func, (wxObject *) NULL },
1944
1945 // Convenience macros for commonly-used commands
1946 #define EVT_BUTTON(id, fn) { wxEVT_COMMAND_BUTTON_CLICKED, id, -1, (wxObjectEventFunction) (wxEventFunction) (wxCommandEventFunction) & fn, (wxObject *) NULL },
1947 #define EVT_CHECKBOX(id, fn) { wxEVT_COMMAND_CHECKBOX_CLICKED, id, -1, (wxObjectEventFunction) (wxEventFunction) (wxCommandEventFunction) & fn, (wxObject *) NULL },
1948 #define EVT_CHOICE(id, fn) { wxEVT_COMMAND_CHOICE_SELECTED, id, -1, (wxObjectEventFunction) (wxEventFunction) (wxCommandEventFunction) & fn, (wxObject *) NULL },
1949 #define EVT_LISTBOX(id, fn) { wxEVT_COMMAND_LISTBOX_SELECTED, id, -1, (wxObjectEventFunction) (wxEventFunction) (wxCommandEventFunction) & fn, (wxObject *) NULL },
1950 #define EVT_LISTBOX_DCLICK(id, fn) { wxEVT_COMMAND_LISTBOX_DOUBLECLICKED, id, -1, (wxObjectEventFunction) (wxEventFunction) (wxCommandEventFunction) & fn, (wxObject *) NULL },
1951 #define EVT_TEXT(id, fn) { wxEVT_COMMAND_TEXT_UPDATED, id, -1, (wxObjectEventFunction) (wxEventFunction) (wxCommandEventFunction) & fn, (wxObject *) NULL },
1952 #define EVT_TEXT_ENTER(id, fn) { wxEVT_COMMAND_TEXT_ENTER, id, -1, (wxObjectEventFunction) (wxEventFunction) (wxCommandEventFunction) & fn, (wxObject *) NULL },
1953 #define EVT_MENU(id, fn) { wxEVT_COMMAND_MENU_SELECTED, id, -1, (wxObjectEventFunction) (wxEventFunction) (wxCommandEventFunction) & fn, (wxObject *) NULL },
1954 #define EVT_MENU_RANGE(id1, id2, fn) { wxEVT_COMMAND_MENU_SELECTED, id1, id2, (wxObjectEventFunction) (wxEventFunction) (wxCommandEventFunction) & fn, (wxObject *) NULL },
1955 #define EVT_SLIDER(id, fn) { wxEVT_COMMAND_SLIDER_UPDATED, id, -1, (wxObjectEventFunction) (wxEventFunction) (wxCommandEventFunction) & fn, (wxObject *) NULL },
1956 #define EVT_RADIOBOX(id, fn) { wxEVT_COMMAND_RADIOBOX_SELECTED, id, -1, (wxObjectEventFunction) (wxEventFunction) (wxCommandEventFunction) & fn, (wxObject *) NULL },
1957 #define EVT_RADIOBUTTON(id, fn) { wxEVT_COMMAND_RADIOBUTTON_SELECTED, id, -1, (wxObjectEventFunction) (wxEventFunction) (wxCommandEventFunction) & fn, (wxObject *) NULL },
1958 // EVT_SCROLLBAR is now obsolete since we use EVT_COMMAND_SCROLL... events
1959 #define EVT_SCROLLBAR(id, fn) { wxEVT_COMMAND_SCROLLBAR_UPDATED, id, -1, (wxObjectEventFunction) (wxEventFunction) (wxCommandEventFunction) & fn, (wxObject *) NULL },
1960 #define EVT_VLBOX(id, fn) { wxEVT_COMMAND_VLBOX_SELECTED, id, -1, (wxObjectEventFunction) (wxEventFunction) (wxCommandEventFunction) & fn, (wxObject *) NULL },
1961 #define EVT_COMBOBOX(id, fn) { wxEVT_COMMAND_COMBOBOX_SELECTED, id, -1, (wxObjectEventFunction) (wxEventFunction) (wxCommandEventFunction) & fn, (wxObject *) NULL },
1962 #define EVT_TOOL(id, fn) { wxEVT_COMMAND_TOOL_CLICKED, id, -1, (wxObjectEventFunction) (wxEventFunction) (wxCommandEventFunction) & fn, (wxObject *) NULL },
1963 #define EVT_TOOL_RANGE(id1, id2, fn) { wxEVT_COMMAND_TOOL_CLICKED, id1, id2, (wxObjectEventFunction) (wxEventFunction) (wxCommandEventFunction) & fn, (wxObject *) NULL },
1964 #define EVT_TOOL_RCLICKED(id, fn) { wxEVT_COMMAND_TOOL_RCLICKED, id, -1, (wxObjectEventFunction) (wxEventFunction) (wxCommandEventFunction) & fn, (wxObject *) NULL },
1965 #define EVT_TOOL_RCLICKED_RANGE(id1, id2, fn) { wxEVT_COMMAND_TOOL_RCLICKED, id1, id2, (wxObjectEventFunction) (wxEventFunction) (wxCommandEventFunction) & fn, (wxObject *) NULL },
1966 #define EVT_TOOL_ENTER(id, fn) { wxEVT_COMMAND_TOOL_ENTER, id, -1, (wxObjectEventFunction) (wxEventFunction) (wxCommandEventFunction) & fn, (wxObject *) NULL },
1967 #define EVT_CHECKLISTBOX(id, fn) { wxEVT_COMMAND_CHECKLISTBOX_TOGGLED, id, -1, (wxObjectEventFunction) (wxEventFunction) (wxCommandEventFunction) & fn, (wxObject *) NULL },
1968
1969 // Generic command events
1970 #define EVT_COMMAND_LEFT_CLICK(id, fn) { wxEVT_COMMAND_LEFT_CLICK, id, -1, (wxObjectEventFunction) (wxEventFunction) (wxCommandEventFunction) & fn, (wxObject *) NULL },
1971 #define EVT_COMMAND_LEFT_DCLICK(id, fn) { wxEVT_COMMAND_LEFT_DCLICK, id, -1, (wxObjectEventFunction) (wxEventFunction) (wxCommandEventFunction) & fn, (wxObject *) NULL },
1972 #define EVT_COMMAND_RIGHT_CLICK(id, fn) { wxEVT_COMMAND_RIGHT_CLICK, id, -1, (wxObjectEventFunction) (wxEventFunction) (wxCommandEventFunction) & fn, (wxObject *) NULL },
1973 #define EVT_COMMAND_RIGHT_DCLICK(id, fn) { wxEVT_COMMAND_RIGHT_DCLICK, id, -1, (wxObjectEventFunction) (wxEventFunction) (wxCommandEventFunction) & fn, (wxObject *) NULL },
1974 #define EVT_COMMAND_SET_FOCUS(id, fn) { wxEVT_COMMAND_SET_FOCUS, id, -1, (wxObjectEventFunction) (wxEventFunction) (wxCommandEventFunction) & fn, (wxObject *) NULL },
1975 #define EVT_COMMAND_KILL_FOCUS(id, fn) { wxEVT_COMMAND_KILL_FOCUS, id, -1, (wxObjectEventFunction) (wxEventFunction) (wxCommandEventFunction) & fn, (wxObject *) NULL },
1976 #define EVT_COMMAND_ENTER(id, fn) { wxEVT_COMMAND_ENTER, id, -1, (wxObjectEventFunction) (wxEventFunction) (wxCommandEventFunction) & fn, (wxObject *) NULL },
1977
1978 // Joystick events
1979 #define EVT_JOY_DOWN(func) \
1980 { wxEVT_JOY_BUTTON_DOWN, -1, -1, (wxObjectEventFunction) (wxEventFunction) (wxJoystickEventFunction) & func, (wxObject *) NULL },
1981 #define EVT_JOY_UP(func) \
1982 { wxEVT_JOY_BUTTON_UP, -1, -1, (wxObjectEventFunction) (wxEventFunction) (wxJoystickEventFunction) & func, (wxObject *) NULL },
1983 #define EVT_JOY_MOVE(func) \
1984 { wxEVT_JOY_MOVE, -1, -1, (wxObjectEventFunction) (wxEventFunction) (wxJoystickEventFunction) & func, (wxObject *) NULL },
1985 #define EVT_JOY_ZMOVE(func) \
1986 { wxEVT_JOY_ZMOVE, -1, -1, (wxObjectEventFunction) (wxEventFunction) (wxJoystickEventFunction) & func, (wxObject *) NULL },
1987
1988 // All joystick events
1989 #define EVT_JOYSTICK_EVENTS(func) \
1990 { wxEVT_JOY_BUTTON_DOWN, -1, -1, (wxObjectEventFunction) (wxEventFunction) (wxJoystickEventFunction) & func, (wxObject *) NULL },\
1991 { wxEVT_JOY_BUTTON_UP, -1, -1, (wxObjectEventFunction) (wxEventFunction) (wxJoystickEventFunction) & func, (wxObject *) NULL },\
1992 { wxEVT_JOY_MOVE, -1, -1, (wxObjectEventFunction) (wxEventFunction) (wxJoystickEventFunction) & func, (wxObject *) NULL },\
1993 { wxEVT_JOY_ZMOVE, -1, -1, (wxObjectEventFunction) (wxEventFunction) (wxJoystickEventFunction) & func, (wxObject *) NULL },\
1994
1995 // Idle event
1996 #define EVT_IDLE(func) \
1997 { wxEVT_IDLE, -1, -1, (wxObjectEventFunction) (wxEventFunction) (wxIdleEventFunction) & func, (wxObject *) NULL },\
1998
1999 // Update UI event
2000 #define EVT_UPDATE_UI(id, func) \
2001 { wxEVT_UPDATE_UI, id, -1, (wxObjectEventFunction) (wxEventFunction) (wxUpdateUIEventFunction) & func, (wxObject *) NULL },\
2002
2003 // ----------------------------------------------------------------------------
2004 // Global data
2005 // ----------------------------------------------------------------------------
2006
2007 // for pending event processing - notice that there is intentionally no
2008 // WXDLLEXPORT here
2009 extern wxList *wxPendingEvents;
2010 #if wxUSE_THREADS
2011 extern wxCriticalSection *wxPendingEventsLocker;
2012 #endif
2013
2014 // ----------------------------------------------------------------------------
2015 // Helper functions
2016 // ----------------------------------------------------------------------------
2017
2018 #if wxUSE_GUI
2019
2020 // Find a window with the focus, that is also a descendant of the given window.
2021 // This is used to determine the window to initially send commands to.
2022 wxWindow* wxFindFocusDescendant(wxWindow* ancestor);
2023
2024 #endif // wxUSE_GUI
2025
2026 #endif
2027 // _WX_EVENTH__