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