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