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