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