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