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