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