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