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