renamed WXDLLEXPORT_BASE/CORE to WXDLLIMPEXP_BASE/CORE
[wxWidgets.git] / include / wx / event.h
1 /////////////////////////////////////////////////////////////////////////////
2 // Name: wx/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) wxWindows team
9 // Licence: wxWindows licence
10 /////////////////////////////////////////////////////////////////////////////
11
12 #ifndef _WX_EVENTH__
13 #define _WX_EVENTH__
14
15 #if defined(__GNUG__) && !defined(__APPLE__)
16 #pragma interface "event.h"
17 #endif
18
19 #include "wx/defs.h"
20 #include "wx/object.h"
21 #include "wx/clntdata.h"
22
23 #if wxUSE_GUI
24 #include "wx/gdicmn.h"
25 #include "wx/cursor.h"
26 #endif
27
28 #include "wx/thread.h"
29
30 // ----------------------------------------------------------------------------
31 // forward declarations
32 // ----------------------------------------------------------------------------
33
34 class WXDLLIMPEXP_BASE wxList;
35
36 #if wxUSE_GUI
37 class WXDLLIMPEXP_CORE wxDC;
38 class WXDLLIMPEXP_CORE wxMenu;
39 class WXDLLIMPEXP_CORE wxWindow;
40 #endif // wxUSE_GUI
41
42 // ----------------------------------------------------------------------------
43 // Event types
44 // ----------------------------------------------------------------------------
45
46 typedef int wxEventType;
47
48 // in previous versions of wxWindows the event types used to be constants
49 // which created difficulties with custom/user event types definition
50 //
51 // starting from wxWindows 2.4 the event types are now dynamically assigned
52 // using wxNewEventType() which solves this problem, however at price of
53 // several incompatibilities:
54 //
55 // a) event table macros declaration changed, it now uses wxEventTableEntry
56 // ctor instead of initialisation from an agregate - the macro
57 // DECLARE_EVENT_TABLE_ENTRY may be used to write code which can compile
58 // with all versions of wxWindows
59 //
60 // b) event types can't be used as switch() cases as they're not really
61 // constant any more - there is no magic solution here, you just have to
62 // change the switch()es to if()s
63 //
64 // if these are real problems for you, define WXWIN_COMPATIBILITY_EVENT_TYPES
65 // to get 100% old behaviour, however you won't be able to use the libraries
66 // using the new dynamic event type allocation in such case, so avoid it if
67 // possible.
68
69 #if WXWIN_COMPATIBILITY_EVENT_TYPES
70
71 #define DECLARE_EVENT_TABLE_ENTRY(type, winid, idLast, fn, obj) \
72 { type, winid, idLast, fn, obj }
73
74 #define BEGIN_DECLARE_EVENT_TYPES() enum {
75 #define END_DECLARE_EVENT_TYPES() };
76 #define DECLARE_EVENT_TYPE(name, value) name = wxEVT_FIRST + value,
77 #define DECLARE_LOCAL_EVENT_TYPE(name, value) name = wxEVT_USER_FIRST + value,
78 #define DECLARE_EXPORTED_EVENT_TYPE(expdecl, name, value) \
79 DECLARE_LOCAL_EVENT_TYPE(name, value)
80 #define DEFINE_EVENT_TYPE(name)
81 #define DEFINE_LOCAL_EVENT_TYPE(name)
82
83
84 #else // !WXWIN_COMPATIBILITY_EVENT_TYPES
85
86 #define DECLARE_EVENT_TABLE_ENTRY(type, winid, idLast, fn, obj) \
87 wxEventTableEntry(type, winid, idLast, fn, obj)
88
89 #define BEGIN_DECLARE_EVENT_TYPES()
90 #define END_DECLARE_EVENT_TYPES()
91 #define DECLARE_EXPORTED_EVENT_TYPE(expdecl, name, value) \
92 extern expdecl const wxEventType name;
93 #define DECLARE_EVENT_TYPE(name, value) \
94 DECLARE_EXPORTED_EVENT_TYPE(WXDLLIMPEXP_CORE, name, value)
95 #define DECLARE_LOCAL_EVENT_TYPE(name, value) \
96 DECLARE_EXPORTED_EVENT_TYPE(/* */, name, value)
97 #define DEFINE_EVENT_TYPE(name) const wxEventType name = wxNewEventType();
98 #define DEFINE_LOCAL_EVENT_TYPE(name) DEFINE_EVENT_TYPE(name)
99
100 // generate a new unique event type
101 extern WXDLLIMPEXP_BASE wxEventType wxNewEventType();
102
103 #endif // WXWIN_COMPATIBILITY_EVENT_TYPES/!WXWIN_COMPATIBILITY_EVENT_TYPES
104
105 BEGIN_DECLARE_EVENT_TYPES()
106
107 #if WXWIN_COMPATIBILITY_EVENT_TYPES
108 wxEVT_NULL = 0,
109 wxEVT_FIRST = 10000,
110 wxEVT_USER_FIRST = wxEVT_FIRST + 2000,
111 #else // !WXWIN_COMPATIBILITY_EVENT_TYPES
112 // it is important to still have these as constants to avoid
113 // initialization order related problems
114 DECLARE_EXPORTED_EVENT_TYPE(WXDLLIMPEXP_BASE, wxEVT_NULL, 0)
115 DECLARE_EXPORTED_EVENT_TYPE(WXDLLIMPEXP_BASE, wxEVT_FIRST, 10000)
116 DECLARE_EXPORTED_EVENT_TYPE(WXDLLIMPEXP_BASE, wxEVT_USER_FIRST, wxEVT_FIRST + 2000)
117 #endif // WXWIN_COMPATIBILITY_EVENT_TYPES/!WXWIN_COMPATIBILITY_EVENT_TYPES
118
119 DECLARE_EVENT_TYPE(wxEVT_COMMAND_BUTTON_CLICKED, 1)
120 DECLARE_EVENT_TYPE(wxEVT_COMMAND_CHECKBOX_CLICKED, 2)
121 DECLARE_EVENT_TYPE(wxEVT_COMMAND_CHOICE_SELECTED, 3)
122 DECLARE_EVENT_TYPE(wxEVT_COMMAND_LISTBOX_SELECTED, 4)
123 DECLARE_EVENT_TYPE(wxEVT_COMMAND_LISTBOX_DOUBLECLICKED, 5)
124 DECLARE_EVENT_TYPE(wxEVT_COMMAND_CHECKLISTBOX_TOGGLED, 6)
125 // now they are in wx/textctrl.h
126 #if WXWIN_COMPATIBILITY_EVENT_TYPES
127 DECLARE_EVENT_TYPE(wxEVT_COMMAND_TEXT_UPDATED, 7)
128 DECLARE_EVENT_TYPE(wxEVT_COMMAND_TEXT_ENTER, 8)
129 DECLARE_EVENT_TYPE(wxEVT_COMMAND_TEXT_URL, 13)
130 DECLARE_EVENT_TYPE(wxEVT_COMMAND_TEXT_MAXLEN, 14)
131 #endif // WXWIN_COMPATIBILITY_EVENT_TYPES
132 DECLARE_EVENT_TYPE(wxEVT_COMMAND_MENU_SELECTED, 9)
133 DECLARE_EVENT_TYPE(wxEVT_COMMAND_SLIDER_UPDATED, 10)
134 DECLARE_EVENT_TYPE(wxEVT_COMMAND_RADIOBOX_SELECTED, 11)
135 DECLARE_EVENT_TYPE(wxEVT_COMMAND_RADIOBUTTON_SELECTED, 12)
136
137 // wxEVT_COMMAND_SCROLLBAR_UPDATED is now obsolete since we use
138 // wxEVT_SCROLL... events
139
140 DECLARE_EVENT_TYPE(wxEVT_COMMAND_SCROLLBAR_UPDATED, 13)
141 DECLARE_EVENT_TYPE(wxEVT_COMMAND_VLBOX_SELECTED, 14)
142 DECLARE_EVENT_TYPE(wxEVT_COMMAND_COMBOBOX_SELECTED, 15)
143 DECLARE_EVENT_TYPE(wxEVT_COMMAND_TOOL_RCLICKED, 16)
144 DECLARE_EVENT_TYPE(wxEVT_COMMAND_TOOL_ENTER, 17)
145 DECLARE_EVENT_TYPE(wxEVT_COMMAND_SPINCTRL_UPDATED, 18)
146
147 // Sockets and timers send events, too
148 DECLARE_EXPORTED_EVENT_TYPE(WXDLLIMPEXP_BASE, wxEVT_SOCKET, 50)
149 DECLARE_EVENT_TYPE(wxEVT_TIMER , 80)
150
151 // Mouse event types
152 DECLARE_EVENT_TYPE(wxEVT_LEFT_DOWN, 100)
153 DECLARE_EVENT_TYPE(wxEVT_LEFT_UP, 101)
154 DECLARE_EVENT_TYPE(wxEVT_MIDDLE_DOWN, 102)
155 DECLARE_EVENT_TYPE(wxEVT_MIDDLE_UP, 103)
156 DECLARE_EVENT_TYPE(wxEVT_RIGHT_DOWN, 104)
157 DECLARE_EVENT_TYPE(wxEVT_RIGHT_UP, 105)
158 DECLARE_EVENT_TYPE(wxEVT_MOTION, 106)
159 DECLARE_EVENT_TYPE(wxEVT_ENTER_WINDOW, 107)
160 DECLARE_EVENT_TYPE(wxEVT_LEAVE_WINDOW, 108)
161 DECLARE_EVENT_TYPE(wxEVT_LEFT_DCLICK, 109)
162 DECLARE_EVENT_TYPE(wxEVT_MIDDLE_DCLICK, 110)
163 DECLARE_EVENT_TYPE(wxEVT_RIGHT_DCLICK, 111)
164 DECLARE_EVENT_TYPE(wxEVT_SET_FOCUS, 112)
165 DECLARE_EVENT_TYPE(wxEVT_KILL_FOCUS, 113)
166 DECLARE_EVENT_TYPE(wxEVT_CHILD_FOCUS, 114)
167 DECLARE_EVENT_TYPE(wxEVT_MOUSEWHEEL, 115)
168
169 // Non-client mouse events
170 DECLARE_EVENT_TYPE(wxEVT_NC_LEFT_DOWN, 200)
171 DECLARE_EVENT_TYPE(wxEVT_NC_LEFT_UP, 201)
172 DECLARE_EVENT_TYPE(wxEVT_NC_MIDDLE_DOWN, 202)
173 DECLARE_EVENT_TYPE(wxEVT_NC_MIDDLE_UP, 203)
174 DECLARE_EVENT_TYPE(wxEVT_NC_RIGHT_DOWN, 204)
175 DECLARE_EVENT_TYPE(wxEVT_NC_RIGHT_UP, 205)
176 DECLARE_EVENT_TYPE(wxEVT_NC_MOTION, 206)
177 DECLARE_EVENT_TYPE(wxEVT_NC_ENTER_WINDOW, 207)
178 DECLARE_EVENT_TYPE(wxEVT_NC_LEAVE_WINDOW, 208)
179 DECLARE_EVENT_TYPE(wxEVT_NC_LEFT_DCLICK, 209)
180 DECLARE_EVENT_TYPE(wxEVT_NC_MIDDLE_DCLICK, 210)
181 DECLARE_EVENT_TYPE(wxEVT_NC_RIGHT_DCLICK, 211)
182
183 // Character input event type
184 DECLARE_EVENT_TYPE(wxEVT_CHAR, 212)
185 DECLARE_EVENT_TYPE(wxEVT_CHAR_HOOK, 213)
186 DECLARE_EVENT_TYPE(wxEVT_NAVIGATION_KEY, 214)
187 DECLARE_EVENT_TYPE(wxEVT_KEY_DOWN, 215)
188 DECLARE_EVENT_TYPE(wxEVT_KEY_UP, 216)
189
190 // Set cursor event
191 DECLARE_EVENT_TYPE(wxEVT_SET_CURSOR, 230)
192
193 // wxScrollBar and wxSlider event identifiers
194 DECLARE_EVENT_TYPE(wxEVT_SCROLL_TOP, 300)
195 DECLARE_EVENT_TYPE(wxEVT_SCROLL_BOTTOM, 301)
196 DECLARE_EVENT_TYPE(wxEVT_SCROLL_LINEUP, 302)
197 DECLARE_EVENT_TYPE(wxEVT_SCROLL_LINEDOWN, 303)
198 DECLARE_EVENT_TYPE(wxEVT_SCROLL_PAGEUP, 304)
199 DECLARE_EVENT_TYPE(wxEVT_SCROLL_PAGEDOWN, 305)
200 DECLARE_EVENT_TYPE(wxEVT_SCROLL_THUMBTRACK, 306)
201 DECLARE_EVENT_TYPE(wxEVT_SCROLL_THUMBRELEASE, 307)
202 DECLARE_EVENT_TYPE(wxEVT_SCROLL_ENDSCROLL, 308)
203
204 // Scroll events from wxWindow
205 DECLARE_EVENT_TYPE(wxEVT_SCROLLWIN_TOP, 320)
206 DECLARE_EVENT_TYPE(wxEVT_SCROLLWIN_BOTTOM, 321)
207 DECLARE_EVENT_TYPE(wxEVT_SCROLLWIN_LINEUP, 322)
208 DECLARE_EVENT_TYPE(wxEVT_SCROLLWIN_LINEDOWN, 323)
209 DECLARE_EVENT_TYPE(wxEVT_SCROLLWIN_PAGEUP, 324)
210 DECLARE_EVENT_TYPE(wxEVT_SCROLLWIN_PAGEDOWN, 325)
211 DECLARE_EVENT_TYPE(wxEVT_SCROLLWIN_THUMBTRACK, 326)
212 DECLARE_EVENT_TYPE(wxEVT_SCROLLWIN_THUMBRELEASE, 327)
213
214 // System events
215 DECLARE_EVENT_TYPE(wxEVT_SIZE, 400)
216 DECLARE_EVENT_TYPE(wxEVT_MOVE, 401)
217 DECLARE_EVENT_TYPE(wxEVT_CLOSE_WINDOW, 402)
218 DECLARE_EVENT_TYPE(wxEVT_END_SESSION, 403)
219 DECLARE_EVENT_TYPE(wxEVT_QUERY_END_SESSION, 404)
220 DECLARE_EVENT_TYPE(wxEVT_ACTIVATE_APP, 405)
221 DECLARE_EVENT_TYPE(wxEVT_POWER, 406)
222 DECLARE_EVENT_TYPE(wxEVT_ACTIVATE, 409)
223 DECLARE_EVENT_TYPE(wxEVT_CREATE, 410)
224 DECLARE_EVENT_TYPE(wxEVT_DESTROY, 411)
225 DECLARE_EVENT_TYPE(wxEVT_SHOW, 412)
226 DECLARE_EVENT_TYPE(wxEVT_ICONIZE, 413)
227 DECLARE_EVENT_TYPE(wxEVT_MAXIMIZE, 414)
228 DECLARE_EVENT_TYPE(wxEVT_MOUSE_CAPTURE_CHANGED, 415)
229 DECLARE_EVENT_TYPE(wxEVT_PAINT, 416)
230 DECLARE_EVENT_TYPE(wxEVT_ERASE_BACKGROUND, 417)
231 DECLARE_EVENT_TYPE(wxEVT_NC_PAINT, 418)
232 DECLARE_EVENT_TYPE(wxEVT_PAINT_ICON, 419)
233 DECLARE_EVENT_TYPE(wxEVT_MENU_OPEN, 420)
234 DECLARE_EVENT_TYPE(wxEVT_MENU_CLOSE, 421)
235 DECLARE_EVENT_TYPE(wxEVT_MENU_HIGHLIGHT, 422)
236 // DECLARE_EVENT_TYPE(wxEVT_POPUP_MENU_INIT, 423) -- free slot
237 DECLARE_EVENT_TYPE(wxEVT_CONTEXT_MENU, 424)
238 DECLARE_EVENT_TYPE(wxEVT_SYS_COLOUR_CHANGED, 425)
239 DECLARE_EVENT_TYPE(wxEVT_DISPLAY_CHANGED, 426)
240 DECLARE_EVENT_TYPE(wxEVT_SETTING_CHANGED, 427)
241 DECLARE_EVENT_TYPE(wxEVT_QUERY_NEW_PALETTE, 428)
242 DECLARE_EVENT_TYPE(wxEVT_PALETTE_CHANGED, 429)
243 DECLARE_EVENT_TYPE(wxEVT_JOY_BUTTON_DOWN, 430)
244 DECLARE_EVENT_TYPE(wxEVT_JOY_BUTTON_UP, 431)
245 DECLARE_EVENT_TYPE(wxEVT_JOY_MOVE, 432)
246 DECLARE_EVENT_TYPE(wxEVT_JOY_ZMOVE, 433)
247 DECLARE_EVENT_TYPE(wxEVT_DROP_FILES, 434)
248 DECLARE_EVENT_TYPE(wxEVT_DRAW_ITEM, 435)
249 DECLARE_EVENT_TYPE(wxEVT_MEASURE_ITEM, 436)
250 DECLARE_EVENT_TYPE(wxEVT_COMPARE_ITEM, 437)
251 DECLARE_EVENT_TYPE(wxEVT_INIT_DIALOG, 438)
252 DECLARE_EXPORTED_EVENT_TYPE(WXDLLIMPEXP_BASE, wxEVT_IDLE, 439)
253 DECLARE_EVENT_TYPE(wxEVT_UPDATE_UI, 440)
254 DECLARE_EVENT_TYPE(wxEVT_SIZING, 441)
255 DECLARE_EVENT_TYPE(wxEVT_MOVING, 4442)
256
257 // Generic command events
258 // Note: a click is a higher-level event than button down/up
259 DECLARE_EVENT_TYPE(wxEVT_COMMAND_LEFT_CLICK, 500)
260 DECLARE_EVENT_TYPE(wxEVT_COMMAND_LEFT_DCLICK, 501)
261 DECLARE_EVENT_TYPE(wxEVT_COMMAND_RIGHT_CLICK, 502)
262 DECLARE_EVENT_TYPE(wxEVT_COMMAND_RIGHT_DCLICK, 503)
263 DECLARE_EVENT_TYPE(wxEVT_COMMAND_SET_FOCUS, 504)
264 DECLARE_EVENT_TYPE(wxEVT_COMMAND_KILL_FOCUS, 505)
265 DECLARE_EVENT_TYPE(wxEVT_COMMAND_ENTER, 506)
266
267 // Help events
268 DECLARE_EVENT_TYPE(wxEVT_HELP, 1050)
269 DECLARE_EVENT_TYPE(wxEVT_DETAILED_HELP, 1051)
270
271 END_DECLARE_EVENT_TYPES()
272
273 // these 2 events are the same
274 #define wxEVT_COMMAND_TOOL_CLICKED wxEVT_COMMAND_MENU_SELECTED
275
276 // ----------------------------------------------------------------------------
277 // Compatibility
278 // ----------------------------------------------------------------------------
279
280 // this event is also used by wxComboBox and wxSpinCtrl which don't include
281 // wx/textctrl.h in all ports [yet], so declare it here as well
282 //
283 // still, any new code using it should include wx/textctrl.h explicitly
284 #if !WXWIN_COMPATIBILITY_EVENT_TYPES
285 extern const wxEventType WXDLLIMPEXP_CORE wxEVT_COMMAND_TEXT_UPDATED;
286 #endif
287
288 #if WXWIN_COMPATIBILITY
289
290 #define wxEVENT_TYPE_BUTTON_COMMAND wxEVT_COMMAND_BUTTON_CLICKED
291 #define wxEVENT_TYPE_CHECKBOX_COMMAND wxEVT_COMMAND_CHECKBOX_CLICKED
292 #define wxEVENT_TYPE_CHOICE_COMMAND wxEVT_COMMAND_CHOICE_SELECTED
293 #define wxEVENT_TYPE_LISTBOX_COMMAND wxEVT_COMMAND_LISTBOX_SELECTED
294 #define wxEVENT_TYPE_LISTBOX_DCLICK_COMMAND wxEVT_COMMAND_LISTBOX_DOUBLECLICKED
295 #define wxEVENT_TYPE_TEXT_COMMAND wxEVT_COMMAND_TEXT_UPDATED
296 #define wxEVENT_TYPE_MULTITEXT_COMMAND wxEVT_COMMAND_TEXT_UPDATED
297 #define wxEVENT_TYPE_MENU_COMMAND wxEVT_COMMAND_MENU_SELECTED
298 #define wxEVENT_TYPE_SLIDER_COMMAND wxEVT_COMMAND_SLIDER_UPDATED
299 #define wxEVENT_TYPE_RADIOBOX_COMMAND wxEVT_COMMAND_RADIOBOX_SELECTED
300 #define wxEVENT_TYPE_RADIOBUTTON_COMMAND wxEVT_COMMAND_RADIOBUTTON_SELECTED
301 #define wxEVENT_TYPE_TEXT_ENTER_COMMAND wxEVT_COMMAND_TEXT_ENTER
302 #define wxEVENT_TYPE_SET_FOCUS wxEVT_SET_FOCUS
303 #define wxEVENT_TYPE_KILL_FOCUS wxEVT_KILL_FOCUS
304 #define wxEVENT_TYPE_SCROLLBAR_COMMAND wxEVT_COMMAND_SCROLLBAR_UPDATED
305 #define wxEVENT_TYPE_VIRT_LISTBOX_COMMAND wxEVT_COMMAND_VLBOX_SELECTED
306 #define wxEVENT_TYPE_COMBOBOX_COMMAND wxEVT_COMMAND_COMBOBOX_SELECTED
307
308 #define wxEVENT_TYPE_LEFT_DOWN wxEVT_LEFT_DOWN
309 #define wxEVENT_TYPE_LEFT_UP wxEVT_LEFT_UP
310 #define wxEVENT_TYPE_MIDDLE_DOWN wxEVT_MIDDLE_DOWN
311 #define wxEVENT_TYPE_MIDDLE_UP wxEVT_MIDDLE_UP
312 #define wxEVENT_TYPE_RIGHT_DOWN wxEVT_RIGHT_DOWN
313 #define wxEVENT_TYPE_RIGHT_UP wxEVT_RIGHT_UP
314 #define wxEVENT_TYPE_MOTION wxEVT_MOTION
315 #define wxEVENT_TYPE_ENTER_WINDOW wxEVT_ENTER_WINDOW
316 #define wxEVENT_TYPE_LEAVE_WINDOW wxEVT_LEAVE_WINDOW
317 #define wxEVENT_TYPE_LEFT_DCLICK wxEVT_LEFT_DCLICK
318 #define wxEVENT_TYPE_MIDDLE_DCLICK wxEVT_MIDDLE_DCLICK
319 #define wxEVENT_TYPE_RIGHT_DCLICK wxEVT_RIGHT_DCLICK
320 #define wxEVENT_TYPE_CHAR wxEVT_CHAR
321 #define wxEVENT_TYPE_SCROLL_TOP wxEVT_SCROLL_TOP
322 #define wxEVENT_TYPE_SCROLL_BOTTOM wxEVT_SCROLL_BOTTOM
323 #define wxEVENT_TYPE_SCROLL_LINEUP wxEVT_SCROLL_LINEUP
324 #define wxEVENT_TYPE_SCROLL_LINEDOWN wxEVT_SCROLL_LINEDOWN
325 #define wxEVENT_TYPE_SCROLL_PAGEUP wxEVT_SCROLL_PAGEUP
326 #define wxEVENT_TYPE_SCROLL_PAGEDOWN wxEVT_SCROLL_PAGEDOWN
327 #define wxEVENT_TYPE_SCROLL_THUMBTRACK wxEVT_SCROLL_THUMBTRACK
328 #define wxEVENT_TYPE_SCROLL_ENDSCROLL wxEVT_SCROLL_ENDSCROLL
329
330 #endif // WXWIN_COMPATIBILITY
331
332 /*
333 * wxWindows events, covering all interesting things that might happen
334 * (button clicking, resizing, setting text in widgets, etc.).
335 *
336 * For each completely new event type, derive a new event class.
337 * An event CLASS represents a C++ class defining a range of similar event TYPES;
338 * examples are canvas events, panel item command events.
339 * An event TYPE is a unique identifier for a particular system event,
340 * such as a button press or a listbox deselection.
341 *
342 */
343
344 class WXDLLIMPEXP_BASE wxEvent : public wxObject
345 {
346 private:
347 wxEvent& operator=(const wxEvent&);
348
349 protected:
350 wxEvent(const wxEvent&); // for implementing Clone()
351
352 public:
353 wxEvent(int winid = 0, wxEventType commandType = wxEVT_NULL );
354
355 void SetEventType(wxEventType typ) { m_eventType = typ; }
356 wxEventType GetEventType() const { return m_eventType; }
357 wxObject *GetEventObject() const { return m_eventObject; }
358 void SetEventObject(wxObject *obj) { m_eventObject = obj; }
359 long GetTimestamp() const { return m_timeStamp; }
360 void SetTimestamp(long ts = 0) { m_timeStamp = ts; }
361 int GetId() const { return m_id; }
362 void SetId(int Id) { m_id = Id; }
363
364 // Can instruct event processor that we wish to ignore this event
365 // (treat as if the event table entry had not been found): this must be done
366 // to allow the event processing by the base classes (calling event.Skip()
367 // is the analog of calling the base class verstion of a virtual function)
368 void Skip(bool skip = TRUE) { m_skipped = skip; }
369 bool GetSkipped() const { return m_skipped; };
370
371 // Implementation only: this test is explicitlty anti OO and this functions
372 // exists only for optimization purposes.
373 bool IsCommandEvent() const { return m_isCommandEvent; }
374
375 // this function is used to create a copy of the event polymorphically and
376 // all derived classes must implement it because otherwise wxPostEvent()
377 // for them wouldn't work (it needs to do a copy of the event)
378 virtual wxEvent *Clone() const = 0;
379
380 public:
381 wxObject* m_eventObject;
382 wxEventType m_eventType;
383 long m_timeStamp;
384 int m_id;
385 wxObject* m_callbackUserData;
386 bool m_skipped;
387 bool m_isCommandEvent;
388
389 private:
390 DECLARE_ABSTRACT_CLASS(wxEvent)
391 };
392
393 #if wxUSE_GUI
394
395 // Item or menu event class
396 /*
397 wxEVT_COMMAND_BUTTON_CLICKED
398 wxEVT_COMMAND_CHECKBOX_CLICKED
399 wxEVT_COMMAND_CHOICE_SELECTED
400 wxEVT_COMMAND_LISTBOX_SELECTED
401 wxEVT_COMMAND_LISTBOX_DOUBLECLICKED
402 wxEVT_COMMAND_TEXT_UPDATED
403 wxEVT_COMMAND_TEXT_ENTER
404 wxEVT_COMMAND_MENU_SELECTED
405 wxEVT_COMMAND_SLIDER_UPDATED
406 wxEVT_COMMAND_RADIOBOX_SELECTED
407 wxEVT_COMMAND_RADIOBUTTON_SELECTED
408 wxEVT_COMMAND_SCROLLBAR_UPDATED
409 wxEVT_COMMAND_VLBOX_SELECTED
410 wxEVT_COMMAND_COMBOBOX_SELECTED
411 wxEVT_COMMAND_TOGGLEBUTTON_CLICKED
412 */
413
414 class WXDLLIMPEXP_CORE wxCommandEvent : public wxEvent
415 {
416 private:
417 wxCommandEvent& operator=(const wxCommandEvent& event);
418
419 public:
420 wxCommandEvent(wxEventType commandType = wxEVT_NULL, int winid = 0);
421
422 wxCommandEvent(const wxCommandEvent& event)
423 : wxEvent(event),
424 m_commandString(event.m_commandString),
425 m_commandInt(event.m_commandInt),
426 m_extraLong(event.m_extraLong),
427 m_clientData(event.m_clientData),
428 m_clientObject(event.m_clientObject)
429 { }
430
431 // Set/Get client data from controls
432 void SetClientData(void* clientData) { m_clientData = clientData; }
433 void *GetClientData() const { return m_clientData; }
434
435 // Set/Get client object from controls
436 void SetClientObject(wxClientData* clientObject) { m_clientObject = clientObject; }
437 void *GetClientObject() const { return m_clientObject; }
438
439 // Get listbox selection if single-choice
440 int GetSelection() const { return m_commandInt; }
441
442 // Set/Get listbox/choice selection string
443 void SetString(const wxString& s) { m_commandString = s; }
444 wxString GetString() const { return m_commandString; }
445
446 // Get checkbox value
447 bool IsChecked() const { return m_commandInt != 0; }
448
449 // TRUE if the listbox event was a selection.
450 bool IsSelection() const { return (m_extraLong != 0); }
451
452 void SetExtraLong(long extraLong) { m_extraLong = extraLong; }
453 long GetExtraLong() const { return m_extraLong ; }
454
455 void SetInt(int i) { m_commandInt = i; }
456 long GetInt() const { return m_commandInt ; }
457
458 virtual wxEvent *Clone() const { return new wxCommandEvent(*this); }
459
460 #if WXWIN_COMPATIBILITY_2
461 bool Checked() const { return IsChecked(); }
462 #endif // WXWIN_COMPATIBILITY_2
463
464 public:
465 wxString m_commandString; // String event argument
466 int m_commandInt;
467 long m_extraLong; // Additional information (e.g. select/deselect)
468 void* m_clientData; // Arbitrary client data
469 wxClientData* m_clientObject; // Arbitrary client object
470
471 private:
472 DECLARE_DYNAMIC_CLASS(wxCommandEvent)
473 };
474
475 // this class adds a possibility to react (from the user) code to a control
476 // notification: allow or veto the operation being reported.
477 class WXDLLIMPEXP_CORE wxNotifyEvent : public wxCommandEvent
478 {
479 public:
480 wxNotifyEvent(wxEventType commandType = wxEVT_NULL, int winid = 0)
481 : wxCommandEvent(commandType, winid)
482 { m_bAllow = TRUE; }
483
484 wxNotifyEvent(const wxNotifyEvent& event)
485 : wxCommandEvent(event)
486 { m_bAllow = event.m_bAllow; }
487
488 // veto the operation (usually it's allowed by default)
489 void Veto() { m_bAllow = FALSE; }
490
491 // allow the operation if it was disabled by default
492 void Allow() { m_bAllow = TRUE; }
493
494 // for implementation code only: is the operation allowed?
495 bool IsAllowed() const { return m_bAllow; }
496
497 virtual wxEvent *Clone() const { return new wxNotifyEvent(*this); }
498
499 private:
500 bool m_bAllow;
501
502 private:
503 DECLARE_DYNAMIC_CLASS(wxNotifyEvent)
504 };
505
506 // Scroll event class, derived form wxCommandEvent. wxScrollEvents are
507 // sent by wxSlider and wxScrollBar.
508 /*
509 wxEVT_SCROLL_TOP
510 wxEVT_SCROLL_BOTTOM
511 wxEVT_SCROLL_LINEUP
512 wxEVT_SCROLL_LINEDOWN
513 wxEVT_SCROLL_PAGEUP
514 wxEVT_SCROLL_PAGEDOWN
515 wxEVT_SCROLL_THUMBTRACK
516 wxEVT_SCROLL_THUMBRELEASE
517 wxEVT_SCROLL_ENDSCROLL
518 */
519
520 class WXDLLIMPEXP_CORE wxScrollEvent : public wxCommandEvent
521 {
522 public:
523 wxScrollEvent(wxEventType commandType = wxEVT_NULL,
524 int winid = 0, int pos = 0, int orient = 0);
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 virtual wxEvent *Clone() const { return new wxScrollEvent(*this); }
532
533 private:
534 DECLARE_DYNAMIC_CLASS(wxScrollEvent)
535 };
536
537 // ScrollWin event class, derived fom wxEvent. wxScrollWinEvents
538 // are sent by wxWindow.
539 /*
540 wxEVT_SCROLLWIN_TOP
541 wxEVT_SCROLLWIN_BOTTOM
542 wxEVT_SCROLLWIN_LINEUP
543 wxEVT_SCROLLWIN_LINEDOWN
544 wxEVT_SCROLLWIN_PAGEUP
545 wxEVT_SCROLLWIN_PAGEDOWN
546 wxEVT_SCROLLWIN_THUMBTRACK
547 wxEVT_SCROLLWIN_THUMBRELEASE
548 */
549
550 class WXDLLIMPEXP_CORE wxScrollWinEvent : public wxEvent
551 {
552 public:
553 wxScrollWinEvent(wxEventType commandType = wxEVT_NULL,
554 int pos = 0, int orient = 0);
555 wxScrollWinEvent(const wxScrollWinEvent & event) : wxEvent(event)
556 { m_commandInt = event.m_commandInt;
557 m_extraLong = event.m_extraLong; }
558
559 int GetOrientation() const { return (int) m_extraLong ; }
560 int GetPosition() const { return m_commandInt ; }
561 void SetOrientation(int orient) { m_extraLong = (long) orient; }
562 void SetPosition(int pos) { m_commandInt = pos; }
563
564 virtual wxEvent *Clone() const { return new wxScrollWinEvent(*this); }
565
566 public:
567 int m_commandInt;
568 long m_extraLong;
569
570 private:
571 DECLARE_DYNAMIC_CLASS(wxScrollWinEvent)
572 };
573
574 // Mouse event class
575
576 /*
577 wxEVT_LEFT_DOWN
578 wxEVT_LEFT_UP
579 wxEVT_MIDDLE_DOWN
580 wxEVT_MIDDLE_UP
581 wxEVT_RIGHT_DOWN
582 wxEVT_RIGHT_UP
583 wxEVT_MOTION
584 wxEVT_ENTER_WINDOW
585 wxEVT_LEAVE_WINDOW
586 wxEVT_LEFT_DCLICK
587 wxEVT_MIDDLE_DCLICK
588 wxEVT_RIGHT_DCLICK
589 wxEVT_NC_LEFT_DOWN
590 wxEVT_NC_LEFT_UP,
591 wxEVT_NC_MIDDLE_DOWN,
592 wxEVT_NC_MIDDLE_UP,
593 wxEVT_NC_RIGHT_DOWN,
594 wxEVT_NC_RIGHT_UP,
595 wxEVT_NC_MOTION,
596 wxEVT_NC_ENTER_WINDOW,
597 wxEVT_NC_LEAVE_WINDOW,
598 wxEVT_NC_LEFT_DCLICK,
599 wxEVT_NC_MIDDLE_DCLICK,
600 wxEVT_NC_RIGHT_DCLICK,
601 */
602
603 // the symbolic names for the mouse buttons
604 enum
605 {
606 wxMOUSE_BTN_ANY = -1,
607 wxMOUSE_BTN_NONE = -1,
608 wxMOUSE_BTN_LEFT = 0,
609 wxMOUSE_BTN_MIDDLE = 1,
610 wxMOUSE_BTN_RIGHT = 2
611 };
612
613 class WXDLLIMPEXP_CORE wxMouseEvent : public wxEvent
614 {
615 public:
616 wxMouseEvent(wxEventType mouseType = wxEVT_NULL);
617 wxMouseEvent(const wxMouseEvent& event) : wxEvent(event)
618 { Assign(event); }
619
620 // Was it a button event? (*doesn't* mean: is any button *down*?)
621 bool IsButton() const { return Button(wxMOUSE_BTN_ANY); }
622
623 // Was it a down event from button 1, 2 or 3 or any?
624 bool ButtonDown(int but = wxMOUSE_BTN_ANY) const;
625
626 // Was it a dclick event from button 1, 2 or 3 or any?
627 bool ButtonDClick(int but = wxMOUSE_BTN_ANY) const;
628
629 // Was it a up event from button 1, 2 or 3 or any?
630 bool ButtonUp(int but = wxMOUSE_BTN_ANY) const;
631
632 // Was the given button 1,2,3 or any changing state?
633 bool Button(int but) const;
634
635 // Was the given button 1,2,3 or any in Down state?
636 bool ButtonIsDown(int but) const;
637
638 // Get the button which is changing state (wxMOUSE_BTN_NONE if none)
639 int GetButton() const;
640
641 // Find state of shift/control keys
642 bool ControlDown() const { return m_controlDown; }
643 bool MetaDown() const { return m_metaDown; }
644 bool AltDown() const { return m_altDown; }
645 bool ShiftDown() const { return m_shiftDown; }
646
647 // Find which event was just generated
648 bool LeftDown() const { return (m_eventType == wxEVT_LEFT_DOWN); }
649 bool MiddleDown() const { return (m_eventType == wxEVT_MIDDLE_DOWN); }
650 bool RightDown() const { return (m_eventType == wxEVT_RIGHT_DOWN); }
651
652 bool LeftUp() const { return (m_eventType == wxEVT_LEFT_UP); }
653 bool MiddleUp() const { return (m_eventType == wxEVT_MIDDLE_UP); }
654 bool RightUp() const { return (m_eventType == wxEVT_RIGHT_UP); }
655
656 bool LeftDClick() const { return (m_eventType == wxEVT_LEFT_DCLICK); }
657 bool MiddleDClick() const { return (m_eventType == wxEVT_MIDDLE_DCLICK); }
658 bool RightDClick() const { return (m_eventType == wxEVT_RIGHT_DCLICK); }
659
660 // Find the current state of the mouse buttons (regardless
661 // of current event type)
662 bool LeftIsDown() const { return m_leftDown; }
663 bool MiddleIsDown() const { return m_middleDown; }
664 bool RightIsDown() const { return m_rightDown; }
665
666 // True if a button is down and the mouse is moving
667 bool Dragging() const
668 {
669 return ((m_eventType == wxEVT_MOTION) &&
670 (LeftIsDown() || MiddleIsDown() || RightIsDown()));
671 }
672
673 // True if the mouse is moving, and no button is down
674 bool Moving() const { return (m_eventType == wxEVT_MOTION); }
675
676 // True if the mouse is just entering the window
677 bool Entering() const { return (m_eventType == wxEVT_ENTER_WINDOW); }
678
679 // True if the mouse is just leaving the window
680 bool Leaving() const { return (m_eventType == wxEVT_LEAVE_WINDOW); }
681
682 // Find the position of the event
683 void GetPosition(wxCoord *xpos, wxCoord *ypos) const
684 {
685 if (xpos)
686 *xpos = m_x;
687 if (ypos)
688 *ypos = m_y;
689 }
690
691 #ifndef __WIN16__
692 void GetPosition(long *xpos, long *ypos) const
693 {
694 if (xpos)
695 *xpos = (long)m_x;
696 if (ypos)
697 *ypos = (long)m_y;
698 }
699 #endif
700
701 // Find the position of the event
702 wxPoint GetPosition() const { return wxPoint(m_x, m_y); }
703
704 // Find the logical position of the event given the DC
705 wxPoint GetLogicalPosition(const wxDC& dc) const ;
706
707 // Compatibility
708 #if WXWIN_COMPATIBILITY
709 void Position(long *xpos, long *ypos) const
710 {
711 if (xpos)
712 *xpos = (long)m_x;
713 if (ypos)
714 *ypos = (long)m_y;
715 }
716
717 void Position(float *xpos, float *ypos) const
718 {
719 *xpos = (float) m_x; *ypos = (float) m_y;
720 }
721 #endif // WXWIN_COMPATIBILITY
722
723 // Get X position
724 wxCoord GetX() const { return m_x; }
725
726 // Get Y position
727 wxCoord GetY() const { return m_y; }
728
729 // Get wheel rotation, positive or negative indicates direction of
730 // rotation. Current devices all send an event when rotation is equal to
731 // +/-WheelDelta, but this allows for finer resolution devices to be
732 // created in the future. Because of this you shouldn't assume that one
733 // event is equal to 1 line or whatever, but you should be able to either
734 // do partial line scrolling or wait until +/-WheelDelta rotation values
735 // have been accumulated before scrolling.
736 int GetWheelRotation() const { return m_wheelRotation; }
737
738 // Get wheel delta, normally 120. This is the threshold for action to be
739 // taken, and one such action (for example, scrolling one increment)
740 // should occur for each delta.
741 int GetWheelDelta() const { return m_wheelDelta; }
742
743 // Returns the configured number of lines (or whatever) to be scrolled per
744 // wheel action. Defaults to one.
745 int GetLinesPerAction() const { return m_linesPerAction; }
746
747 // Is the system set to do page scrolling?
748 bool IsPageScroll() const { return ((unsigned int)m_linesPerAction == UINT_MAX); }
749
750 virtual wxEvent *Clone() const { return new wxMouseEvent(*this); }
751
752 wxMouseEvent& operator=(const wxMouseEvent& event) { Assign(event); return *this; }
753
754 public:
755 wxCoord m_x, m_y;
756
757 bool m_leftDown;
758 bool m_middleDown;
759 bool m_rightDown;
760
761 bool m_controlDown;
762 bool m_shiftDown;
763 bool m_altDown;
764 bool m_metaDown;
765
766 int m_wheelRotation;
767 int m_wheelDelta;
768 int m_linesPerAction;
769
770 protected:
771 void Assign(const wxMouseEvent& evt);
772
773 private:
774 DECLARE_DYNAMIC_CLASS(wxMouseEvent)
775 };
776
777 // Cursor set event
778
779 /*
780 wxEVT_SET_CURSOR
781 */
782
783 class WXDLLIMPEXP_CORE wxSetCursorEvent : public wxEvent
784 {
785 public:
786 wxSetCursorEvent(wxCoord x = 0, wxCoord y = 0)
787 : wxEvent(0, wxEVT_SET_CURSOR),
788 m_x(x), m_y(y), m_cursor()
789 { }
790
791 wxSetCursorEvent(const wxSetCursorEvent & event)
792 : wxEvent(event),
793 m_x(event.m_x),
794 m_y(event.m_y),
795 m_cursor(event.m_cursor)
796 { }
797
798 wxCoord GetX() const { return m_x; }
799 wxCoord GetY() const { return m_y; }
800
801 void SetCursor(const wxCursor& cursor) { m_cursor = cursor; }
802 const wxCursor& GetCursor() const { return m_cursor; }
803 bool HasCursor() const { return m_cursor.Ok(); }
804
805 virtual wxEvent *Clone() const { return new wxSetCursorEvent(*this); }
806
807 private:
808 wxCoord m_x, m_y;
809 wxCursor m_cursor;
810
811 private:
812 DECLARE_DYNAMIC_CLASS(wxSetCursorEvent)
813 };
814
815 // Keyboard input event class
816
817 /*
818 wxEVT_CHAR
819 wxEVT_CHAR_HOOK
820 wxEVT_KEY_DOWN
821 wxEVT_KEY_UP
822 */
823
824 class WXDLLIMPEXP_CORE wxKeyEvent : public wxEvent
825 {
826 public:
827 wxKeyEvent(wxEventType keyType = wxEVT_NULL);
828 wxKeyEvent(const wxKeyEvent& evt);
829
830 // Find state of shift/control keys
831 bool ControlDown() const { return m_controlDown; }
832 bool MetaDown() const { return m_metaDown; }
833 bool AltDown() const { return m_altDown; }
834 bool ShiftDown() const { return m_shiftDown; }
835
836 // exclude MetaDown() from HasModifiers() because NumLock under X is often
837 // configured as mod2 modifier, yet the key events even when it is pressed
838 // should be processed normally, not like Ctrl- or Alt-key
839 bool HasModifiers() const { return ControlDown() || AltDown(); }
840
841 // get the key code: an ASCII7 char or an element of wxKeyCode enum
842 int GetKeyCode() const { return (int)m_keyCode; }
843
844 // get the raw key code (platform-dependent)
845 wxUint32 GetRawKeyCode() const { return m_rawCode; }
846
847 // get the raw key flags (platform-dependent)
848 wxUint32 GetRawKeyFlags() const { return m_rawFlags; }
849
850 // Find the position of the event
851 void GetPosition(wxCoord *xpos, wxCoord *ypos) const
852 {
853 if (xpos) *xpos = m_x;
854 if (ypos) *ypos = m_y;
855 }
856
857 #ifndef __WIN16__
858 void GetPosition(long *xpos, long *ypos) const
859 {
860 if (xpos) *xpos = (long)m_x;
861 if (ypos) *ypos = (long)m_y;
862 }
863 #endif
864
865 wxPoint GetPosition() const
866 { return wxPoint(m_x, m_y); }
867
868 // Get X position
869 wxCoord GetX() const { return m_x; }
870
871 // Get Y position
872 wxCoord GetY() const { return m_y; }
873
874 // deprecated, Use GetKeyCode instead.
875 wxDEPRECATED( long KeyCode() const );
876
877 virtual wxEvent *Clone() const { return new wxKeyEvent(*this); }
878
879 // we do need to copy wxKeyEvent sometimes (in wxTreeCtrl code, for
880 // example)
881 wxKeyEvent& operator=(const wxKeyEvent& evt)
882 {
883 m_x = evt.m_x;
884 m_y = evt.m_y;
885
886 m_keyCode = evt.m_keyCode;
887
888 m_controlDown = evt.m_controlDown;
889 m_shiftDown = evt.m_shiftDown;
890 m_altDown = evt.m_altDown;
891 m_metaDown = evt.m_metaDown;
892 m_scanCode = evt.m_scanCode;
893 m_rawCode = evt.m_rawCode;
894 m_rawFlags = evt.m_rawFlags;
895
896 return *this;
897 }
898
899 public:
900 wxCoord m_x, m_y;
901
902 long m_keyCode;
903
904 bool m_controlDown;
905 bool m_shiftDown;
906 bool m_altDown;
907 bool m_metaDown;
908 bool m_scanCode;
909
910 #if wxUSE_UNICODE
911 // This contains the full Unicode character
912 // in a character events in Unicode mode
913 wxChar m_uniChar;
914 #endif
915
916 // these fields contain the platform-specific information about
917 // key that was pressed
918 wxUint32 m_rawCode;
919 wxUint32 m_rawFlags;
920
921 private:
922 DECLARE_DYNAMIC_CLASS(wxKeyEvent)
923 };
924
925 // Size event class
926 /*
927 wxEVT_SIZE
928 */
929
930 class WXDLLIMPEXP_CORE wxSizeEvent : public wxEvent
931 {
932 public:
933 wxSizeEvent() : wxEvent(0, wxEVT_SIZE)
934 { }
935 wxSizeEvent(const wxSize& sz, int winid = 0)
936 : wxEvent(winid, wxEVT_SIZE),
937 m_size(sz)
938 { }
939 wxSizeEvent(const wxSizeEvent & event)
940 : wxEvent(event),
941 m_size(event.m_size), m_rect(event.m_rect)
942 { }
943 wxSizeEvent(const wxRect& rect, int id = 0)
944 : m_size(rect.GetSize()), m_rect(rect)
945 { m_eventType = wxEVT_SIZING; m_id = id; }
946
947 wxSize GetSize() const { return m_size; }
948 wxRect GetRect() const { return m_rect; }
949 void SetRect(wxRect rect) { m_rect = rect; }
950
951 virtual wxEvent *Clone() const { return new wxSizeEvent(*this); }
952
953 public:
954 wxSize m_size;
955 wxRect m_rect; // Used for wxEVT_SIZING
956
957 private:
958 DECLARE_DYNAMIC_CLASS(wxSizeEvent)
959 };
960
961 // Move event class
962
963 /*
964 wxEVT_MOVE
965 */
966
967 class WXDLLIMPEXP_CORE wxMoveEvent : public wxEvent
968 {
969 public:
970 wxMoveEvent()
971 : wxEvent(0, wxEVT_MOVE)
972 { }
973 wxMoveEvent(const wxPoint& pos, int winid = 0)
974 : wxEvent(winid, wxEVT_MOVE),
975 m_pos(pos)
976 { }
977 wxMoveEvent(const wxMoveEvent& event)
978 : wxEvent(event),
979 m_pos(event.m_pos)
980 { }
981 wxMoveEvent(const wxRect& rect, int id = 0)
982 : m_pos(rect.GetPosition()), m_rect(rect)
983 { m_eventType = wxEVT_MOVING; m_id = id; }
984
985 wxPoint GetPosition() const { return m_pos; }
986 wxRect GetRect() const { return m_rect; }
987 void SetRect(wxRect rect) { m_rect = rect; }
988
989 virtual wxEvent *Clone() const { return new wxMoveEvent(*this); }
990
991 wxPoint m_pos;
992 wxRect m_rect;
993
994 private:
995 DECLARE_DYNAMIC_CLASS(wxMoveEvent)
996 };
997
998 // Paint event class
999 /*
1000 wxEVT_PAINT
1001 wxEVT_NC_PAINT
1002 wxEVT_PAINT_ICON
1003 */
1004
1005 #if defined(__WXDEBUG__) && (defined(__WXMSW__) || defined(__WXPM__))
1006 // see comments in src/msw|os2/dcclient.cpp where g_isPainting is defined
1007 extern WXDLLIMPEXP_CORE int g_isPainting;
1008 #endif // debug
1009
1010 class WXDLLIMPEXP_CORE wxPaintEvent : public wxEvent
1011 {
1012 public:
1013 wxPaintEvent(int Id = 0)
1014 : wxEvent(Id, wxEVT_PAINT)
1015 {
1016 #if defined(__WXDEBUG__) && (defined(__WXMSW__) || defined(__WXPM__))
1017 // set the internal flag for the duration of processing of WM_PAINT
1018 g_isPainting++;
1019 #endif // debug
1020 }
1021
1022 #if defined(__WXDEBUG__) && (defined(__WXMSW__) || defined(__WXPM__))
1023 ~wxPaintEvent()
1024 {
1025 g_isPainting--;
1026 }
1027 #endif // debug
1028
1029 virtual wxEvent *Clone() const { return new wxPaintEvent(*this); }
1030
1031 private:
1032 DECLARE_DYNAMIC_CLASS(wxPaintEvent)
1033 };
1034
1035 class WXDLLIMPEXP_CORE wxNcPaintEvent : public wxEvent
1036 {
1037 public:
1038 wxNcPaintEvent(int winid = 0)
1039 : wxEvent(winid, wxEVT_NC_PAINT)
1040 { }
1041
1042 virtual wxEvent *Clone() const { return new wxNcPaintEvent(*this); }
1043
1044 private:
1045 DECLARE_DYNAMIC_CLASS(wxNcPaintEvent)
1046 };
1047
1048 // Erase background event class
1049 /*
1050 wxEVT_ERASE_BACKGROUND
1051 */
1052
1053 class WXDLLIMPEXP_CORE wxEraseEvent : public wxEvent
1054 {
1055 private:
1056 wxEraseEvent& operator=(const wxEraseEvent& event);
1057
1058 public:
1059 wxEraseEvent(int Id = 0, wxDC *dc = (wxDC *) NULL)
1060 : wxEvent(Id, wxEVT_ERASE_BACKGROUND),
1061 m_dc(dc)
1062 { }
1063
1064 wxEraseEvent(const wxEraseEvent& event)
1065 : wxEvent(event),
1066 m_dc(event.m_dc)
1067 { }
1068
1069 wxDC *GetDC() const { return m_dc; }
1070
1071 virtual wxEvent *Clone() const { return new wxEraseEvent(*this); }
1072
1073 wxDC *m_dc;
1074
1075 private:
1076 DECLARE_DYNAMIC_CLASS(wxEraseEvent)
1077 };
1078
1079 // Focus event class
1080 /*
1081 wxEVT_SET_FOCUS
1082 wxEVT_KILL_FOCUS
1083 */
1084
1085 class WXDLLIMPEXP_CORE wxFocusEvent : public wxEvent
1086 {
1087 private:
1088 wxFocusEvent& operator=(const wxFocusEvent& event);
1089
1090 public:
1091 wxFocusEvent(wxEventType type = wxEVT_NULL, int winid = 0)
1092 : wxEvent(winid, type)
1093 { m_win = NULL; }
1094
1095 wxFocusEvent(const wxFocusEvent& event)
1096 : wxEvent(event)
1097 { m_win = event.m_win; }
1098
1099 // The window associated with this event is the window which had focus
1100 // before for SET event and the window which will have focus for the KILL
1101 // one. NB: it may be NULL in both cases!
1102 wxWindow *GetWindow() const { return m_win; }
1103 void SetWindow(wxWindow *win) { m_win = win; }
1104
1105 virtual wxEvent *Clone() const { return new wxFocusEvent(*this); }
1106
1107 private:
1108 wxWindow *m_win;
1109
1110 private:
1111 DECLARE_DYNAMIC_CLASS(wxFocusEvent)
1112 };
1113
1114 // wxChildFocusEvent notifies the parent that a child has got the focus: unlike
1115 // wxFocusEvent it is propgated upwards the window chain
1116 class WXDLLIMPEXP_CORE wxChildFocusEvent : public wxCommandEvent
1117 {
1118 public:
1119 wxChildFocusEvent(wxWindow *win = NULL);
1120
1121 wxWindow *GetWindow() const { return (wxWindow *)GetEventObject(); }
1122
1123 virtual wxEvent *Clone() const { return new wxChildFocusEvent(*this); }
1124
1125 private:
1126 DECLARE_DYNAMIC_CLASS(wxChildFocusEvent)
1127 };
1128
1129 // Activate event class
1130 /*
1131 wxEVT_ACTIVATE
1132 wxEVT_ACTIVATE_APP
1133 */
1134
1135 class WXDLLIMPEXP_CORE wxActivateEvent : public wxEvent
1136 {
1137 public:
1138 wxActivateEvent(wxEventType type = wxEVT_NULL, bool active = TRUE, int Id = 0)
1139 : wxEvent(Id, type)
1140 { m_active = active; }
1141 wxActivateEvent(const wxActivateEvent& event)
1142 : wxEvent(event)
1143 { m_active = event.m_active; }
1144
1145 bool GetActive() const { return m_active; }
1146
1147 virtual wxEvent *Clone() const { return new wxActivateEvent(*this); }
1148
1149 private:
1150 bool m_active;
1151
1152 private:
1153 DECLARE_DYNAMIC_CLASS(wxActivateEvent)
1154 };
1155
1156 // InitDialog event class
1157 /*
1158 wxEVT_INIT_DIALOG
1159 */
1160
1161 class WXDLLIMPEXP_CORE wxInitDialogEvent : public wxEvent
1162 {
1163 public:
1164 wxInitDialogEvent(int Id = 0)
1165 : wxEvent(Id, wxEVT_INIT_DIALOG)
1166 { }
1167
1168 virtual wxEvent *Clone() const { return new wxInitDialogEvent(*this); }
1169
1170 private:
1171 DECLARE_DYNAMIC_CLASS(wxInitDialogEvent)
1172 };
1173
1174 // Miscellaneous menu event class
1175 /*
1176 wxEVT_MENU_OPEN,
1177 wxEVT_MENU_CLOSE,
1178 wxEVT_MENU_HIGHLIGHT,
1179 */
1180
1181 class WXDLLIMPEXP_CORE wxMenuEvent : public wxEvent
1182 {
1183 public:
1184 wxMenuEvent(wxEventType type = wxEVT_NULL, int winid = 0)
1185 : wxEvent(winid, type)
1186 { m_menuId = winid; }
1187 wxMenuEvent(const wxMenuEvent & event)
1188 : wxEvent(event)
1189 { m_menuId = event.m_menuId; }
1190
1191 // only for wxEVT_MENU_HIGHLIGHT
1192 int GetMenuId() const { return m_menuId; }
1193
1194 // only for wxEVT_MENU_OPEN/CLOSE
1195 bool IsPopup() const { return m_menuId == -1; }
1196
1197 virtual wxEvent *Clone() const { return new wxMenuEvent(*this); }
1198
1199 private:
1200 int m_menuId;
1201
1202 DECLARE_DYNAMIC_CLASS(wxMenuEvent)
1203 };
1204
1205 // Window close or session close event class
1206 /*
1207 wxEVT_CLOSE_WINDOW,
1208 wxEVT_END_SESSION,
1209 wxEVT_QUERY_END_SESSION
1210 */
1211
1212 class WXDLLIMPEXP_CORE wxCloseEvent : public wxEvent
1213 {
1214 public:
1215 wxCloseEvent(wxEventType type = wxEVT_NULL, int winid = 0)
1216 : wxEvent(winid, type),
1217 m_loggingOff(TRUE),
1218 m_veto(FALSE), // should be FALSE by default
1219 m_canVeto(TRUE)
1220 {
1221 #if WXWIN_COMPATIBILITY
1222 m_force = FALSE;
1223 #endif // WXWIN_COMPATIBILITY
1224 }
1225 wxCloseEvent(const wxCloseEvent & event)
1226 : wxEvent(event),
1227 m_loggingOff(event.m_loggingOff),
1228 m_veto(event.m_veto),
1229 m_canVeto(event.m_canVeto)
1230 {
1231 #if WXWIN_COMPATIBILITY
1232 m_force = event.m_force;
1233 #endif // WXWIN_COMPATIBILITY
1234 }
1235
1236 void SetLoggingOff(bool logOff) { m_loggingOff = logOff; }
1237 bool GetLoggingOff() const { return m_loggingOff; }
1238
1239 void Veto(bool veto = TRUE)
1240 {
1241 // GetVeto() will return FALSE anyhow...
1242 wxCHECK_RET( m_canVeto,
1243 wxT("call to Veto() ignored (can't veto this event)") );
1244
1245 m_veto = veto;
1246 }
1247 void SetCanVeto(bool canVeto) { m_canVeto = canVeto; }
1248 // No more asserts here please, the one you put here was wrong.
1249 bool CanVeto() const { return m_canVeto; }
1250 bool GetVeto() const { return m_canVeto && m_veto; }
1251
1252 #if WXWIN_COMPATIBILITY
1253 // This is probably obsolete now, since we use CanVeto instead, in
1254 // both OnCloseWindow and OnQueryEndSession.
1255 // m_force == ! m_canVeto i.e., can't veto means we must force it to close.
1256 void SetForce(bool force) { m_force = force; }
1257 bool GetForce() const { return m_force; }
1258 #endif
1259
1260 virtual wxEvent *Clone() const { return new wxCloseEvent(*this); }
1261
1262 protected:
1263 bool m_loggingOff;
1264 bool m_veto, m_canVeto;
1265
1266 #if WXWIN_COMPATIBILITY
1267 bool m_force;
1268 #endif
1269
1270 private:
1271 DECLARE_DYNAMIC_CLASS(wxCloseEvent)
1272
1273 };
1274
1275 /*
1276 wxEVT_SHOW
1277 */
1278
1279 class WXDLLIMPEXP_CORE wxShowEvent : public wxEvent
1280 {
1281 public:
1282 wxShowEvent(int winid = 0, bool show = FALSE)
1283 : wxEvent(winid, wxEVT_SHOW)
1284 { m_show = show; }
1285 wxShowEvent(const wxShowEvent & event)
1286 : wxEvent(event)
1287 { m_show = event.m_show; }
1288
1289 void SetShow(bool show) { m_show = show; }
1290 bool GetShow() const { return m_show; }
1291
1292 virtual wxEvent *Clone() const { return new wxShowEvent(*this); }
1293
1294 protected:
1295 bool m_show;
1296
1297 private:
1298 DECLARE_DYNAMIC_CLASS(wxShowEvent)
1299 };
1300
1301 /*
1302 wxEVT_ICONIZE
1303 */
1304
1305 class WXDLLIMPEXP_CORE wxIconizeEvent : public wxEvent
1306 {
1307 public:
1308 wxIconizeEvent(int winid = 0, bool iconized = TRUE)
1309 : wxEvent(winid, wxEVT_ICONIZE)
1310 { m_iconized = iconized; }
1311 wxIconizeEvent(const wxIconizeEvent & event)
1312 : wxEvent(event)
1313 { m_iconized = event.m_iconized; }
1314
1315 // return true if the frame was iconized, false if restored
1316 bool Iconized() const { return m_iconized; }
1317
1318 virtual wxEvent *Clone() const { return new wxIconizeEvent(*this); }
1319
1320 protected:
1321 bool m_iconized;
1322
1323 private:
1324 DECLARE_DYNAMIC_CLASS(wxIconizeEvent)
1325 };
1326 /*
1327 wxEVT_MAXIMIZE
1328 */
1329
1330 class WXDLLIMPEXP_CORE wxMaximizeEvent : public wxEvent
1331 {
1332 public:
1333 wxMaximizeEvent(int winid = 0)
1334 : wxEvent(winid, wxEVT_MAXIMIZE)
1335 { }
1336
1337 virtual wxEvent *Clone() const { return new wxMaximizeEvent(*this); }
1338
1339 private:
1340 DECLARE_DYNAMIC_CLASS(wxMaximizeEvent)
1341 };
1342
1343 // Joystick event class
1344 /*
1345 wxEVT_JOY_BUTTON_DOWN,
1346 wxEVT_JOY_BUTTON_UP,
1347 wxEVT_JOY_MOVE,
1348 wxEVT_JOY_ZMOVE
1349 */
1350
1351 // Which joystick? Same as Windows ids so no conversion necessary.
1352 enum
1353 {
1354 wxJOYSTICK1,
1355 wxJOYSTICK2
1356 };
1357
1358 // Which button is down?
1359 enum
1360 {
1361 wxJOY_BUTTON_ANY = -1,
1362 wxJOY_BUTTON1 = 1,
1363 wxJOY_BUTTON2 = 2,
1364 wxJOY_BUTTON3 = 4,
1365 wxJOY_BUTTON4 = 8
1366 };
1367
1368 class WXDLLIMPEXP_CORE wxJoystickEvent : public wxEvent
1369 {
1370 public:
1371 wxPoint m_pos;
1372 int m_zPosition;
1373 int m_buttonChange; // Which button changed?
1374 int m_buttonState; // Which buttons are down?
1375 int m_joyStick; // Which joystick?
1376
1377 wxJoystickEvent(wxEventType type = wxEVT_NULL,
1378 int state = 0,
1379 int joystick = wxJOYSTICK1,
1380 int change = 0)
1381 : wxEvent(0, type),
1382 m_pos(0, 0),
1383 m_zPosition(0),
1384 m_buttonChange(change),
1385 m_buttonState(state),
1386 m_joyStick(joystick)
1387 {
1388 }
1389 wxJoystickEvent(const wxJoystickEvent & event)
1390 : wxEvent(event),
1391 m_pos(event.m_pos),
1392 m_zPosition(event.m_zPosition),
1393 m_buttonChange(event.m_buttonChange),
1394 m_buttonState(event.m_buttonState),
1395 m_joyStick(event.m_joyStick)
1396 { }
1397
1398 wxPoint GetPosition() const { return m_pos; }
1399 int GetZPosition() const { return m_zPosition; }
1400 int GetButtonState() const { return m_buttonState; }
1401 int GetButtonChange() const { return m_buttonChange; }
1402 int GetJoystick() const { return m_joyStick; }
1403
1404 void SetJoystick(int stick) { m_joyStick = stick; }
1405 void SetButtonState(int state) { m_buttonState = state; }
1406 void SetButtonChange(int change) { m_buttonChange = change; }
1407 void SetPosition(const wxPoint& pos) { m_pos = pos; }
1408 void SetZPosition(int zPos) { m_zPosition = zPos; }
1409
1410 // Was it a button event? (*doesn't* mean: is any button *down*?)
1411 bool IsButton() const { return ((GetEventType() == wxEVT_JOY_BUTTON_DOWN) ||
1412 (GetEventType() == wxEVT_JOY_BUTTON_UP)); }
1413
1414 // Was it a move event?
1415 bool IsMove() const { return (GetEventType() == wxEVT_JOY_MOVE) ; }
1416
1417 // Was it a zmove event?
1418 bool IsZMove() const { return (GetEventType() == wxEVT_JOY_ZMOVE) ; }
1419
1420 // Was it a down event from button 1, 2, 3, 4 or any?
1421 bool ButtonDown(int but = wxJOY_BUTTON_ANY) const
1422 { return ((GetEventType() == wxEVT_JOY_BUTTON_DOWN) &&
1423 ((but == wxJOY_BUTTON_ANY) || (but == m_buttonChange))); }
1424
1425 // Was it a up event from button 1, 2, 3 or any?
1426 bool ButtonUp(int but = wxJOY_BUTTON_ANY) const
1427 { return ((GetEventType() == wxEVT_JOY_BUTTON_UP) &&
1428 ((but == wxJOY_BUTTON_ANY) || (but == m_buttonChange))); }
1429
1430 // Was the given button 1,2,3,4 or any in Down state?
1431 bool ButtonIsDown(int but = wxJOY_BUTTON_ANY) const
1432 { return (((but == wxJOY_BUTTON_ANY) && (m_buttonState != 0)) ||
1433 ((m_buttonState & but) == but)); }
1434
1435 virtual wxEvent *Clone() const { return new wxJoystickEvent(*this); }
1436
1437 private:
1438 DECLARE_DYNAMIC_CLASS(wxJoystickEvent)
1439 };
1440
1441 // Drop files event class
1442 /*
1443 wxEVT_DROP_FILES
1444 */
1445
1446 class WXDLLIMPEXP_CORE wxDropFilesEvent : public wxEvent
1447 {
1448 private:
1449 wxDropFilesEvent& operator=(const wxDropFilesEvent& event);
1450
1451 public:
1452 int m_noFiles;
1453 wxPoint m_pos;
1454 wxString* m_files;
1455
1456 wxDropFilesEvent(wxEventType type = wxEVT_NULL,
1457 int noFiles = 0,
1458 wxString *files = (wxString *) NULL)
1459 : wxEvent(0, type),
1460 m_noFiles(noFiles),
1461 m_pos(),
1462 m_files(files)
1463 { }
1464
1465 // we need a copy ctor to avoid deleting m_files pointer twice
1466 wxDropFilesEvent(const wxDropFilesEvent& other)
1467 : wxEvent(other),
1468 m_noFiles(other.m_noFiles),
1469 m_pos(other.m_pos),
1470 m_files(NULL)
1471 {
1472 m_files = new wxString[m_noFiles];
1473 for ( int n = 0; n < m_noFiles; n++ )
1474 {
1475 m_files[n] = other.m_files[n];
1476 }
1477 }
1478
1479 virtual ~wxDropFilesEvent()
1480 {
1481 delete [] m_files;
1482 }
1483
1484 wxPoint GetPosition() const { return m_pos; }
1485 int GetNumberOfFiles() const { return m_noFiles; }
1486 wxString *GetFiles() const { return m_files; }
1487
1488 virtual wxEvent *Clone() const { return new wxDropFilesEvent(*this); }
1489
1490 private:
1491 DECLARE_DYNAMIC_CLASS(wxDropFilesEvent)
1492 };
1493
1494 // Update UI event
1495 /*
1496 wxEVT_UPDATE_UI
1497 */
1498
1499 class WXDLLIMPEXP_CORE wxUpdateUIEvent : public wxCommandEvent
1500 {
1501 public:
1502 wxUpdateUIEvent(wxWindowID commandId = 0)
1503 : wxCommandEvent(wxEVT_UPDATE_UI, commandId)
1504 {
1505 m_checked =
1506 m_enabled =
1507 m_setEnabled =
1508 m_setText =
1509 m_setChecked = FALSE;
1510 }
1511 wxUpdateUIEvent(const wxUpdateUIEvent & event)
1512 : wxCommandEvent(event),
1513 m_checked(event.m_checked),
1514 m_enabled(event.m_enabled),
1515 m_setEnabled(event.m_setEnabled),
1516 m_setText(event.m_setText),
1517 m_setChecked(event.m_setChecked),
1518 m_text(event.m_text)
1519 { }
1520
1521 bool GetChecked() const { return m_checked; }
1522 bool GetEnabled() const { return m_enabled; }
1523 wxString GetText() const { return m_text; }
1524 bool GetSetText() const { return m_setText; }
1525 bool GetSetChecked() const { return m_setChecked; }
1526 bool GetSetEnabled() const { return m_setEnabled; }
1527
1528 void Check(bool check) { m_checked = check; m_setChecked = TRUE; }
1529 void Enable(bool enable) { m_enabled = enable; m_setEnabled = TRUE; }
1530 void SetText(const wxString& text) { m_text = text; m_setText = TRUE; }
1531
1532 virtual wxEvent *Clone() const { return new wxUpdateUIEvent(*this); }
1533
1534 protected:
1535 bool m_checked;
1536 bool m_enabled;
1537 bool m_setEnabled;
1538 bool m_setText;
1539 bool m_setChecked;
1540 wxString m_text;
1541
1542 private:
1543 DECLARE_DYNAMIC_CLASS(wxUpdateUIEvent)
1544 };
1545
1546 /*
1547 wxEVT_SYS_COLOUR_CHANGED
1548 */
1549
1550 // TODO: shouldn't all events record the window ID?
1551 class WXDLLIMPEXP_CORE wxSysColourChangedEvent : public wxEvent
1552 {
1553 public:
1554 wxSysColourChangedEvent()
1555 : wxEvent(0, wxEVT_SYS_COLOUR_CHANGED)
1556 { }
1557
1558 virtual wxEvent *Clone() const { return new wxSysColourChangedEvent(*this); }
1559
1560 private:
1561 DECLARE_DYNAMIC_CLASS(wxSysColourChangedEvent)
1562 };
1563
1564 /*
1565 wxEVT_MOUSE_CAPTURE_CHANGED
1566 The window losing the capture receives this message
1567 (even if it released the capture itself).
1568 */
1569
1570 class WXDLLIMPEXP_CORE wxMouseCaptureChangedEvent : public wxEvent
1571 {
1572 private:
1573 wxMouseCaptureChangedEvent operator=(const wxMouseCaptureChangedEvent& event);
1574
1575 public:
1576 wxMouseCaptureChangedEvent(wxWindowID winid = 0, wxWindow* gainedCapture = NULL)
1577 : wxEvent(winid, wxEVT_MOUSE_CAPTURE_CHANGED),
1578 m_gainedCapture(gainedCapture)
1579 { }
1580
1581 wxMouseCaptureChangedEvent(const wxMouseCaptureChangedEvent& event)
1582 : wxEvent(event),
1583 m_gainedCapture(event.m_gainedCapture)
1584 { }
1585
1586 virtual wxEvent *Clone() const { return new wxMouseCaptureChangedEvent(*this); }
1587
1588 wxWindow* GetCapturedWindow() const { return m_gainedCapture; };
1589
1590 private:
1591 wxWindow* m_gainedCapture;
1592 DECLARE_DYNAMIC_CLASS(wxMouseCaptureChangedEvent)
1593 };
1594
1595 /*
1596 wxEVT_DISPLAY_CHANGED
1597 */
1598 class WXDLLIMPEXP_CORE wxDisplayChangedEvent : public wxEvent
1599 {
1600 private:
1601 DECLARE_DYNAMIC_CLASS(wxDisplayChangedEvent)
1602
1603 public:
1604 wxDisplayChangedEvent()
1605 : wxEvent(0, wxEVT_DISPLAY_CHANGED)
1606 { }
1607
1608 virtual wxEvent *Clone() const { return new wxDisplayChangedEvent(*this); }
1609 };
1610
1611 /*
1612 wxEVT_PALETTE_CHANGED
1613 */
1614
1615 class WXDLLIMPEXP_CORE wxPaletteChangedEvent : public wxEvent
1616 {
1617 private:
1618 wxPaletteChangedEvent& operator=(const wxPaletteChangedEvent& event);
1619
1620 public:
1621 wxPaletteChangedEvent(wxWindowID winid = 0)
1622 : wxEvent(winid, wxEVT_PALETTE_CHANGED),
1623 m_changedWindow((wxWindow *) NULL)
1624 { }
1625
1626 wxPaletteChangedEvent(const wxPaletteChangedEvent& event)
1627 : wxEvent(event),
1628 m_changedWindow(event.m_changedWindow)
1629 { }
1630
1631 void SetChangedWindow(wxWindow* win) { m_changedWindow = win; }
1632 wxWindow* GetChangedWindow() const { return m_changedWindow; }
1633
1634 virtual wxEvent *Clone() const { return new wxPaletteChangedEvent(*this); }
1635
1636 protected:
1637 wxWindow* m_changedWindow;
1638
1639 private:
1640 DECLARE_DYNAMIC_CLASS(wxPaletteChangedEvent)
1641 };
1642
1643 /*
1644 wxEVT_QUERY_NEW_PALETTE
1645 Indicates the window is getting keyboard focus and should re-do its palette.
1646 */
1647
1648 class WXDLLIMPEXP_CORE wxQueryNewPaletteEvent : public wxEvent
1649 {
1650 public:
1651 wxQueryNewPaletteEvent(wxWindowID winid = 0)
1652 : wxEvent(winid, wxEVT_QUERY_NEW_PALETTE),
1653 m_paletteRealized(FALSE)
1654 { }
1655 wxQueryNewPaletteEvent(const wxQueryNewPaletteEvent & event)
1656 : wxEvent(event),
1657 m_paletteRealized(event.m_paletteRealized)
1658 { }
1659
1660 // App sets this if it changes the palette.
1661 void SetPaletteRealized(bool realized) { m_paletteRealized = realized; }
1662 bool GetPaletteRealized() const { return m_paletteRealized; }
1663
1664 virtual wxEvent *Clone() const { return new wxQueryNewPaletteEvent(*this); }
1665
1666 protected:
1667 bool m_paletteRealized;
1668
1669 private:
1670 DECLARE_DYNAMIC_CLASS(wxQueryNewPaletteEvent)
1671 };
1672
1673 /*
1674 Event generated by dialog navigation keys
1675 wxEVT_NAVIGATION_KEY
1676 */
1677 // NB: don't derive from command event to avoid being propagated to the parent
1678 class WXDLLIMPEXP_CORE wxNavigationKeyEvent : public wxEvent
1679 {
1680 private:
1681 wxNavigationKeyEvent& operator=(const wxNavigationKeyEvent& event);
1682
1683 public:
1684 wxNavigationKeyEvent()
1685 : wxEvent(0, wxEVT_NAVIGATION_KEY),
1686 m_flags(IsForward | Propagate), // defaults are for TAB
1687 m_focus((wxWindow *)NULL)
1688 { }
1689
1690 wxNavigationKeyEvent(const wxNavigationKeyEvent& event)
1691 : wxEvent(event),
1692 m_flags(event.m_flags),
1693 m_focus(event.m_focus)
1694 { }
1695
1696 // direction: forward (true) or backward (false)
1697 bool GetDirection() const
1698 { return (m_flags & IsForward) != 0; }
1699 void SetDirection(bool bForward)
1700 { if ( bForward ) m_flags |= IsForward; else m_flags &= ~IsForward; }
1701
1702 // it may be a window change event (MDI, notebook pages...) or a control
1703 // change event
1704 bool IsWindowChange() const
1705 { return (m_flags & WinChange) != 0; }
1706 void SetWindowChange(bool bIs)
1707 { if ( bIs ) m_flags |= WinChange; else m_flags &= ~WinChange; }
1708
1709 // some navigation events are meant to be propagated upwards (Windows
1710 // convention is to do this for TAB events) while others should always
1711 // cycle inside the panel/radiobox/whatever we're current inside
1712 bool ShouldPropagate() const
1713 { return (m_flags & Propagate) != 0; }
1714 void SetPropagate(bool bDoIt)
1715 { if ( bDoIt ) m_flags |= Propagate; else m_flags &= ~Propagate; }
1716
1717 // the child which has the focus currently (may be NULL - use
1718 // wxWindow::FindFocus then)
1719 wxWindow* GetCurrentFocus() const { return m_focus; }
1720 void SetCurrentFocus(wxWindow *win) { m_focus = win; }
1721
1722 virtual wxEvent *Clone() const { return new wxNavigationKeyEvent(*this); }
1723
1724 private:
1725 enum
1726 {
1727 IsForward = 0x0001,
1728 WinChange = 0x0002,
1729 Propagate = 0x0004
1730 };
1731
1732 long m_flags;
1733 wxWindow *m_focus;
1734
1735 private:
1736 DECLARE_DYNAMIC_CLASS(wxNavigationKeyEvent)
1737 };
1738
1739 // Window creation/destruction events: the first is sent as soon as window is
1740 // created (i.e. the underlying GUI object exists), but when the C++ object is
1741 // fully initialized (so virtual functions may be called). The second,
1742 // wxEVT_DESTROY, is sent right before the window is destroyed - again, it's
1743 // still safe to call virtual functions at this moment
1744 /*
1745 wxEVT_CREATE
1746 wxEVT_DESTROY
1747 */
1748
1749 class WXDLLIMPEXP_CORE wxWindowCreateEvent : public wxCommandEvent
1750 {
1751 public:
1752 wxWindowCreateEvent(wxWindow *win = NULL);
1753
1754 wxWindow *GetWindow() const { return (wxWindow *)GetEventObject(); }
1755
1756 virtual wxEvent *Clone() const { return new wxWindowCreateEvent(*this); }
1757
1758 private:
1759 DECLARE_DYNAMIC_CLASS(wxWindowCreateEvent)
1760 };
1761
1762 class WXDLLIMPEXP_CORE wxWindowDestroyEvent : public wxCommandEvent
1763 {
1764 public:
1765 wxWindowDestroyEvent(wxWindow *win = NULL);
1766
1767 wxWindow *GetWindow() const { return (wxWindow *)GetEventObject(); }
1768
1769 virtual wxEvent *Clone() const { return new wxWindowDestroyEvent(*this); }
1770
1771 private:
1772 DECLARE_DYNAMIC_CLASS(wxWindowDestroyEvent)
1773 };
1774
1775 // A help event is sent when the user clicks on a window in context-help mode.
1776 /*
1777 wxEVT_HELP
1778 wxEVT_DETAILED_HELP
1779 */
1780
1781 class WXDLLIMPEXP_CORE wxHelpEvent : public wxCommandEvent
1782 {
1783 public:
1784 wxHelpEvent(wxEventType type = wxEVT_NULL,
1785 wxWindowID winid = 0,
1786 const wxPoint& pt = wxDefaultPosition)
1787 : wxCommandEvent(type, winid),
1788 m_pos(pt), m_target(), m_link()
1789 { }
1790 wxHelpEvent(const wxHelpEvent & event)
1791 : wxCommandEvent(event),
1792 m_pos(event.m_pos),
1793 m_target(event.m_target),
1794 m_link(event.m_link)
1795 { }
1796
1797 // Position of event (in screen coordinates)
1798 const wxPoint& GetPosition() const { return m_pos; }
1799 void SetPosition(const wxPoint& pos) { m_pos = pos; }
1800
1801 // Optional link to further help
1802 const wxString& GetLink() const { return m_link; }
1803 void SetLink(const wxString& link) { m_link = link; }
1804
1805 // Optional target to display help in. E.g. a window specification
1806 const wxString& GetTarget() const { return m_target; }
1807 void SetTarget(const wxString& target) { m_target = target; }
1808
1809 virtual wxEvent *Clone() const { return new wxHelpEvent(*this); }
1810
1811 protected:
1812 wxPoint m_pos;
1813 wxString m_target;
1814 wxString m_link;
1815
1816 private:
1817 DECLARE_DYNAMIC_CLASS(wxHelpEvent)
1818 };
1819
1820 // A Context event is sent when the user right clicks on a window or
1821 // presses Shift-F10
1822 // NOTE : Under windows this is a repackaged WM_CONTETXMENU message
1823 // Under other systems it may have to be generated from a right click event
1824 /*
1825 wxEVT_CONTEXT_MENU
1826 */
1827
1828 class WXDLLIMPEXP_CORE wxContextMenuEvent : public wxCommandEvent
1829 {
1830 public:
1831 wxContextMenuEvent(wxEventType type = wxEVT_NULL,
1832 wxWindowID winid = 0,
1833 const wxPoint& pt = wxDefaultPosition)
1834 : wxCommandEvent(type, winid),
1835 m_pos(pt)
1836 { }
1837 wxContextMenuEvent(const wxContextMenuEvent & event)
1838 : wxCommandEvent(event),
1839 m_pos(event.m_pos)
1840 { }
1841
1842 // Position of event (in screen coordinates)
1843 const wxPoint& GetPosition() const { return m_pos; }
1844 void SetPosition(const wxPoint& pos) { m_pos = pos; }
1845
1846 virtual wxEvent *Clone() const { return new wxContextMenuEvent(*this); }
1847
1848 protected:
1849 wxPoint m_pos;
1850
1851 private:
1852 DECLARE_DYNAMIC_CLASS(wxContextMenuEvent)
1853 };
1854
1855 // Idle event
1856 /*
1857 wxEVT_IDLE
1858 */
1859
1860 class WXDLLIMPEXP_CORE wxIdleEvent : public wxEvent
1861 {
1862 public:
1863 wxIdleEvent()
1864 : wxEvent(0, wxEVT_IDLE),
1865 m_requestMore(FALSE)
1866 { }
1867 wxIdleEvent(const wxIdleEvent & event)
1868 : wxEvent(event),
1869 m_requestMore(event.m_requestMore)
1870 { }
1871
1872 void RequestMore(bool needMore = TRUE) { m_requestMore = needMore; }
1873 bool MoreRequested() const { return m_requestMore; }
1874
1875 virtual wxEvent *Clone() const { return new wxIdleEvent(*this); }
1876
1877 protected:
1878 bool m_requestMore;
1879
1880 private:
1881 DECLARE_DYNAMIC_CLASS(wxIdleEvent)
1882 };
1883
1884 #endif // wxUSE_GUI
1885
1886 /* TODO
1887 wxEVT_POWER,
1888 wxEVT_MOUSE_CAPTURE_CHANGED,
1889 wxEVT_SETTING_CHANGED, // WM_WININICHANGE (NT) / WM_SETTINGCHANGE (Win95)
1890 // wxEVT_FONT_CHANGED, // WM_FONTCHANGE: roll into wxEVT_SETTING_CHANGED, but remember to propagate
1891 // wxEVT_FONT_CHANGED to all other windows (maybe).
1892 wxEVT_DRAW_ITEM, // Leave these three as virtual functions in wxControl?? Platform-specific.
1893 wxEVT_MEASURE_ITEM,
1894 wxEVT_COMPARE_ITEM
1895 */
1896
1897
1898 // ============================================================================
1899 // event handler and related classes
1900 // ============================================================================
1901
1902 typedef void (wxObject::*wxObjectEventFunction)(wxEvent&);
1903
1904 // we can't have ctors nor base struct in backwards compatibility mode or
1905 // otherwise we won't be able to initialize the objects with an agregate, so
1906 // we have to keep both versions
1907 #if WXWIN_COMPATIBILITY_EVENT_TYPES
1908
1909 struct WXDLLIMPEXP_BASE wxEventTableEntry
1910 {
1911 // For some reason, this can't be wxEventType, or VC++ complains.
1912 int m_eventType; // main event type
1913 int m_id; // control/menu/toolbar id
1914 int m_lastId; // used for ranges of ids
1915 wxObjectEventFunction m_fn; // function to call: not wxEventFunction,
1916 // because of dependency problems
1917
1918 wxObject* m_callbackUserData;
1919 };
1920
1921 #else // !WXWIN_COMPATIBILITY_EVENT_TYPES
1922
1923 // struct containing the members common to static and dynamic event tables
1924 // entries
1925 struct WXDLLIMPEXP_BASE wxEventTableEntryBase
1926 {
1927 private:
1928 wxEventTableEntryBase& operator=(const wxEventTableEntryBase& event);
1929
1930 public:
1931 wxEventTableEntryBase(int winid, int idLast,
1932 wxObjectEventFunction fn, wxObject *data)
1933 : m_id(winid),
1934 m_lastId(idLast),
1935 m_fn(fn),
1936 m_callbackUserData(data)
1937 { }
1938
1939 wxEventTableEntryBase(const wxEventTableEntryBase& event)
1940 : m_id(event.m_id),
1941 m_lastId(event.m_lastId),
1942 m_fn(event.m_fn),
1943 m_callbackUserData(event.m_callbackUserData)
1944 { }
1945
1946 // the range of ids for this entry: if m_lastId == wxID_ANY, the range
1947 // consists only of m_id, otherwise it is m_id..m_lastId inclusive
1948 int m_id,
1949 m_lastId;
1950
1951 // function to call: not wxEventFunction, because of dependency problems
1952 wxObjectEventFunction m_fn;
1953
1954 // arbitrary user data asosciated with the callback
1955 wxObject* m_callbackUserData;
1956 };
1957
1958 // an entry from a static event table
1959 struct WXDLLIMPEXP_BASE wxEventTableEntry : public wxEventTableEntryBase
1960 {
1961 wxEventTableEntry(const int& evType, int winid, int idLast,
1962 wxObjectEventFunction fn, wxObject *data)
1963 : wxEventTableEntryBase(winid, idLast, fn, data),
1964 m_eventType(evType)
1965 { }
1966
1967 // the reference to event type: this allows us to not care about the
1968 // (undefined) order in which the event table entries and the event types
1969 // are initialized: initially the value of this reference might be
1970 // invalid, but by the time it is used for the first time, all global
1971 // objects will have been initialized (including the event type constants)
1972 // and so it will have the correct value when it is needed
1973 const int& m_eventType;
1974 };
1975
1976 class WXDLLIMPEXP_BASE wxEvtHandler;
1977
1978 // an entry used in dynamic event table managed by wxEvtHandler::Connect()
1979 struct WXDLLIMPEXP_BASE wxDynamicEventTableEntry : public wxEventTableEntryBase
1980 {
1981 wxDynamicEventTableEntry(int evType, int winid, int idLast,
1982 wxObjectEventFunction fn, wxObject *data, wxEvtHandler* eventSink)
1983 : wxEventTableEntryBase(winid, idLast, fn, data),
1984 m_eventType(evType),
1985 m_eventSink(eventSink)
1986 { }
1987
1988 // not a reference here as we can't keep a reference to a temporary int
1989 // created to wrap the constant value typically passed to Connect() - nor
1990 // do we need it
1991 int m_eventType;
1992
1993 // Pointer to object whose function is fn - so we don't assume the
1994 // EventFunction is always a member of the EventHandler receiving the
1995 // message
1996 wxEvtHandler* m_eventSink;
1997 };
1998
1999 #endif // !WXWIN_COMPATIBILITY_EVENT_TYPES
2000
2001 // ----------------------------------------------------------------------------
2002 // wxEventTable: an array of event entries terminated with {0, 0, 0, 0, 0}
2003 // ----------------------------------------------------------------------------
2004
2005 struct WXDLLIMPEXP_BASE wxEventTable
2006 {
2007 const wxEventTable *baseTable; // base event table (next in chain)
2008 const wxEventTableEntry *entries; // bottom of entry array
2009 };
2010
2011 // ----------------------------------------------------------------------------
2012 // wxEvtHandler: the base class for all objects handling wxWindows events
2013 // ----------------------------------------------------------------------------
2014
2015 class WXDLLIMPEXP_BASE wxEvtHandler : public wxObject
2016 {
2017 public:
2018 wxEvtHandler();
2019 virtual ~wxEvtHandler();
2020
2021 wxEvtHandler *GetNextHandler() const { return m_nextHandler; }
2022 wxEvtHandler *GetPreviousHandler() const { return m_previousHandler; }
2023 void SetNextHandler(wxEvtHandler *handler) { m_nextHandler = handler; }
2024 void SetPreviousHandler(wxEvtHandler *handler) { m_previousHandler = handler; }
2025
2026 void SetEvtHandlerEnabled(bool enabled) { m_enabled = enabled; }
2027 bool GetEvtHandlerEnabled() const { return m_enabled; }
2028
2029 // process an event right now
2030 virtual bool ProcessEvent(wxEvent& event);
2031
2032 // add an event to be processed later
2033 void AddPendingEvent(wxEvent& event);
2034
2035 // process all pending events
2036 void ProcessPendingEvents();
2037
2038 // add a
2039 #if wxUSE_THREADS
2040 bool ProcessThreadEvent(wxEvent& event);
2041 #endif
2042
2043 // Dynamic association of a member function handler with the event handler,
2044 // winid and event type
2045 void Connect( int winid, int lastId, int eventType,
2046 wxObjectEventFunction func,
2047 wxObject *userData = (wxObject *) NULL,
2048 wxEvtHandler *eventSink = (wxEvtHandler *) NULL );
2049
2050 // Convenience function: take just one id
2051 void Connect( int winid, int eventType,
2052 wxObjectEventFunction func,
2053 wxObject *userData = (wxObject *) NULL,
2054 wxEvtHandler *eventSink = (wxEvtHandler *) NULL )
2055 { Connect(winid, wxID_ANY, eventType, func, userData, eventSink); }
2056
2057 bool Disconnect( int winid, int lastId, wxEventType eventType,
2058 wxObjectEventFunction func = NULL,
2059 wxObject *userData = (wxObject *) NULL,
2060 wxEvtHandler *eventSink = (wxEvtHandler *) NULL );
2061
2062 // Convenience function: take just one id
2063 bool Disconnect( int winid, wxEventType eventType = wxEVT_NULL,
2064 wxObjectEventFunction func = NULL,
2065 wxObject *userData = (wxObject *) NULL,
2066 wxEvtHandler *eventSink = (wxEvtHandler *) NULL )
2067 { return Disconnect(winid, wxID_ANY, eventType, func, userData, eventSink); }
2068
2069
2070 // User data can be associated with each wxEvtHandler
2071 void SetClientObject( wxClientData *data ) { DoSetClientObject(data); }
2072 wxClientData *GetClientObject() const { return DoGetClientObject(); }
2073
2074 void SetClientData( void *data ) { DoSetClientData(data); }
2075 void *GetClientData() const { return DoGetClientData(); }
2076
2077
2078 // implementation from now on
2079 virtual bool SearchEventTable(wxEventTable& table, wxEvent& event);
2080 bool SearchDynamicEventTable( wxEvent& event );
2081
2082 #if wxUSE_THREADS
2083 void ClearEventLocker()
2084 {
2085 # if !defined(__VISAGECPP__)
2086 delete m_eventsLocker;
2087 m_eventsLocker = NULL;
2088 #endif
2089 };
2090 #endif
2091
2092 // old stuff
2093
2094 #if WXWIN_COMPATIBILITY_2
2095 virtual void OnCommand(wxWindow& WXUNUSED(win),
2096 wxCommandEvent& WXUNUSED(event))
2097 {
2098 wxFAIL_MSG(wxT("shouldn't be called any more"));
2099 }
2100
2101 // Called if child control has no callback function
2102 virtual long Default()
2103 { return GetNextHandler() ? GetNextHandler()->Default() : 0; };
2104 #endif // WXWIN_COMPATIBILITY_2
2105
2106 #if WXWIN_COMPATIBILITY
2107 virtual bool OnClose();
2108 #endif
2109
2110 private:
2111 static const wxEventTableEntry sm_eventTableEntries[];
2112
2113 protected:
2114 // hooks for wxWindow used by ProcessEvent()
2115 // -----------------------------------------
2116
2117 // this one is called before trying our own event table to allow plugging
2118 // in the validators
2119 #if wxUSE_VALIDATORS
2120 virtual bool TryValidator(wxEvent& WXUNUSED(event)) { return false; }
2121 #endif // wxUSE_VALIDATORS
2122
2123 // this one is called after failing to find the event handle in our own
2124 // table to give a chance to the other windows to process it
2125 //
2126 // base class implementation passes the event to wxTheApp
2127 virtual bool TryParent(wxEvent& event);
2128
2129
2130 static const wxEventTable sm_eventTable;
2131
2132 virtual const wxEventTable *GetEventTable() const;
2133
2134 wxEvtHandler* m_nextHandler;
2135 wxEvtHandler* m_previousHandler;
2136 wxList* m_dynamicEvents;
2137 wxList* m_pendingEvents;
2138
2139 #if wxUSE_THREADS
2140 #if defined (__VISAGECPP__)
2141 wxCriticalSection m_eventsLocker;
2142 # else
2143 wxCriticalSection* m_eventsLocker;
2144 # endif
2145 #endif
2146
2147 // Is event handler enabled?
2148 bool m_enabled;
2149
2150
2151 // The user data: either an object which will be deleted by the container
2152 // when it's deleted or some raw pointer which we do nothing with - only
2153 // one type of data can be used with the given window (i.e. you cannot set
2154 // the void data and then associate the container with wxClientData or vice
2155 // versa)
2156 union
2157 {
2158 wxClientData *m_clientObject;
2159 void *m_clientData;
2160 };
2161
2162 // what kind of data do we have?
2163 wxClientDataType m_clientDataType;
2164
2165 // client data accessors
2166 virtual void DoSetClientObject( wxClientData *data );
2167 virtual wxClientData *DoGetClientObject() const;
2168
2169 virtual void DoSetClientData( void *data );
2170 virtual void *DoGetClientData() const;
2171
2172 private:
2173 DECLARE_NO_COPY_CLASS(wxEvtHandler)
2174 DECLARE_DYNAMIC_CLASS(wxEvtHandler)
2175 };
2176
2177 // Post a message to the given eventhandler which will be processed during the
2178 // next event loop iteration
2179 inline void wxPostEvent(wxEvtHandler *dest, wxEvent& event)
2180 {
2181 wxCHECK_RET( dest, wxT("need an object to post event to in wxPostEvent") );
2182
2183 dest->AddPendingEvent(event);
2184 }
2185
2186 typedef void (wxEvtHandler::*wxEventFunction)(wxEvent&);
2187 #if wxUSE_GUI
2188 typedef void (wxEvtHandler::*wxCommandEventFunction)(wxCommandEvent&);
2189 typedef void (wxEvtHandler::*wxScrollEventFunction)(wxScrollEvent&);
2190 typedef void (wxEvtHandler::*wxScrollWinEventFunction)(wxScrollWinEvent&);
2191 typedef void (wxEvtHandler::*wxSizeEventFunction)(wxSizeEvent&);
2192 typedef void (wxEvtHandler::*wxMoveEventFunction)(wxMoveEvent&);
2193 typedef void (wxEvtHandler::*wxPaintEventFunction)(wxPaintEvent&);
2194 typedef void (wxEvtHandler::*wxEraseEventFunction)(wxEraseEvent&);
2195 typedef void (wxEvtHandler::*wxMouseEventFunction)(wxMouseEvent&);
2196 typedef void (wxEvtHandler::*wxCharEventFunction)(wxKeyEvent&);
2197 typedef void (wxEvtHandler::*wxFocusEventFunction)(wxFocusEvent&);
2198 typedef void (wxEvtHandler::*wxChildFocusEventFunction)(wxChildFocusEvent&);
2199 typedef void (wxEvtHandler::*wxActivateEventFunction)(wxActivateEvent&);
2200 typedef void (wxEvtHandler::*wxMenuEventFunction)(wxMenuEvent&);
2201 typedef void (wxEvtHandler::*wxJoystickEventFunction)(wxJoystickEvent&);
2202 typedef void (wxEvtHandler::*wxDropFilesEventFunction)(wxDropFilesEvent&);
2203 typedef void (wxEvtHandler::*wxInitDialogEventFunction)(wxInitDialogEvent&);
2204 typedef void (wxEvtHandler::*wxSysColourChangedFunction)(wxSysColourChangedEvent&);
2205 typedef void (wxEvtHandler::*wxDisplayChangedFunction)(wxDisplayChangedEvent&);
2206 typedef void (wxEvtHandler::*wxUpdateUIEventFunction)(wxUpdateUIEvent&);
2207 typedef void (wxEvtHandler::*wxIdleEventFunction)(wxIdleEvent&);
2208 typedef void (wxEvtHandler::*wxCloseEventFunction)(wxCloseEvent&);
2209 typedef void (wxEvtHandler::*wxShowEventFunction)(wxShowEvent&);
2210 typedef void (wxEvtHandler::*wxIconizeEventFunction)(wxIconizeEvent&);
2211 typedef void (wxEvtHandler::*wxMaximizeEventFunction)(wxMaximizeEvent&);
2212 typedef void (wxEvtHandler::*wxNavigationKeyEventFunction)(wxNavigationKeyEvent&);
2213 typedef void (wxEvtHandler::*wxPaletteChangedEventFunction)(wxPaletteChangedEvent&);
2214 typedef void (wxEvtHandler::*wxQueryNewPaletteEventFunction)(wxQueryNewPaletteEvent&);
2215 typedef void (wxEvtHandler::*wxWindowCreateEventFunction)(wxWindowCreateEvent&);
2216 typedef void (wxEvtHandler::*wxWindowDestroyEventFunction)(wxWindowDestroyEvent&);
2217 typedef void (wxEvtHandler::*wxSetCursorEventFunction)(wxSetCursorEvent&);
2218 typedef void (wxEvtHandler::*wxNotifyEventFunction)(wxNotifyEvent&);
2219 typedef void (wxEvtHandler::*wxHelpEventFunction)(wxHelpEvent&);
2220 typedef void (wxEvtHandler::*wxContextMenuEventFunction)(wxContextMenuEvent&);
2221 typedef void (wxEvtHandler::*wxMouseCaptureChangedEventFunction)(wxMouseCaptureChangedEvent&);
2222 #endif // wxUSE_GUI
2223
2224 // N.B. In GNU-WIN32, you *have* to take the address of a member function
2225 // (use &) or the compiler crashes...
2226
2227 #define DECLARE_EVENT_TABLE() \
2228 private: \
2229 static const wxEventTableEntry sm_eventTableEntries[]; \
2230 protected: \
2231 static const wxEventTable sm_eventTable; \
2232 virtual const wxEventTable* GetEventTable() const;
2233
2234 #define BEGIN_EVENT_TABLE(theClass, baseClass) \
2235 const wxEventTable *theClass::GetEventTable() const \
2236 { return &theClass::sm_eventTable; } \
2237 const wxEventTable theClass::sm_eventTable = \
2238 { &baseClass::sm_eventTable, &theClass::sm_eventTableEntries[0] }; \
2239 const wxEventTableEntry theClass::sm_eventTableEntries[] = { \
2240
2241 #define END_EVENT_TABLE() DECLARE_EVENT_TABLE_ENTRY( wxEVT_NULL, 0, 0, 0, 0 ) };
2242
2243 /*
2244 * Event table macros
2245 */
2246
2247 // Generic events
2248 #define EVT_CUSTOM(event, winid, func) DECLARE_EVENT_TABLE_ENTRY( event, winid, wxID_ANY, (wxObjectEventFunction) (wxEventFunction) & func, (wxObject *) NULL ),
2249 #define EVT_CUSTOM_RANGE(event, id1, id2, func) DECLARE_EVENT_TABLE_ENTRY( event, id1, id2, (wxObjectEventFunction) (wxEventFunction) & func, (wxObject *) NULL ),
2250
2251 // Miscellaneous
2252 #define EVT_SIZE(func) DECLARE_EVENT_TABLE_ENTRY( wxEVT_SIZE, wxID_ANY, wxID_ANY, (wxObjectEventFunction) (wxEventFunction) (wxSizeEventFunction) & func, (wxObject *) NULL ),
2253 #define EVT_SIZING(func) DECLARE_EVENT_TABLE_ENTRY( wxEVT_SIZING, -1, -1, (wxObjectEventFunction) (wxEventFunction) (wxSizeEventFunction) & func, (wxObject *) NULL ),
2254 #define EVT_MOVE(func) DECLARE_EVENT_TABLE_ENTRY( wxEVT_MOVE, wxID_ANY, wxID_ANY, (wxObjectEventFunction) (wxEventFunction) (wxMoveEventFunction) & func, (wxObject *) NULL ),
2255 #define EVT_MOVING(func) DECLARE_EVENT_TABLE_ENTRY( wxEVT_MOVING, -1, -1, (wxObjectEventFunction) (wxEventFunction) (wxMoveEventFunction) & func, (wxObject *) NULL ),
2256 #define EVT_CLOSE(func) DECLARE_EVENT_TABLE_ENTRY( wxEVT_CLOSE_WINDOW, wxID_ANY, wxID_ANY, (wxObjectEventFunction) (wxEventFunction) (wxCloseEventFunction) & func, (wxObject *) NULL ),
2257 #define EVT_END_SESSION(func) DECLARE_EVENT_TABLE_ENTRY( wxEVT_END_SESSION, wxID_ANY, wxID_ANY, (wxObjectEventFunction) (wxEventFunction) (wxCloseEventFunction) & func, (wxObject *) NULL ),
2258 #define EVT_QUERY_END_SESSION(func) DECLARE_EVENT_TABLE_ENTRY( wxEVT_QUERY_END_SESSION, wxID_ANY, wxID_ANY, (wxObjectEventFunction) (wxEventFunction) (wxCloseEventFunction) & func, (wxObject *) NULL ),
2259 #define EVT_PAINT(func) DECLARE_EVENT_TABLE_ENTRY( wxEVT_PAINT, wxID_ANY, wxID_ANY, (wxObjectEventFunction) (wxEventFunction) (wxPaintEventFunction) & func, (wxObject *) NULL ),
2260 #define EVT_NC_PAINT(func) DECLARE_EVENT_TABLE_ENTRY( wxEVT_NC_PAINT, wxID_ANY, wxID_ANY, (wxObjectEventFunction) (wxEventFunction) (wxPaintEventFunction) & func, (wxObject *) NULL ),
2261 #define EVT_ERASE_BACKGROUND(func) DECLARE_EVENT_TABLE_ENTRY( wxEVT_ERASE_BACKGROUND, wxID_ANY, wxID_ANY, (wxObjectEventFunction) (wxEventFunction) (wxEraseEventFunction) & func, (wxObject *) NULL ),
2262 #define EVT_CHAR(func) DECLARE_EVENT_TABLE_ENTRY( wxEVT_CHAR, wxID_ANY, wxID_ANY, (wxObjectEventFunction) (wxEventFunction) (wxCharEventFunction) & func, (wxObject *) NULL ),
2263 #define EVT_KEY_DOWN(func) DECLARE_EVENT_TABLE_ENTRY( wxEVT_KEY_DOWN, wxID_ANY, wxID_ANY, (wxObjectEventFunction) (wxEventFunction) (wxCharEventFunction) & func, (wxObject *) NULL ),
2264 #define EVT_KEY_UP(func) DECLARE_EVENT_TABLE_ENTRY( wxEVT_KEY_UP, wxID_ANY, wxID_ANY, (wxObjectEventFunction) (wxEventFunction) (wxCharEventFunction) & func, (wxObject *) NULL ),
2265 #define EVT_CHAR_HOOK(func) DECLARE_EVENT_TABLE_ENTRY( wxEVT_CHAR_HOOK, wxID_ANY, wxID_ANY, (wxObjectEventFunction) (wxEventFunction) (wxCharEventFunction) & func, NULL ),
2266 #define EVT_MENU_OPEN(func) DECLARE_EVENT_TABLE_ENTRY( wxEVT_MENU_OPEN, wxID_ANY, wxID_ANY, (wxObjectEventFunction) (wxEventFunction) (wxMenuEventFunction) & func, (wxObject *) NULL ),
2267 #define EVT_MENU_CLOSE(func) DECLARE_EVENT_TABLE_ENTRY( wxEVT_MENU_CLOSE, wxID_ANY, wxID_ANY, (wxObjectEventFunction) (wxEventFunction) (wxMenuEventFunction) & func, (wxObject *) NULL ),
2268 #define EVT_MENU_HIGHLIGHT(winid, func) DECLARE_EVENT_TABLE_ENTRY( wxEVT_MENU_HIGHLIGHT, winid, wxID_ANY, (wxObjectEventFunction) (wxEventFunction) (wxMenuEventFunction) & func, (wxObject *) NULL ),
2269 #define EVT_MENU_HIGHLIGHT_ALL(func) DECLARE_EVENT_TABLE_ENTRY( wxEVT_MENU_HIGHLIGHT, wxID_ANY, wxID_ANY, (wxObjectEventFunction) (wxEventFunction) (wxMenuEventFunction) & func, (wxObject *) NULL ),
2270 #define EVT_SET_FOCUS(func) DECLARE_EVENT_TABLE_ENTRY( wxEVT_SET_FOCUS, wxID_ANY, wxID_ANY, (wxObjectEventFunction) (wxEventFunction) (wxFocusEventFunction) & func, (wxObject *) NULL ),
2271 #define EVT_KILL_FOCUS(func) DECLARE_EVENT_TABLE_ENTRY( wxEVT_KILL_FOCUS, wxID_ANY, wxID_ANY, (wxObjectEventFunction) (wxEventFunction) (wxFocusEventFunction) & func, (wxObject *) NULL ),
2272 #define EVT_CHILD_FOCUS(func) DECLARE_EVENT_TABLE_ENTRY( wxEVT_CHILD_FOCUS, wxID_ANY, wxID_ANY, (wxObjectEventFunction) (wxEventFunction) (wxCommandEventFunction) (wxChildFocusEventFunction) & func, (wxObject *) NULL ),
2273 #define EVT_ACTIVATE(func) DECLARE_EVENT_TABLE_ENTRY( wxEVT_ACTIVATE, wxID_ANY, wxID_ANY, (wxObjectEventFunction) (wxEventFunction) (wxActivateEventFunction) & func, (wxObject *) NULL ),
2274 #define EVT_ACTIVATE_APP(func) DECLARE_EVENT_TABLE_ENTRY( wxEVT_ACTIVATE_APP, wxID_ANY, wxID_ANY, (wxObjectEventFunction) (wxEventFunction) (wxActivateEventFunction) & func, (wxObject *) NULL ),
2275 #define EVT_END_SESSION(func) DECLARE_EVENT_TABLE_ENTRY( wxEVT_END_SESSION, wxID_ANY, wxID_ANY, (wxObjectEventFunction) (wxEventFunction) (wxCloseEventFunction) & func, (wxObject *) NULL ),
2276 #define EVT_QUERY_END_SESSION(func) DECLARE_EVENT_TABLE_ENTRY( wxEVT_QUERY_END_SESSION, wxID_ANY, wxID_ANY, (wxObjectEventFunction) (wxEventFunction) (wxCloseEventFunction) & func, (wxObject *) NULL ),
2277 #define EVT_DROP_FILES(func) DECLARE_EVENT_TABLE_ENTRY( wxEVT_DROP_FILES, wxID_ANY, wxID_ANY, (wxObjectEventFunction) (wxEventFunction) (wxDropFilesEventFunction) & func, (wxObject *) NULL ),
2278 #define EVT_INIT_DIALOG(func) DECLARE_EVENT_TABLE_ENTRY( wxEVT_INIT_DIALOG, wxID_ANY, wxID_ANY, (wxObjectEventFunction) (wxEventFunction) (wxInitDialogEventFunction) & func, (wxObject *) NULL ),
2279 #define EVT_SYS_COLOUR_CHANGED(func) DECLARE_EVENT_TABLE_ENTRY( wxEVT_SYS_COLOUR_CHANGED, wxID_ANY, wxID_ANY, (wxObjectEventFunction) (wxEventFunction) (wxSysColourChangedFunction) & func, (wxObject *) NULL ),
2280 #define EVT_DISPLAY_CHANGED(func) DECLARE_EVENT_TABLE_ENTRY( wxEVT_DISPLAY_CHANGED, wxID_ANY, wxID_ANY, (wxObjectEventFunction) (wxEventFunction) (wxDisplayChangedFunction) & func, (wxObject *) NULL ),
2281 #define EVT_SHOW(func) DECLARE_EVENT_TABLE_ENTRY( wxEVT_SHOW, wxID_ANY, wxID_ANY, (wxObjectEventFunction) (wxEventFunction) (wxShowEventFunction) & func, (wxObject *) NULL ),
2282 #define EVT_MAXIMIZE(func) DECLARE_EVENT_TABLE_ENTRY( wxEVT_MAXIMIZE, wxID_ANY, wxID_ANY, (wxObjectEventFunction) (wxEventFunction) (wxMaximizeEventFunction) & func, (wxObject *) NULL ),
2283 #define EVT_ICONIZE(func) DECLARE_EVENT_TABLE_ENTRY( wxEVT_ICONIZE, wxID_ANY, wxID_ANY, (wxObjectEventFunction) (wxEventFunction) (wxIconizeEventFunction) & func, (wxObject *) NULL ),
2284 #define EVT_NAVIGATION_KEY(func) DECLARE_EVENT_TABLE_ENTRY( wxEVT_NAVIGATION_KEY, wxID_ANY, wxID_ANY, (wxObjectEventFunction) (wxEventFunction) (wxCommandEventFunction) (wxNavigationKeyEventFunction) & func, (wxObject *) NULL ),
2285 #define EVT_PALETTE_CHANGED(func) DECLARE_EVENT_TABLE_ENTRY( wxEVT_PALETTE_CHANGED, wxID_ANY, wxID_ANY, (wxObjectEventFunction) (wxEventFunction) (wxPaletteChangedEventFunction) & func, (wxObject *) NULL ),
2286 #define EVT_QUERY_NEW_PALETTE(func) DECLARE_EVENT_TABLE_ENTRY( wxEVT_QUERY_NEW_PALETTE, wxID_ANY, wxID_ANY, (wxObjectEventFunction) (wxEventFunction) (wxQueryNewPaletteEventFunction) & func, (wxObject *) NULL ),
2287 #define EVT_WINDOW_CREATE(func) DECLARE_EVENT_TABLE_ENTRY( wxEVT_CREATE, wxID_ANY, wxID_ANY, (wxObjectEventFunction) (wxEventFunction) (wxWindowCreateEventFunction) & func, (wxObject *) NULL ),
2288 #define EVT_WINDOW_DESTROY(func) DECLARE_EVENT_TABLE_ENTRY( wxEVT_DESTROY, wxID_ANY, wxID_ANY, (wxObjectEventFunction) (wxEventFunction) (wxWindowDestroyEventFunction) & func, (wxObject *) NULL ),
2289 #define EVT_SET_CURSOR(func) DECLARE_EVENT_TABLE_ENTRY( wxEVT_SET_CURSOR, wxID_ANY, wxID_ANY, (wxObjectEventFunction) (wxEventFunction) (wxSetCursorEventFunction) & func, (wxObject *) NULL ),
2290 #define EVT_MOUSE_CAPTURE_CHANGED(func) DECLARE_EVENT_TABLE_ENTRY( wxEVT_MOUSE_CAPTURE_CHANGED, wxID_ANY, wxID_ANY, (wxObjectEventFunction) (wxEventFunction) (wxMouseCaptureChangedEventFunction) & func, (wxObject *) NULL ),
2291
2292 // Mouse events
2293 #define EVT_LEFT_DOWN(func) DECLARE_EVENT_TABLE_ENTRY( wxEVT_LEFT_DOWN, wxID_ANY, wxID_ANY, (wxObjectEventFunction) (wxEventFunction) (wxMouseEventFunction) & func, (wxObject *) NULL ),
2294 #define EVT_LEFT_UP(func) DECLARE_EVENT_TABLE_ENTRY( wxEVT_LEFT_UP, wxID_ANY, wxID_ANY, (wxObjectEventFunction) (wxEventFunction) (wxMouseEventFunction) & func, (wxObject *) NULL ),
2295 #define EVT_MIDDLE_DOWN(func) DECLARE_EVENT_TABLE_ENTRY( wxEVT_MIDDLE_DOWN, wxID_ANY, wxID_ANY, (wxObjectEventFunction) (wxEventFunction) (wxMouseEventFunction) & func, (wxObject *) NULL ),
2296 #define EVT_MIDDLE_UP(func) DECLARE_EVENT_TABLE_ENTRY( wxEVT_MIDDLE_UP, wxID_ANY, wxID_ANY, (wxObjectEventFunction) (wxEventFunction) (wxMouseEventFunction) & func, (wxObject *) NULL ),
2297 #define EVT_RIGHT_DOWN(func) DECLARE_EVENT_TABLE_ENTRY( wxEVT_RIGHT_DOWN, wxID_ANY, wxID_ANY, (wxObjectEventFunction) (wxEventFunction) (wxMouseEventFunction) & func, (wxObject *) NULL ),
2298 #define EVT_RIGHT_UP(func) DECLARE_EVENT_TABLE_ENTRY( wxEVT_RIGHT_UP, wxID_ANY, wxID_ANY, (wxObjectEventFunction) (wxEventFunction) (wxMouseEventFunction) & func, (wxObject *) NULL ),
2299 #define EVT_MOTION(func) DECLARE_EVENT_TABLE_ENTRY( wxEVT_MOTION, wxID_ANY, wxID_ANY, (wxObjectEventFunction) (wxEventFunction) (wxMouseEventFunction) & func, (wxObject *) NULL ),
2300 #define EVT_LEFT_DCLICK(func) DECLARE_EVENT_TABLE_ENTRY( wxEVT_LEFT_DCLICK, wxID_ANY, wxID_ANY, (wxObjectEventFunction) (wxEventFunction) (wxMouseEventFunction) & func, (wxObject *) NULL ),
2301 #define EVT_MIDDLE_DCLICK(func) DECLARE_EVENT_TABLE_ENTRY( wxEVT_MIDDLE_DCLICK, wxID_ANY, wxID_ANY, (wxObjectEventFunction) (wxEventFunction) (wxMouseEventFunction) & func, (wxObject *) NULL ),
2302 #define EVT_RIGHT_DCLICK(func) DECLARE_EVENT_TABLE_ENTRY( wxEVT_RIGHT_DCLICK, wxID_ANY, wxID_ANY, (wxObjectEventFunction) (wxEventFunction) (wxMouseEventFunction) & func, (wxObject *) NULL ),
2303 #define EVT_LEAVE_WINDOW(func) DECLARE_EVENT_TABLE_ENTRY( wxEVT_LEAVE_WINDOW, wxID_ANY, wxID_ANY, (wxObjectEventFunction) (wxEventFunction) (wxMouseEventFunction) & func, (wxObject *) NULL ),
2304 #define EVT_ENTER_WINDOW(func) DECLARE_EVENT_TABLE_ENTRY( wxEVT_ENTER_WINDOW, wxID_ANY, wxID_ANY, (wxObjectEventFunction) (wxEventFunction) (wxMouseEventFunction) & func, (wxObject *) NULL ),
2305 #define EVT_MOUSEWHEEL(func) DECLARE_EVENT_TABLE_ENTRY( wxEVT_MOUSEWHEEL, wxID_ANY, wxID_ANY, (wxObjectEventFunction) (wxEventFunction) (wxMouseEventFunction) & func, (wxObject *) NULL ),
2306
2307 // All mouse events
2308 #define EVT_MOUSE_EVENTS(func) \
2309 DECLARE_EVENT_TABLE_ENTRY( wxEVT_LEFT_DOWN, wxID_ANY, wxID_ANY, (wxObjectEventFunction) (wxEventFunction) (wxMouseEventFunction) & func, (wxObject *) NULL ),\
2310 DECLARE_EVENT_TABLE_ENTRY( wxEVT_LEFT_UP, wxID_ANY, wxID_ANY, (wxObjectEventFunction) (wxEventFunction) (wxMouseEventFunction) & func, (wxObject *) NULL ),\
2311 DECLARE_EVENT_TABLE_ENTRY( wxEVT_MIDDLE_DOWN, wxID_ANY, wxID_ANY, (wxObjectEventFunction) (wxEventFunction) (wxMouseEventFunction) & func, (wxObject *) NULL ),\
2312 DECLARE_EVENT_TABLE_ENTRY( wxEVT_MIDDLE_UP, wxID_ANY, wxID_ANY, (wxObjectEventFunction) (wxEventFunction) (wxMouseEventFunction) & func, (wxObject *) NULL ),\
2313 DECLARE_EVENT_TABLE_ENTRY( wxEVT_RIGHT_DOWN, wxID_ANY, wxID_ANY, (wxObjectEventFunction) (wxEventFunction) (wxMouseEventFunction) & func, (wxObject *) NULL ),\
2314 DECLARE_EVENT_TABLE_ENTRY( wxEVT_RIGHT_UP, wxID_ANY, wxID_ANY, (wxObjectEventFunction) (wxEventFunction) (wxMouseEventFunction) & func, (wxObject *) NULL ),\
2315 DECLARE_EVENT_TABLE_ENTRY( wxEVT_MOTION, wxID_ANY, wxID_ANY, (wxObjectEventFunction) (wxEventFunction) (wxMouseEventFunction) & func, (wxObject *) NULL ),\
2316 DECLARE_EVENT_TABLE_ENTRY( wxEVT_LEFT_DCLICK, wxID_ANY, wxID_ANY, (wxObjectEventFunction) (wxEventFunction) (wxMouseEventFunction) & func, (wxObject *) NULL ),\
2317 DECLARE_EVENT_TABLE_ENTRY( wxEVT_MIDDLE_DCLICK, wxID_ANY, wxID_ANY, (wxObjectEventFunction) (wxEventFunction) (wxMouseEventFunction) & func, (wxObject *) NULL ),\
2318 DECLARE_EVENT_TABLE_ENTRY( wxEVT_RIGHT_DCLICK, wxID_ANY, wxID_ANY, (wxObjectEventFunction) (wxEventFunction) (wxMouseEventFunction) & func, (wxObject *) NULL ),\
2319 DECLARE_EVENT_TABLE_ENTRY( wxEVT_ENTER_WINDOW, wxID_ANY, wxID_ANY, (wxObjectEventFunction) (wxEventFunction) (wxMouseEventFunction) & func, (wxObject *) NULL ),\
2320 DECLARE_EVENT_TABLE_ENTRY( wxEVT_LEAVE_WINDOW, wxID_ANY, wxID_ANY, (wxObjectEventFunction) (wxEventFunction) (wxMouseEventFunction) & func, (wxObject *) NULL ),\
2321 DECLARE_EVENT_TABLE_ENTRY( wxEVT_MOUSEWHEEL, wxID_ANY, wxID_ANY, (wxObjectEventFunction) (wxEventFunction) (wxMouseEventFunction) & func, (wxObject *) NULL ),
2322
2323 // EVT_COMMAND
2324 #define EVT_COMMAND(winid, event, fn) DECLARE_EVENT_TABLE_ENTRY( event, winid, wxID_ANY, (wxObjectEventFunction) (wxEventFunction) (wxCommandEventFunction) & fn, (wxObject *) NULL ),
2325 #define EVT_COMMAND_RANGE(id1, id2, event, fn) DECLARE_EVENT_TABLE_ENTRY( event, id1, id2, (wxObjectEventFunction) (wxEventFunction) (wxCommandEventFunction) & fn, (wxObject *) NULL ),
2326
2327 // Scrolling from wxWindow (sent to wxScrolledWindow)
2328 #define EVT_SCROLLWIN(func) \
2329 DECLARE_EVENT_TABLE_ENTRY( wxEVT_SCROLLWIN_TOP, wxID_ANY, wxID_ANY, (wxObjectEventFunction) (wxEventFunction) (wxScrollWinEventFunction) & func, (wxObject *) NULL ),\
2330 DECLARE_EVENT_TABLE_ENTRY( wxEVT_SCROLLWIN_BOTTOM, wxID_ANY, wxID_ANY, (wxObjectEventFunction) (wxEventFunction) (wxScrollWinEventFunction) & func, (wxObject *) NULL ),\
2331 DECLARE_EVENT_TABLE_ENTRY( wxEVT_SCROLLWIN_LINEUP, wxID_ANY, wxID_ANY, (wxObjectEventFunction) (wxEventFunction) (wxScrollWinEventFunction) & func, (wxObject *) NULL ),\
2332 DECLARE_EVENT_TABLE_ENTRY( wxEVT_SCROLLWIN_LINEDOWN, wxID_ANY, wxID_ANY, (wxObjectEventFunction) (wxEventFunction) (wxScrollWinEventFunction) & func, (wxObject *) NULL ),\
2333 DECLARE_EVENT_TABLE_ENTRY( wxEVT_SCROLLWIN_PAGEUP, wxID_ANY, wxID_ANY, (wxObjectEventFunction) (wxEventFunction) (wxScrollWinEventFunction) & func, (wxObject *) NULL ),\
2334 DECLARE_EVENT_TABLE_ENTRY( wxEVT_SCROLLWIN_PAGEDOWN, wxID_ANY, wxID_ANY, (wxObjectEventFunction) (wxEventFunction) (wxScrollWinEventFunction) & func, (wxObject *) NULL ),\
2335 DECLARE_EVENT_TABLE_ENTRY( wxEVT_SCROLLWIN_THUMBTRACK, wxID_ANY, wxID_ANY, (wxObjectEventFunction) (wxEventFunction) (wxScrollWinEventFunction) & func, (wxObject *) NULL ),\
2336 DECLARE_EVENT_TABLE_ENTRY( wxEVT_SCROLLWIN_THUMBRELEASE, wxID_ANY, wxID_ANY, (wxObjectEventFunction) (wxEventFunction) (wxScrollWinEventFunction) & func, (wxObject *) NULL ),
2337
2338 #define EVT_SCROLLWIN_TOP(func) DECLARE_EVENT_TABLE_ENTRY( wxEVT_SCROLLWIN_TOP, wxID_ANY, wxID_ANY, (wxObjectEventFunction) (wxEventFunction) (wxScrollWinEventFunction) & func, (wxObject *) NULL ),
2339 #define EVT_SCROLLWIN_BOTTOM(func) DECLARE_EVENT_TABLE_ENTRY( wxEVT_SCROLLWIN_BOTTOM, wxID_ANY, wxID_ANY, (wxObjectEventFunction) (wxEventFunction) (wxScrollWinEventFunction) & func, (wxObject *) NULL ),
2340 #define EVT_SCROLLWIN_LINEUP(func) DECLARE_EVENT_TABLE_ENTRY( wxEVT_SCROLLWIN_LINEUP, wxID_ANY, wxID_ANY, (wxObjectEventFunction) (wxEventFunction) (wxScrollWinEventFunction) & func, (wxObject *) NULL ),
2341 #define EVT_SCROLLWIN_LINEDOWN(func) DECLARE_EVENT_TABLE_ENTRY( wxEVT_SCROLLWIN_LINEDOWN, wxID_ANY, wxID_ANY, (wxObjectEventFunction) (wxEventFunction) (wxScrollWinEventFunction) & func, (wxObject *) NULL ),
2342 #define EVT_SCROLLWIN_PAGEUP(func) DECLARE_EVENT_TABLE_ENTRY( wxEVT_SCROLLWIN_PAGEUP, wxID_ANY, wxID_ANY, (wxObjectEventFunction) (wxEventFunction) (wxScrollWinEventFunction) & func, (wxObject *) NULL ),
2343 #define EVT_SCROLLWIN_PAGEDOWN(func) DECLARE_EVENT_TABLE_ENTRY( wxEVT_SCROLLWIN_PAGEDOWN, wxID_ANY, wxID_ANY, (wxObjectEventFunction) (wxEventFunction) (wxScrollWinEventFunction) & func, (wxObject *) NULL ),
2344 #define EVT_SCROLLWIN_THUMBTRACK(func) DECLARE_EVENT_TABLE_ENTRY( wxEVT_SCROLLWIN_THUMBTRACK, wxID_ANY, wxID_ANY, (wxObjectEventFunction) (wxEventFunction) (wxScrollWinEventFunction) & func, (wxObject *) NULL ),
2345 #define EVT_SCROLLWIN_THUMBRELEASE(func) DECLARE_EVENT_TABLE_ENTRY( wxEVT_SCROLLWIN_THUMBRELEASE, wxID_ANY, wxID_ANY, (wxObjectEventFunction) (wxEventFunction) (wxScrollWinEventFunction) & func, (wxObject *) NULL ),
2346
2347 // Scrolling from wxSlider and wxScrollBar
2348 #define EVT_SCROLL(func) \
2349 DECLARE_EVENT_TABLE_ENTRY( wxEVT_SCROLL_TOP, wxID_ANY, wxID_ANY, (wxObjectEventFunction) (wxEventFunction) (wxScrollEventFunction) & func, (wxObject *) NULL ),\
2350 DECLARE_EVENT_TABLE_ENTRY( wxEVT_SCROLL_BOTTOM, wxID_ANY, wxID_ANY, (wxObjectEventFunction) (wxEventFunction) (wxScrollEventFunction) & func, (wxObject *) NULL ),\
2351 DECLARE_EVENT_TABLE_ENTRY( wxEVT_SCROLL_LINEUP, wxID_ANY, wxID_ANY, (wxObjectEventFunction) (wxEventFunction) (wxScrollEventFunction) & func, (wxObject *) NULL ),\
2352 DECLARE_EVENT_TABLE_ENTRY( wxEVT_SCROLL_LINEDOWN, wxID_ANY, wxID_ANY, (wxObjectEventFunction) (wxEventFunction) (wxScrollEventFunction) & func, (wxObject *) NULL ),\
2353 DECLARE_EVENT_TABLE_ENTRY( wxEVT_SCROLL_PAGEUP, wxID_ANY, wxID_ANY, (wxObjectEventFunction) (wxEventFunction) (wxScrollEventFunction) & func, (wxObject *) NULL ),\
2354 DECLARE_EVENT_TABLE_ENTRY( wxEVT_SCROLL_PAGEDOWN, wxID_ANY, wxID_ANY, (wxObjectEventFunction) (wxEventFunction) (wxScrollEventFunction) & func, (wxObject *) NULL ),\
2355 DECLARE_EVENT_TABLE_ENTRY( wxEVT_SCROLL_THUMBTRACK, wxID_ANY, wxID_ANY, (wxObjectEventFunction) (wxEventFunction) (wxScrollEventFunction) & func, (wxObject *) NULL ),\
2356 DECLARE_EVENT_TABLE_ENTRY( wxEVT_SCROLL_THUMBRELEASE, wxID_ANY, wxID_ANY, (wxObjectEventFunction) (wxEventFunction) (wxScrollEventFunction) & func, (wxObject *) NULL ), \
2357 DECLARE_EVENT_TABLE_ENTRY( wxEVT_SCROLL_ENDSCROLL, wxID_ANY, wxID_ANY, (wxObjectEventFunction) (wxEventFunction) (wxScrollEventFunction) & func, (wxObject *) NULL ),
2358
2359 #define EVT_SCROLL_TOP(func) DECLARE_EVENT_TABLE_ENTRY( wxEVT_SCROLL_TOP, wxID_ANY, wxID_ANY, (wxObjectEventFunction) (wxEventFunction) (wxScrollEventFunction) & func, (wxObject *) NULL ),
2360 #define EVT_SCROLL_BOTTOM(func) DECLARE_EVENT_TABLE_ENTRY( wxEVT_SCROLL_BOTTOM, wxID_ANY, wxID_ANY, (wxObjectEventFunction) (wxEventFunction) (wxScrollEventFunction) & func, (wxObject *) NULL ),
2361 #define EVT_SCROLL_LINEUP(func) DECLARE_EVENT_TABLE_ENTRY( wxEVT_SCROLL_LINEUP, wxID_ANY, wxID_ANY, (wxObjectEventFunction) (wxEventFunction) (wxScrollEventFunction) & func, (wxObject *) NULL ),
2362 #define EVT_SCROLL_LINEDOWN(func) DECLARE_EVENT_TABLE_ENTRY( wxEVT_SCROLL_LINEDOWN, wxID_ANY, wxID_ANY, (wxObjectEventFunction) (wxEventFunction) (wxScrollEventFunction) & func, (wxObject *) NULL ),
2363 #define EVT_SCROLL_PAGEUP(func) DECLARE_EVENT_TABLE_ENTRY( wxEVT_SCROLL_PAGEUP, wxID_ANY, wxID_ANY, (wxObjectEventFunction) (wxEventFunction) (wxScrollEventFunction) & func, (wxObject *) NULL ),
2364 #define EVT_SCROLL_PAGEDOWN(func) DECLARE_EVENT_TABLE_ENTRY( wxEVT_SCROLL_PAGEDOWN, wxID_ANY, wxID_ANY, (wxObjectEventFunction) (wxEventFunction) (wxScrollEventFunction) & func, (wxObject *) NULL ),
2365 #define EVT_SCROLL_THUMBTRACK(func) DECLARE_EVENT_TABLE_ENTRY( wxEVT_SCROLL_THUMBTRACK, wxID_ANY, wxID_ANY, (wxObjectEventFunction) (wxEventFunction) (wxScrollEventFunction) & func, (wxObject *) NULL ),
2366 #define EVT_SCROLL_THUMBRELEASE(func) DECLARE_EVENT_TABLE_ENTRY( wxEVT_SCROLL_THUMBRELEASE, wxID_ANY, wxID_ANY, (wxObjectEventFunction) (wxEventFunction) (wxScrollEventFunction) & func, (wxObject *) NULL ),
2367 #define EVT_SCROLL_ENDSCROLL(func) DECLARE_EVENT_TABLE_ENTRY( wxEVT_SCROLL_ENDSCROLL, wxID_ANY, wxID_ANY, (wxObjectEventFunction) (wxEventFunction) (wxScrollEventFunction) & func, (wxObject *) NULL ),
2368
2369 // Scrolling from wxSlider and wxScrollBar, with an id
2370 #define EVT_COMMAND_SCROLL(winid, func) \
2371 DECLARE_EVENT_TABLE_ENTRY( wxEVT_SCROLL_TOP, winid, wxID_ANY, (wxObjectEventFunction) (wxEventFunction) (wxScrollEventFunction) & func, (wxObject *) NULL ),\
2372 DECLARE_EVENT_TABLE_ENTRY( wxEVT_SCROLL_BOTTOM, winid, wxID_ANY, (wxObjectEventFunction) (wxEventFunction) (wxScrollEventFunction) & func, (wxObject *) NULL ),\
2373 DECLARE_EVENT_TABLE_ENTRY( wxEVT_SCROLL_LINEUP, winid, wxID_ANY, (wxObjectEventFunction) (wxEventFunction) (wxScrollEventFunction) & func, (wxObject *) NULL ),\
2374 DECLARE_EVENT_TABLE_ENTRY( wxEVT_SCROLL_LINEDOWN, winid, wxID_ANY, (wxObjectEventFunction) (wxEventFunction) (wxScrollEventFunction) & func, (wxObject *) NULL ),\
2375 DECLARE_EVENT_TABLE_ENTRY( wxEVT_SCROLL_PAGEUP, winid, wxID_ANY, (wxObjectEventFunction) (wxEventFunction) (wxScrollEventFunction) & func, (wxObject *) NULL ),\
2376 DECLARE_EVENT_TABLE_ENTRY( wxEVT_SCROLL_PAGEDOWN, winid, wxID_ANY, (wxObjectEventFunction) (wxEventFunction) (wxScrollEventFunction) & func, (wxObject *) NULL ),\
2377 DECLARE_EVENT_TABLE_ENTRY( wxEVT_SCROLL_THUMBTRACK, winid, wxID_ANY, (wxObjectEventFunction) (wxEventFunction) (wxScrollEventFunction) & func, (wxObject *) NULL ),\
2378 DECLARE_EVENT_TABLE_ENTRY( wxEVT_SCROLL_THUMBRELEASE, winid, wxID_ANY, (wxObjectEventFunction) (wxEventFunction) (wxScrollEventFunction) & func, (wxObject *) NULL ), \
2379 DECLARE_EVENT_TABLE_ENTRY( wxEVT_SCROLL_ENDSCROLL, winid, wxID_ANY, (wxObjectEventFunction) (wxEventFunction) (wxScrollEventFunction) & func, (wxObject *) NULL ),
2380
2381 #define EVT_COMMAND_SCROLL_TOP(winid, func) DECLARE_EVENT_TABLE_ENTRY( wxEVT_SCROLL_TOP, winid, wxID_ANY, (wxObjectEventFunction) (wxEventFunction) (wxScrollEventFunction) & func, (wxObject *) NULL ),
2382 #define EVT_COMMAND_SCROLL_BOTTOM(winid, func) DECLARE_EVENT_TABLE_ENTRY( wxEVT_SCROLL_BOTTOM, winid, wxID_ANY, (wxObjectEventFunction) (wxEventFunction) (wxScrollEventFunction) & func, (wxObject *) NULL ),
2383 #define EVT_COMMAND_SCROLL_LINEUP(winid, func) DECLARE_EVENT_TABLE_ENTRY( wxEVT_SCROLL_LINEUP, winid, wxID_ANY, (wxObjectEventFunction) (wxEventFunction) (wxScrollEventFunction) & func, (wxObject *) NULL ),
2384 #define EVT_COMMAND_SCROLL_LINEDOWN(winid, func) DECLARE_EVENT_TABLE_ENTRY( wxEVT_SCROLL_LINEDOWN, winid, wxID_ANY, (wxObjectEventFunction) (wxEventFunction) (wxScrollEventFunction) & func, (wxObject *) NULL ),
2385 #define EVT_COMMAND_SCROLL_PAGEUP(winid, func) DECLARE_EVENT_TABLE_ENTRY( wxEVT_SCROLL_PAGEUP, winid, wxID_ANY, (wxObjectEventFunction) (wxEventFunction) (wxScrollEventFunction) & func, (wxObject *) NULL ),
2386 #define EVT_COMMAND_SCROLL_PAGEDOWN(winid, func) DECLARE_EVENT_TABLE_ENTRY( wxEVT_SCROLL_PAGEDOWN, winid, wxID_ANY, (wxObjectEventFunction) (wxEventFunction) (wxScrollEventFunction) & func, (wxObject *) NULL ),
2387 #define EVT_COMMAND_SCROLL_THUMBTRACK(winid, func) DECLARE_EVENT_TABLE_ENTRY( wxEVT_SCROLL_THUMBTRACK, winid, wxID_ANY, (wxObjectEventFunction) (wxEventFunction) (wxScrollEventFunction) & func, (wxObject *) NULL ),
2388 #define EVT_COMMAND_SCROLL_THUMBRELEASE(winid, func) DECLARE_EVENT_TABLE_ENTRY( wxEVT_SCROLL_THUMBRELEASE, winid, wxID_ANY, (wxObjectEventFunction) (wxEventFunction) (wxScrollEventFunction) & func, (wxObject *) NULL ),
2389 #define EVT_COMMAND_SCROLL_ENDSCROLL(winid, func) DECLARE_EVENT_TABLE_ENTRY( wxEVT_SCROLL_ENDSCROLL, winid, wxID_ANY, (wxObjectEventFunction) (wxEventFunction) (wxScrollEventFunction) & func, (wxObject *) NULL ),
2390
2391 // Convenience macros for commonly-used commands
2392 #define EVT_BUTTON(winid, fn) DECLARE_EVENT_TABLE_ENTRY( wxEVT_COMMAND_BUTTON_CLICKED, winid, wxID_ANY, (wxObjectEventFunction) (wxEventFunction) (wxCommandEventFunction) & fn, (wxObject *) NULL ),
2393 #define EVT_CHECKBOX(winid, fn) DECLARE_EVENT_TABLE_ENTRY( wxEVT_COMMAND_CHECKBOX_CLICKED, winid, wxID_ANY, (wxObjectEventFunction) (wxEventFunction) (wxCommandEventFunction) & fn, (wxObject *) NULL ),
2394 #define EVT_CHOICE(winid, fn) DECLARE_EVENT_TABLE_ENTRY( wxEVT_COMMAND_CHOICE_SELECTED, winid, wxID_ANY, (wxObjectEventFunction) (wxEventFunction) (wxCommandEventFunction) & fn, (wxObject *) NULL ),
2395 #define EVT_LISTBOX(winid, fn) DECLARE_EVENT_TABLE_ENTRY( wxEVT_COMMAND_LISTBOX_SELECTED, winid, wxID_ANY, (wxObjectEventFunction) (wxEventFunction) (wxCommandEventFunction) & fn, (wxObject *) NULL ),
2396 #define EVT_LISTBOX_DCLICK(winid, fn) DECLARE_EVENT_TABLE_ENTRY( wxEVT_COMMAND_LISTBOX_DOUBLECLICKED, winid, wxID_ANY, (wxObjectEventFunction) (wxEventFunction) (wxCommandEventFunction) & fn, (wxObject *) NULL ),
2397 #define EVT_MENU(winid, fn) DECLARE_EVENT_TABLE_ENTRY( wxEVT_COMMAND_MENU_SELECTED, winid, wxID_ANY, (wxObjectEventFunction) (wxEventFunction) (wxCommandEventFunction) & fn, (wxObject *) NULL ),
2398 #define EVT_MENU_RANGE(id1, id2, fn) DECLARE_EVENT_TABLE_ENTRY( wxEVT_COMMAND_MENU_SELECTED, id1, id2, (wxObjectEventFunction) (wxEventFunction) (wxCommandEventFunction) & fn, (wxObject *) NULL ),
2399 #define EVT_SLIDER(winid, fn) DECLARE_EVENT_TABLE_ENTRY( wxEVT_COMMAND_SLIDER_UPDATED, winid, wxID_ANY, (wxObjectEventFunction) (wxEventFunction) (wxCommandEventFunction) & fn, (wxObject *) NULL ),
2400 #define EVT_RADIOBOX(winid, fn) DECLARE_EVENT_TABLE_ENTRY( wxEVT_COMMAND_RADIOBOX_SELECTED, winid, wxID_ANY, (wxObjectEventFunction) (wxEventFunction) (wxCommandEventFunction) & fn, (wxObject *) NULL ),
2401 #define EVT_RADIOBUTTON(winid, fn) DECLARE_EVENT_TABLE_ENTRY( wxEVT_COMMAND_RADIOBUTTON_SELECTED, winid, wxID_ANY, (wxObjectEventFunction) (wxEventFunction) (wxCommandEventFunction) & fn, (wxObject *) NULL ),
2402 // EVT_SCROLLBAR is now obsolete since we use EVT_COMMAND_SCROLL... events
2403 #define EVT_SCROLLBAR(winid, fn) DECLARE_EVENT_TABLE_ENTRY( wxEVT_COMMAND_SCROLLBAR_UPDATED, winid, wxID_ANY, (wxObjectEventFunction) (wxEventFunction) (wxCommandEventFunction) & fn, (wxObject *) NULL ),
2404 #define EVT_VLBOX(winid, fn) DECLARE_EVENT_TABLE_ENTRY( wxEVT_COMMAND_VLBOX_SELECTED, winid, wxID_ANY, (wxObjectEventFunction) (wxEventFunction) (wxCommandEventFunction) & fn, (wxObject *) NULL ),
2405 #define EVT_COMBOBOX(winid, fn) DECLARE_EVENT_TABLE_ENTRY( wxEVT_COMMAND_COMBOBOX_SELECTED, winid, wxID_ANY, (wxObjectEventFunction) (wxEventFunction) (wxCommandEventFunction) & fn, (wxObject *) NULL ),
2406 #define EVT_TOOL(winid, fn) DECLARE_EVENT_TABLE_ENTRY( wxEVT_COMMAND_TOOL_CLICKED, winid, wxID_ANY, (wxObjectEventFunction) (wxEventFunction) (wxCommandEventFunction) & fn, (wxObject *) NULL ),
2407 #define EVT_TOOL_RANGE(id1, id2, fn) DECLARE_EVENT_TABLE_ENTRY( wxEVT_COMMAND_TOOL_CLICKED, id1, id2, (wxObjectEventFunction) (wxEventFunction) (wxCommandEventFunction) & fn, (wxObject *) NULL ),
2408 #define EVT_TOOL_RCLICKED(winid, fn) DECLARE_EVENT_TABLE_ENTRY( wxEVT_COMMAND_TOOL_RCLICKED, winid, wxID_ANY, (wxObjectEventFunction) (wxEventFunction) (wxCommandEventFunction) & fn, (wxObject *) NULL ),
2409 #define EVT_TOOL_RCLICKED_RANGE(id1, id2, fn) DECLARE_EVENT_TABLE_ENTRY( wxEVT_COMMAND_TOOL_RCLICKED, id1, id2, (wxObjectEventFunction) (wxEventFunction) (wxCommandEventFunction) & fn, (wxObject *) NULL ),
2410 #define EVT_TOOL_ENTER(winid, fn) DECLARE_EVENT_TABLE_ENTRY( wxEVT_COMMAND_TOOL_ENTER, winid, wxID_ANY, (wxObjectEventFunction) (wxEventFunction) (wxCommandEventFunction) & fn, (wxObject *) NULL ),
2411 #define EVT_CHECKLISTBOX(winid, fn) DECLARE_EVENT_TABLE_ENTRY( wxEVT_COMMAND_CHECKLISTBOX_TOGGLED, winid, wxID_ANY, (wxObjectEventFunction) (wxEventFunction) (wxCommandEventFunction) & fn, (wxObject *) NULL ),
2412
2413 // Generic command events
2414 #define EVT_COMMAND_LEFT_CLICK(winid, fn) DECLARE_EVENT_TABLE_ENTRY( wxEVT_COMMAND_LEFT_CLICK, winid, wxID_ANY, (wxObjectEventFunction) (wxEventFunction) (wxCommandEventFunction) & fn, (wxObject *) NULL ),
2415 #define EVT_COMMAND_LEFT_DCLICK(winid, fn) DECLARE_EVENT_TABLE_ENTRY( wxEVT_COMMAND_LEFT_DCLICK, winid, wxID_ANY, (wxObjectEventFunction) (wxEventFunction) (wxCommandEventFunction) & fn, (wxObject *) NULL ),
2416 #define EVT_COMMAND_RIGHT_CLICK(winid, fn) DECLARE_EVENT_TABLE_ENTRY( wxEVT_COMMAND_RIGHT_CLICK, winid, wxID_ANY, (wxObjectEventFunction) (wxEventFunction) (wxCommandEventFunction) & fn, (wxObject *) NULL ),
2417 #define EVT_COMMAND_RIGHT_DCLICK(winid, fn) DECLARE_EVENT_TABLE_ENTRY( wxEVT_COMMAND_RIGHT_DCLICK, winid, wxID_ANY, (wxObjectEventFunction) (wxEventFunction) (wxCommandEventFunction) & fn, (wxObject *) NULL ),
2418 #define EVT_COMMAND_SET_FOCUS(winid, fn) DECLARE_EVENT_TABLE_ENTRY( wxEVT_COMMAND_SET_FOCUS, winid, wxID_ANY, (wxObjectEventFunction) (wxEventFunction) (wxCommandEventFunction) & fn, (wxObject *) NULL ),
2419 #define EVT_COMMAND_KILL_FOCUS(winid, fn) DECLARE_EVENT_TABLE_ENTRY( wxEVT_COMMAND_KILL_FOCUS, winid, wxID_ANY, (wxObjectEventFunction) (wxEventFunction) (wxCommandEventFunction) & fn, (wxObject *) NULL ),
2420 #define EVT_COMMAND_ENTER(winid, fn) DECLARE_EVENT_TABLE_ENTRY( wxEVT_COMMAND_ENTER, winid, wxID_ANY, (wxObjectEventFunction) (wxEventFunction) (wxCommandEventFunction) & fn, (wxObject *) NULL ),
2421
2422 // Joystick events
2423
2424 #define EVT_JOY_BUTTON_DOWN(func) \
2425 DECLARE_EVENT_TABLE_ENTRY( wxEVT_JOY_BUTTON_DOWN, wxID_ANY, wxID_ANY, (wxObjectEventFunction) (wxEventFunction) (wxJoystickEventFunction) & func, (wxObject *) NULL ),
2426 #define EVT_JOY_BUTTON_UP(func) \
2427 DECLARE_EVENT_TABLE_ENTRY( wxEVT_JOY_BUTTON_UP, wxID_ANY, wxID_ANY, (wxObjectEventFunction) (wxEventFunction) (wxJoystickEventFunction) & func, (wxObject *) NULL ),
2428 #define EVT_JOY_MOVE(func) \
2429 DECLARE_EVENT_TABLE_ENTRY( wxEVT_JOY_MOVE, wxID_ANY, wxID_ANY, (wxObjectEventFunction) (wxEventFunction) (wxJoystickEventFunction) & func, (wxObject *) NULL ),
2430 #define EVT_JOY_ZMOVE(func) \
2431 DECLARE_EVENT_TABLE_ENTRY( wxEVT_JOY_ZMOVE, wxID_ANY, wxID_ANY, (wxObjectEventFunction) (wxEventFunction) (wxJoystickEventFunction) & func, (wxObject *) NULL ),
2432
2433 // These are obsolete, see _BUTTON_ events
2434 #define EVT_JOY_DOWN(func) \
2435 DECLARE_EVENT_TABLE_ENTRY( wxEVT_JOY_BUTTON_DOWN, wxID_ANY, wxID_ANY, (wxObjectEventFunction) (wxEventFunction) (wxJoystickEventFunction) & func, (wxObject *) NULL ),
2436 #define EVT_JOY_UP(func) \
2437 DECLARE_EVENT_TABLE_ENTRY( wxEVT_JOY_BUTTON_UP, wxID_ANY, wxID_ANY, (wxObjectEventFunction) (wxEventFunction) (wxJoystickEventFunction) & func, (wxObject *) NULL ),
2438
2439 // All joystick events
2440 #define EVT_JOYSTICK_EVENTS(func) \
2441 DECLARE_EVENT_TABLE_ENTRY( wxEVT_JOY_BUTTON_DOWN, wxID_ANY, wxID_ANY, (wxObjectEventFunction) (wxEventFunction) (wxJoystickEventFunction) & func, (wxObject *) NULL ),\
2442 DECLARE_EVENT_TABLE_ENTRY( wxEVT_JOY_BUTTON_UP, wxID_ANY, wxID_ANY, (wxObjectEventFunction) (wxEventFunction) (wxJoystickEventFunction) & func, (wxObject *) NULL ),\
2443 DECLARE_EVENT_TABLE_ENTRY( wxEVT_JOY_MOVE, wxID_ANY, wxID_ANY, (wxObjectEventFunction) (wxEventFunction) (wxJoystickEventFunction) & func, (wxObject *) NULL ),\
2444 DECLARE_EVENT_TABLE_ENTRY( wxEVT_JOY_ZMOVE, wxID_ANY, wxID_ANY, (wxObjectEventFunction) (wxEventFunction) (wxJoystickEventFunction) & func, (wxObject *) NULL ),
2445
2446 // Idle event
2447 #define EVT_IDLE(func) \
2448 DECLARE_EVENT_TABLE_ENTRY( wxEVT_IDLE, wxID_ANY, wxID_ANY, (wxObjectEventFunction) (wxEventFunction) (wxIdleEventFunction) & func, (wxObject *) NULL ),
2449
2450 // Update UI event
2451 #define EVT_UPDATE_UI(winid, func) \
2452 DECLARE_EVENT_TABLE_ENTRY( wxEVT_UPDATE_UI, winid, wxID_ANY, (wxObjectEventFunction) (wxEventFunction) (wxUpdateUIEventFunction) & func, (wxObject *) NULL ),
2453 #define EVT_UPDATE_UI_RANGE(id1, id2, func) \
2454 DECLARE_EVENT_TABLE_ENTRY( wxEVT_UPDATE_UI, id1, id2, (wxObjectEventFunction)(wxEventFunction)(wxUpdateUIEventFunction)&func, (wxObject *) NULL ),
2455
2456 // Help events
2457 #define EVT_HELP(winid, func) \
2458 DECLARE_EVENT_TABLE_ENTRY( wxEVT_HELP, winid, wxID_ANY, (wxObjectEventFunction) (wxEventFunction) (wxCommandEventFunction) (wxHelpEventFunction) & func, (wxObject *) NULL ),
2459
2460 #define EVT_HELP_RANGE(id1, id2, func) \
2461 DECLARE_EVENT_TABLE_ENTRY( wxEVT_HELP, id1, id2, (wxObjectEventFunction) (wxEventFunction) (wxCommandEventFunction) (wxHelpEventFunction) & func, (wxObject *) NULL ),
2462
2463 #define EVT_DETAILED_HELP(winid, func) \
2464 DECLARE_EVENT_TABLE_ENTRY( wxEVT_DETAILED_HELP, winid, wxID_ANY, (wxObjectEventFunction) (wxEventFunction) (wxCommandEventFunction) (wxHelpEventFunction) & func, (wxObject *) NULL ),
2465
2466 #define EVT_DETAILED_HELP_RANGE(id1, id2, func) \
2467 DECLARE_EVENT_TABLE_ENTRY( wxEVT_DETAILED_HELP, id1, id2, (wxObjectEventFunction) (wxEventFunction) (wxCommandEventFunction) (wxHelpEventFunction) & func, (wxObject *) NULL ),
2468
2469 // Context Menu Events
2470 #define EVT_CONTEXT_MENU(func) \
2471 DECLARE_EVENT_TABLE_ENTRY(wxEVT_CONTEXT_MENU, wxID_ANY, wxID_ANY, (wxObjectEventFunction) (wxEventFunction) (wxContextMenuEventFunction) & func, (wxObject *) NULL ),
2472
2473 // ----------------------------------------------------------------------------
2474 // Global data
2475 // ----------------------------------------------------------------------------
2476
2477 // for pending event processing - notice that there is intentionally no
2478 // WXDLLEXPORT here
2479 extern WXDLLIMPEXP_BASE wxList *wxPendingEvents;
2480 #if wxUSE_THREADS
2481 extern WXDLLIMPEXP_BASE wxCriticalSection *wxPendingEventsLocker;
2482 #endif
2483
2484 // ----------------------------------------------------------------------------
2485 // Helper functions
2486 // ----------------------------------------------------------------------------
2487
2488 #if wxUSE_GUI
2489
2490 // Find a window with the focus, that is also a descendant of the given window.
2491 // This is used to determine the window to initially send commands to.
2492 wxWindow* wxFindFocusDescendant(wxWindow* ancestor);
2493
2494 #endif // wxUSE_GUI
2495
2496 #endif
2497 // _WX_EVENTH__