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