1 /////////////////////////////////////////////////////////////////////////////
3 // Purpose: Event classes
4 // Author: Julian Smart
8 // Copyright: (c) wxWindows team
9 // Licence: wxWindows licence
10 /////////////////////////////////////////////////////////////////////////////
16 #pragma interface "event.h"
20 #include "wx/object.h"
23 #include "wx/gdicmn.h"
24 #include "wx/cursor.h"
27 #include "wx/thread.h"
29 // ----------------------------------------------------------------------------
30 // forward declarations
31 // ----------------------------------------------------------------------------
33 class WXDLLEXPORT wxList
;
36 class WXDLLEXPORT wxClientData
;
37 class WXDLLEXPORT wxDC
;
38 class WXDLLEXPORT wxMenu
;
39 class WXDLLEXPORT wxWindow
;
42 // ----------------------------------------------------------------------------
44 // ----------------------------------------------------------------------------
46 #if defined(__BORLANDC__) && defined(__WIN16__)
47 // For 16-bit BC++, these 2 would be identical otherwise (truncated)
48 #define wxEVT_COMMAND_NOTEBOOK_PAGE_CHANGED wxEVT_COMMAND_NB_PAGE_CHANGED
49 #define wxEVT_COMMAND_NOTEBOOK_PAGE_CHANGING wxEVT_COMMAND_NB_PAGE_CHANGING
52 typedef int wxEventType
;
54 // generate a new unique event type
55 extern wxEventType
wxNewEventType();
57 // the standard event types
58 extern wxEventType wxEVT_NULL
;
59 extern wxEventType wxEVT_FIRST
;
61 extern wxEventType wxEVT_COMMAND_BUTTON_CLICKED
;
62 extern wxEventType wxEVT_COMMAND_CHECKBOX_CLICKED
;
63 extern wxEventType wxEVT_COMMAND_CHOICE_SELECTED
;
64 extern wxEventType wxEVT_COMMAND_LISTBOX_SELECTED
;
65 extern wxEventType wxEVT_COMMAND_LISTBOX_DOUBLECLICKED
;
66 extern wxEventType wxEVT_COMMAND_CHECKLISTBOX_TOGGLED
;
67 extern wxEventType wxEVT_COMMAND_TEXT_UPDATED
;
68 extern wxEventType wxEVT_COMMAND_TEXT_ENTER
;
69 extern wxEventType wxEVT_COMMAND_MENU_SELECTED
;
70 extern wxEventType wxEVT_COMMAND_TOOL_CLICKED
;
71 extern wxEventType wxEVT_COMMAND_SLIDER_UPDATED
;
72 extern wxEventType wxEVT_COMMAND_RADIOBOX_SELECTED
;
73 extern wxEventType wxEVT_COMMAND_RADIOBUTTON_SELECTED
;
74 extern wxEventType wxEVT_COMMAND_SCROLLBAR_UPDATED
;
75 extern wxEventType wxEVT_COMMAND_VLBOX_SELECTED
;
76 extern wxEventType wxEVT_COMMAND_COMBOBOX_SELECTED
;
77 extern wxEventType wxEVT_COMMAND_TOOL_RCLICKED
;
78 extern wxEventType wxEVT_COMMAND_TOOL_ENTER
;
79 extern wxEventType wxEVT_COMMAND_SPINCTRL_UPDATED
;
81 // Sockets and timers send events, too
82 extern wxEventType wxEVT_SOCKET
;
83 extern wxEventType wxEVT_TIMER
;
86 extern wxEventType wxEVT_LEFT_DOWN
;
87 extern wxEventType wxEVT_LEFT_UP
;
88 extern wxEventType wxEVT_MIDDLE_DOWN
;
89 extern wxEventType wxEVT_MIDDLE_UP
;
90 extern wxEventType wxEVT_RIGHT_DOWN
;
91 extern wxEventType wxEVT_RIGHT_UP
;
92 extern wxEventType wxEVT_MOTION
;
93 extern wxEventType wxEVT_ENTER_WINDOW
;
94 extern wxEventType wxEVT_LEAVE_WINDOW
;
95 extern wxEventType wxEVT_LEFT_DCLICK
;
96 extern wxEventType wxEVT_MIDDLE_DCLICK
;
97 extern wxEventType wxEVT_RIGHT_DCLICK
;
98 extern wxEventType wxEVT_SET_FOCUS
;
99 extern wxEventType wxEVT_KILL_FOCUS
;
101 // Non-client mouse events
102 extern wxEventType wxEVT_NC_LEFT_DOWN
;
103 extern wxEventType wxEVT_NC_LEFT_UP
;
104 extern wxEventType wxEVT_NC_MIDDLE_DOWN
;
105 extern wxEventType wxEVT_NC_MIDDLE_UP
;
106 extern wxEventType wxEVT_NC_RIGHT_DOWN
;
107 extern wxEventType wxEVT_NC_RIGHT_UP
;
108 extern wxEventType wxEVT_NC_MOTION
;
109 extern wxEventType wxEVT_NC_ENTER_WINDOW
;
110 extern wxEventType wxEVT_NC_LEAVE_WINDOW
;
111 extern wxEventType wxEVT_NC_LEFT_DCLICK
;
112 extern wxEventType wxEVT_NC_MIDDLE_DCLICK
;
113 extern wxEventType wxEVT_NC_RIGHT_DCLICK
;
115 // Character input event type
116 extern wxEventType wxEVT_CHAR
;
117 extern wxEventType wxEVT_CHAR_HOOK
;
118 extern wxEventType wxEVT_NAVIGATION_KEY
;
119 extern wxEventType wxEVT_KEY_DOWN
;
120 extern wxEventType wxEVT_KEY_UP
;
123 extern wxEventType wxEVT_SET_CURSOR
;
125 // wxScrollbar and wxSlider event identifiers
126 extern wxEventType wxEVT_SCROLL_TOP
;
127 extern wxEventType wxEVT_SCROLL_BOTTOM
;
128 extern wxEventType wxEVT_SCROLL_LINEUP
;
129 extern wxEventType wxEVT_SCROLL_LINEDOWN
;
130 extern wxEventType wxEVT_SCROLL_PAGEUP
;
131 extern wxEventType wxEVT_SCROLL_PAGEDOWN
;
132 extern wxEventType wxEVT_SCROLL_THUMBTRACK
;
133 extern wxEventType wxEVT_SCROLL_THUMBRELEASE
;
135 // Scroll events from wxWindow
136 extern wxEventType wxEVT_SCROLLWIN_TOP
;
137 extern wxEventType wxEVT_SCROLLWIN_BOTTOM
;
138 extern wxEventType wxEVT_SCROLLWIN_LINEUP
;
139 extern wxEventType wxEVT_SCROLLWIN_LINEDOWN
;
140 extern wxEventType wxEVT_SCROLLWIN_PAGEUP
;
141 extern wxEventType wxEVT_SCROLLWIN_PAGEDOWN
;
142 extern wxEventType wxEVT_SCROLLWIN_THUMBTRACK
;
143 extern wxEventType wxEVT_SCROLLWIN_THUMBRELEASE
;
146 extern wxEventType wxEVT_SIZE
;
147 extern wxEventType wxEVT_MOVE
;
148 extern wxEventType wxEVT_CLOSE_WINDOW
;
149 extern wxEventType wxEVT_END_SESSION
;
150 extern wxEventType wxEVT_QUERY_END_SESSION
;
151 extern wxEventType wxEVT_ACTIVATE_APP
;
152 extern wxEventType wxEVT_POWER
;
153 extern wxEventType wxEVT_ACTIVATE
;
154 extern wxEventType wxEVT_CREATE
;
155 extern wxEventType wxEVT_DESTROY
;
156 extern wxEventType wxEVT_SHOW
;
157 extern wxEventType wxEVT_ICONIZE
;
158 extern wxEventType wxEVT_MAXIMIZE
;
159 extern wxEventType wxEVT_MOUSE_CAPTURE_CHANGED
;
160 extern wxEventType wxEVT_PAINT
;
161 extern wxEventType wxEVT_ERASE_BACKGROUND
;
162 extern wxEventType wxEVT_NC_PAINT
;
163 extern wxEventType wxEVT_PAINT_ICON
;
164 extern wxEventType wxEVT_MENU_CHAR
;
165 extern wxEventType wxEVT_MENU_INIT
;
166 extern wxEventType wxEVT_MENU_HIGHLIGHT
;
167 extern wxEventType wxEVT_POPUP_MENU_INIT
;
168 extern wxEventType wxEVT_CONTEXT_MENU
;
169 extern wxEventType wxEVT_SYS_COLOUR_CHANGED
;
170 extern wxEventType wxEVT_SETTING_CHANGED
;
171 extern wxEventType wxEVT_QUERY_NEW_PALETTE
;
172 extern wxEventType wxEVT_PALETTE_CHANGED
;
173 extern wxEventType wxEVT_JOY_BUTTON_DOWN
;
174 extern wxEventType wxEVT_JOY_BUTTON_UP
;
175 extern wxEventType wxEVT_JOY_MOVE
;
176 extern wxEventType wxEVT_JOY_ZMOVE
;
177 extern wxEventType wxEVT_DROP_FILES
;
178 extern wxEventType wxEVT_DRAW_ITEM
;
179 extern wxEventType wxEVT_MEASURE_ITEM
;
180 extern wxEventType wxEVT_COMPARE_ITEM
;
181 extern wxEventType wxEVT_INIT_DIALOG
;
182 extern wxEventType wxEVT_IDLE
;
183 extern wxEventType wxEVT_UPDATE_UI
;
186 extern wxEventType wxEVT_END_PROCESS
;
189 extern wxEventType wxEVT_DIALUP_CONNECTED
;
190 extern wxEventType wxEVT_DIALUP_DISCONNECTED
;
192 // Generic command events
193 // Note: a click is a higher-level event than button down/up
194 extern wxEventType wxEVT_COMMAND_LEFT_CLICK
;
195 extern wxEventType wxEVT_COMMAND_LEFT_DCLICK
;
196 extern wxEventType wxEVT_COMMAND_RIGHT_CLICK
;
197 extern wxEventType wxEVT_COMMAND_RIGHT_DCLICK
;
198 extern wxEventType wxEVT_COMMAND_SET_FOCUS
;
199 extern wxEventType wxEVT_COMMAND_KILL_FOCUS
;
200 extern wxEventType wxEVT_COMMAND_ENTER
;
202 // Tree control event types
203 extern wxEventType wxEVT_COMMAND_TREE_BEGIN_DRAG
;
204 extern wxEventType wxEVT_COMMAND_TREE_BEGIN_RDRAG
;
205 extern wxEventType wxEVT_COMMAND_TREE_BEGIN_LABEL_EDIT
;
206 extern wxEventType wxEVT_COMMAND_TREE_END_LABEL_EDIT
;
207 extern wxEventType wxEVT_COMMAND_TREE_DELETE_ITEM
;
208 extern wxEventType wxEVT_COMMAND_TREE_GET_INFO
;
209 extern wxEventType wxEVT_COMMAND_TREE_SET_INFO
;
210 extern wxEventType wxEVT_COMMAND_TREE_ITEM_EXPANDED
;
211 extern wxEventType wxEVT_COMMAND_TREE_ITEM_EXPANDING
;
212 extern wxEventType wxEVT_COMMAND_TREE_ITEM_COLLAPSED
;
213 extern wxEventType wxEVT_COMMAND_TREE_ITEM_COLLAPSING
;
214 extern wxEventType wxEVT_COMMAND_TREE_SEL_CHANGED
;
215 extern wxEventType wxEVT_COMMAND_TREE_SEL_CHANGING
;
216 extern wxEventType wxEVT_COMMAND_TREE_KEY_DOWN
;
217 extern wxEventType wxEVT_COMMAND_TREE_ITEM_ACTIVATED
;
218 extern wxEventType wxEVT_COMMAND_TREE_ITEM_RIGHT_CLICK
;
219 extern wxEventType wxEVT_COMMAND_TREE_ITEM_MIDDLE_CLICK
;
220 extern wxEventType wxEVT_COMMAND_TREE_END_DRAG
;
222 // List control event types
223 extern wxEventType wxEVT_COMMAND_LIST_BEGIN_DRAG
;
224 extern wxEventType wxEVT_COMMAND_LIST_BEGIN_RDRAG
;
225 extern wxEventType wxEVT_COMMAND_LIST_BEGIN_LABEL_EDIT
;
226 extern wxEventType wxEVT_COMMAND_LIST_END_LABEL_EDIT
;
227 extern wxEventType wxEVT_COMMAND_LIST_DELETE_ITEM
;
228 extern wxEventType wxEVT_COMMAND_LIST_DELETE_ALL_ITEMS
;
229 extern wxEventType wxEVT_COMMAND_LIST_GET_INFO
;
230 extern wxEventType wxEVT_COMMAND_LIST_SET_INFO
;
231 extern wxEventType wxEVT_COMMAND_LIST_ITEM_SELECTED
;
232 extern wxEventType wxEVT_COMMAND_LIST_ITEM_DESELECTED
;
233 extern wxEventType wxEVT_COMMAND_LIST_KEY_DOWN
;
234 extern wxEventType wxEVT_COMMAND_LIST_INSERT_ITEM
;
235 extern wxEventType wxEVT_COMMAND_LIST_COL_CLICK
;
236 extern wxEventType wxEVT_COMMAND_LIST_ITEM_RIGHT_CLICK
;
237 extern wxEventType wxEVT_COMMAND_LIST_ITEM_MIDDLE_CLICK
;
238 extern wxEventType wxEVT_COMMAND_LIST_ITEM_ACTIVATED
;
240 // Tab and notebook control event types
241 extern wxEventType wxEVT_COMMAND_TAB_SEL_CHANGED
;
242 extern wxEventType wxEVT_COMMAND_TAB_SEL_CHANGING
;
243 extern wxEventType wxEVT_COMMAND_NOTEBOOK_PAGE_CHANGED
;
244 extern wxEventType wxEVT_COMMAND_NOTEBOOK_PAGE_CHANGING
;
247 extern wxEventType wxEVT_COMMAND_SPLITTER_SASH_POS_CHANGED
;
248 extern wxEventType wxEVT_COMMAND_SPLITTER_SASH_POS_CHANGING
;
249 extern wxEventType wxEVT_COMMAND_SPLITTER_DOUBLECLICKED
;
250 extern wxEventType wxEVT_COMMAND_SPLITTER_UNSPLIT
;
253 extern wxEventType wxEVT_WIZARD_PAGE_CHANGED
;
254 extern wxEventType wxEVT_WIZARD_PAGE_CHANGING
;
255 extern wxEventType wxEVT_WIZARD_CANCEL
;
258 extern wxEventType wxEVT_CALENDAR_SEL_CHANGED
;
259 extern wxEventType wxEVT_CALENDAR_DAY_CHANGED
;
260 extern wxEventType wxEVT_CALENDAR_MONTH_CHANGED
;
261 extern wxEventType wxEVT_CALENDAR_YEAR_CHANGED
;
262 extern wxEventType wxEVT_CALENDAR_DOUBLECLICKED
;
263 extern wxEventType wxEVT_CALENDAR_WEEKDAY_CLICKED
;
266 extern wxEventType wxEVT_HELP
;
267 extern wxEventType wxEVT_DETAILED_HELP
;
269 #if WXWIN_COMPATIBILITY_2
271 // User events: this is now obsolete, just use wxNewEventType() to get a new
273 extern wxEventType wxEVT_USER_FIRST
;
275 #endif // WXWIN_COMPATIBILITY_2
279 #if WXWIN_COMPATIBILITY
281 #define wxEVENT_TYPE_BUTTON_COMMAND wxEVT_COMMAND_BUTTON_CLICKED
282 #define wxEVENT_TYPE_CHECKBOX_COMMAND wxEVT_COMMAND_CHECKBOX_CLICKED
283 #define wxEVENT_TYPE_CHOICE_COMMAND wxEVT_COMMAND_CHOICE_SELECTED
284 #define wxEVENT_TYPE_LISTBOX_COMMAND wxEVT_COMMAND_LISTBOX_SELECTED
285 #define wxEVENT_TYPE_LISTBOX_DCLICK_COMMAND wxEVT_COMMAND_LISTBOX_DOUBLECLICKED
286 #define wxEVENT_TYPE_TEXT_COMMAND wxEVT_COMMAND_TEXT_UPDATED
287 #define wxEVENT_TYPE_MULTITEXT_COMMAND wxEVT_COMMAND_TEXT_UPDATED
288 #define wxEVENT_TYPE_MENU_COMMAND wxEVT_COMMAND_MENU_SELECTED
289 #define wxEVENT_TYPE_SLIDER_COMMAND wxEVT_COMMAND_SLIDER_UPDATED
290 #define wxEVENT_TYPE_RADIOBOX_COMMAND wxEVT_COMMAND_RADIOBOX_SELECTED
291 #define wxEVENT_TYPE_RADIOBUTTON_COMMAND wxEVT_COMMAND_RADIOBUTTON_SELECTED
292 #define wxEVENT_TYPE_TEXT_ENTER_COMMAND wxEVT_COMMAND_TEXT_ENTER
293 #define wxEVENT_TYPE_SET_FOCUS wxEVT_SET_FOCUS
294 #define wxEVENT_TYPE_KILL_FOCUS wxEVT_KILL_FOCUS
295 #define wxEVENT_TYPE_SCROLLBAR_COMMAND wxEVT_COMMAND_SCROLLBAR_UPDATED
296 #define wxEVENT_TYPE_VIRT_LISTBOX_COMMAND wxEVT_COMMAND_VLBOX_SELECTED
297 #define wxEVENT_TYPE_COMBOBOX_COMMAND wxEVT_COMMAND_COMBOBOX_SELECTED
299 #define wxEVENT_TYPE_LEFT_DOWN wxEVT_LEFT_DOWN
300 #define wxEVENT_TYPE_LEFT_UP wxEVT_LEFT_UP
301 #define wxEVENT_TYPE_MIDDLE_DOWN wxEVT_MIDDLE_DOWN
302 #define wxEVENT_TYPE_MIDDLE_UP wxEVT_MIDDLE_UP
303 #define wxEVENT_TYPE_RIGHT_DOWN wxEVT_RIGHT_DOWN
304 #define wxEVENT_TYPE_RIGHT_UP wxEVT_RIGHT_UP
305 #define wxEVENT_TYPE_MOTION wxEVT_MOTION
306 #define wxEVENT_TYPE_ENTER_WINDOW wxEVT_ENTER_WINDOW
307 #define wxEVENT_TYPE_LEAVE_WINDOW wxEVT_LEAVE_WINDOW
308 #define wxEVENT_TYPE_LEFT_DCLICK wxEVT_LEFT_DCLICK
309 #define wxEVENT_TYPE_MIDDLE_DCLICK wxEVT_MIDDLE_DCLICK
310 #define wxEVENT_TYPE_RIGHT_DCLICK wxEVT_RIGHT_DCLICK
311 #define wxEVENT_TYPE_CHAR wxEVT_CHAR
312 #define wxEVENT_TYPE_SCROLL_TOP wxEVT_SCROLL_TOP
313 #define wxEVENT_TYPE_SCROLL_BOTTOM wxEVT_SCROLL_BOTTOM
314 #define wxEVENT_TYPE_SCROLL_LINEUP wxEVT_SCROLL_LINEUP
315 #define wxEVENT_TYPE_SCROLL_LINEDOWN wxEVT_SCROLL_LINEDOWN
316 #define wxEVENT_TYPE_SCROLL_PAGEUP wxEVT_SCROLL_PAGEUP
317 #define wxEVENT_TYPE_SCROLL_PAGEDOWN wxEVT_SCROLL_PAGEDOWN
318 #define wxEVENT_TYPE_SCROLL_THUMBTRACK wxEVT_SCROLL_THUMBTRACK
320 #endif // WXWIN_COMPATIBILITY
323 * wxWindows events, covering all interesting things that might happen
324 * (button clicking, resizing, setting text in widgets, etc.).
326 * For each completely new event type, derive a new event class.
327 * An event CLASS represents a C++ class defining a range of similar event TYPES;
328 * examples are canvas events, panel item command events.
329 * An event TYPE is a unique identifier for a particular system event,
330 * such as a button press or a listbox deselection.
334 class WXDLLEXPORT wxEvent
: public wxObject
336 DECLARE_ABSTRACT_CLASS(wxEvent
)
342 void SetEventType(wxEventType typ
) { m_eventType
= typ
; }
343 wxEventType
GetEventType() const { return m_eventType
; }
344 wxObject
*GetEventObject() const { return m_eventObject
; }
345 void SetEventObject(wxObject
*obj
) { m_eventObject
= obj
; }
346 long GetTimestamp() const { return m_timeStamp
; }
347 void SetTimestamp(long ts
= 0) { m_timeStamp
= ts
; }
348 int GetId() const { return m_id
; }
349 void SetId(int Id
) { m_id
= Id
; }
351 // Can instruct event processor that we wish to ignore this event
352 // (treat as if the event table entry had not been found): this must be done
353 // to allow the event processing by the base classes (calling event.Skip()
354 // is the analog of calling the base class verstion of a virtual function)
355 void Skip(bool skip
= TRUE
) { m_skipped
= skip
; }
356 bool GetSkipped() const { return m_skipped
; };
358 // implementation only: this test is explicitlty anti OO and this functions
359 // exists only for optimization purposes
360 bool IsCommandEvent() const { return m_isCommandEvent
; }
362 void CopyObject(wxObject
& object_dest
) const;
365 wxObject
* m_eventObject
;
366 wxEventType m_eventType
;
369 wxObject
* m_callbackUserData
;
372 // optimization: instead of using costly IsKindOf() we keep a flag telling
373 // whether we're a command event (by far the most common case)
374 bool m_isCommandEvent
;
379 // Item or menu event class
381 wxEVT_COMMAND_BUTTON_CLICKED
382 wxEVT_COMMAND_CHECKBOX_CLICKED
383 wxEVT_COMMAND_CHOICE_SELECTED
384 wxEVT_COMMAND_LISTBOX_SELECTED
385 wxEVT_COMMAND_LISTBOX_DOUBLECLICKED
386 wxEVT_COMMAND_TEXT_UPDATED
387 wxEVT_COMMAND_TEXT_ENTER
388 wxEVT_COMMAND_MENU_SELECTED
389 wxEVT_COMMAND_SLIDER_UPDATED
390 wxEVT_COMMAND_RADIOBOX_SELECTED
391 wxEVT_COMMAND_RADIOBUTTON_SELECTED
392 wxEVT_COMMAND_SCROLLBAR_UPDATED
393 wxEVT_COMMAND_VLBOX_SELECTED
394 wxEVT_COMMAND_COMBOBOX_SELECTED
397 class WXDLLEXPORT wxCommandEvent
: public wxEvent
399 DECLARE_DYNAMIC_CLASS(wxCommandEvent
)
402 wxCommandEvent(wxEventType commandType
= wxEVT_NULL
, int id
= 0);
406 * Accessors dependent on context
410 // Set/Get client data from controls
411 void SetClientData(void* clientData
) { m_clientData
= clientData
; }
412 void *GetClientData() const { return m_clientData
; }
414 // Set/Get client object from controls
415 void SetClientObject(wxClientData
* clientObject
) { m_clientObject
= clientObject
; }
416 void *GetClientObject() const { return m_clientObject
; }
418 // Get listbox selection if single-choice
419 int GetSelection() const { return m_commandInt
; }
421 // Set/Get listbox/choice selection string
422 void SetString(const wxString
& s
) { m_commandString
= s
; }
423 wxString
GetString() const { return m_commandString
; }
425 // Get checkbox value
426 bool IsChecked() const { return m_commandInt
!= 0; }
428 // TRUE if the listbox event was a selection.
429 bool IsSelection() const { return (m_extraLong
!= 0); }
431 void SetExtraLong(long extraLong
) { m_extraLong
= extraLong
; }
432 long GetExtraLong() const { return m_extraLong
; }
434 void SetInt(int i
) { m_commandInt
= i
; }
435 long GetInt() const { return m_commandInt
; }
437 void CopyObject(wxObject
& obj
) const;
439 #ifdef WXWIN_COMPATIBILITY_2
440 bool Checked() const { return IsChecked(); }
441 #endif // WXWIN_COMPATIBILITY_2
444 wxString m_commandString
; // String event argument
446 long m_extraLong
; // Additional information (e.g. select/deselect)
447 void* m_clientData
; // Arbitrary client data
448 wxClientData
* m_clientObject
; // Arbitrary client object
451 // this class adds a possibility to react (from the user) code to a control
452 // notification: allow or veto the operation being reported.
453 class WXDLLEXPORT wxNotifyEvent
: public wxCommandEvent
456 wxNotifyEvent(wxEventType commandType
= wxEVT_NULL
, int id
= 0)
457 : wxCommandEvent(commandType
, id
) { m_bAllow
= TRUE
; }
459 // veto the operation (usually it's allowed by default)
460 void Veto() { m_bAllow
= FALSE
; }
462 // allow the operation if it was disabled by default
463 void Allow() { m_bAllow
= TRUE
; }
465 // for implementation code only: is the operation allowed?
466 bool IsAllowed() const { return m_bAllow
; }
468 // probably useless: CopyObject() is used for deferred event
469 // handling but wxNotifyEvent must be processed immediately
470 void CopyObject(wxObject
& obj
) const;
475 DECLARE_DYNAMIC_CLASS(wxNotifyEvent
)
478 // Scroll event class, derived form wxCommandEvent. wxScrollEvents are
479 // sent by wxSlider and wxScrollbar.
484 wxEVT_SCROLL_LINEDOWN
486 wxEVT_SCROLL_PAGEDOWN
487 wxEVT_SCROLL_THUMBTRACK
488 wxEVT_SCROLL_THUMBRELEASE
491 class WXDLLEXPORT wxScrollEvent
: public wxCommandEvent
493 DECLARE_DYNAMIC_CLASS(wxScrollEvent
)
496 wxScrollEvent(wxEventType commandType
= wxEVT_NULL
,
497 int id
= 0, int pos
= 0, int orient
= 0);
505 int GetOrientation() const { return (int) m_extraLong
; }
506 int GetPosition() const { return m_commandInt
; }
507 void SetOrientation(int orient
) { m_extraLong
= (long) orient
; }
508 void SetPosition(int pos
) { m_commandInt
= pos
; }
511 // ScrollWin event class, derived fom wxEvent. wxScrollWinEvents
512 // are sent by wxWindow.
515 wxEVT_SCROLLWIN_BOTTOM
516 wxEVT_SCROLLWIN_LINEUP
517 wxEVT_SCROLLWIN_LINEDOWN
518 wxEVT_SCROLLWIN_PAGEUP
519 wxEVT_SCROLLWIN_PAGEDOWN
520 wxEVT_SCROLLWIN_THUMBTRACK
521 wxEVT_SCROLLWIN_THUMBRELEASE
524 class WXDLLEXPORT wxScrollWinEvent
: public wxEvent
526 DECLARE_DYNAMIC_CLASS(wxScrollWinEvent
)
529 wxScrollWinEvent(wxEventType commandType
= wxEVT_NULL
,
530 int pos
= 0, int orient
= 0);
531 ~wxScrollWinEvent() {}
537 int GetOrientation() const { return (int) m_extraLong
; }
538 int GetPosition() const { return m_commandInt
; }
539 void SetOrientation(int orient
) { m_extraLong
= (long) orient
; }
540 void SetPosition(int pos
) { m_commandInt
= pos
; }
542 void CopyObject(wxObject
& object_dest
) const;
544 int m_commandInt
; // Additional information
565 wxEVT_NC_MIDDLE_DOWN,
570 wxEVT_NC_ENTER_WINDOW,
571 wxEVT_NC_LEAVE_WINDOW,
572 wxEVT_NC_LEFT_DCLICK,
573 wxEVT_NC_MIDDLE_DCLICK,
574 wxEVT_NC_RIGHT_DCLICK,
577 class WXDLLEXPORT wxMouseEvent
: public wxEvent
579 DECLARE_DYNAMIC_CLASS(wxMouseEvent
)
582 wxMouseEvent(wxEventType mouseType
= wxEVT_NULL
);
584 // Was it a button event? (*doesn't* mean: is any button *down*?)
585 bool IsButton() const { return Button(-1); }
587 // Was it a down event from button 1, 2 or 3 or any?
588 bool ButtonDown(int but
= -1) const;
590 // Was it a dclick event from button 1, 2 or 3 or any?
591 bool ButtonDClick(int but
= -1) const;
593 // Was it a up event from button 1, 2 or 3 or any?
594 bool ButtonUp(int but
= -1) const;
596 // Was the given button 1,2,3 or any changing state?
597 bool Button(int but
) const;
599 // Was the given button 1,2,3 or any in Down state?
600 bool ButtonIsDown(int but
) const;
602 // Find state of shift/control keys
603 bool ControlDown() const { return m_controlDown
; }
604 bool MetaDown() const { return m_metaDown
; }
605 bool AltDown() const { return m_altDown
; }
606 bool ShiftDown() const { return m_shiftDown
; }
608 // Find which event was just generated
609 bool LeftDown() const { return (m_eventType
== wxEVT_LEFT_DOWN
); }
610 bool MiddleDown() const { return (m_eventType
== wxEVT_MIDDLE_DOWN
); }
611 bool RightDown() const { return (m_eventType
== wxEVT_RIGHT_DOWN
); }
613 bool LeftUp() const { return (m_eventType
== wxEVT_LEFT_UP
); }
614 bool MiddleUp() const { return (m_eventType
== wxEVT_MIDDLE_UP
); }
615 bool RightUp() const { return (m_eventType
== wxEVT_RIGHT_UP
); }
617 bool LeftDClick() const { return (m_eventType
== wxEVT_LEFT_DCLICK
); }
618 bool MiddleDClick() const { return (m_eventType
== wxEVT_MIDDLE_DCLICK
); }
619 bool RightDClick() const { return (m_eventType
== wxEVT_RIGHT_DCLICK
); }
621 // Find the current state of the mouse buttons (regardless
622 // of current event type)
623 bool LeftIsDown() const { return m_leftDown
; }
624 bool MiddleIsDown() const { return m_middleDown
; }
625 bool RightIsDown() const { return m_rightDown
; }
627 // True if a button is down and the mouse is moving
628 bool Dragging() const
630 return ((m_eventType
== wxEVT_MOTION
) &&
631 (LeftIsDown() || MiddleIsDown() || RightIsDown()));
634 // True if the mouse is moving, and no button is down
635 bool Moving() const { return (m_eventType
== wxEVT_MOTION
); }
637 // True if the mouse is just entering the window
638 bool Entering() const { return (m_eventType
== wxEVT_ENTER_WINDOW
); }
640 // True if the mouse is just leaving the window
641 bool Leaving() const { return (m_eventType
== wxEVT_LEAVE_WINDOW
); }
643 // Find the position of the event
644 void GetPosition(wxCoord
*xpos
, wxCoord
*ypos
) const
653 void GetPosition(long *xpos
, long *ypos
) const
662 // Find the position of the event
663 wxPoint
GetPosition() const { return wxPoint(m_x
, m_y
); }
665 // Find the logical position of the event given the DC
666 wxPoint
GetLogicalPosition(const wxDC
& dc
) const ;
669 #if WXWIN_COMPATIBILITY
670 void Position(long *xpos
, long *ypos
) const
678 void Position(float *xpos
, float *ypos
) const
680 *xpos
= (float) m_x
; *ypos
= (float) m_y
;
682 #endif // WXWIN_COMPATIBILITY
685 wxCoord
GetX() const { return m_x
; }
688 wxCoord
GetY() const { return m_y
; }
690 void CopyObject(wxObject
& obj
) const;
711 class WXDLLEXPORT wxSetCursorEvent
: public wxEvent
714 wxSetCursorEvent(wxCoord x
, wxCoord y
)
716 m_eventType
= wxEVT_SET_CURSOR
;
722 wxCoord
GetX() const { return m_x
; }
723 wxCoord
GetY() const { return m_y
; }
725 void SetCursor(const wxCursor
& cursor
) { m_cursor
= cursor
; }
726 const wxCursor
& GetCursor() const { return m_cursor
; }
727 bool HasCursor() const { return m_cursor
.Ok(); }
734 // Keyboard input event class
743 class WXDLLEXPORT wxKeyEvent
: public wxEvent
745 DECLARE_DYNAMIC_CLASS(wxKeyEvent
)
748 wxKeyEvent(wxEventType keyType
= wxEVT_NULL
);
750 // Find state of shift/control keys
751 bool ControlDown() const { return m_controlDown
; }
752 bool MetaDown() const { return m_metaDown
; }
753 bool AltDown() const { return m_altDown
; }
754 bool ShiftDown() const { return m_shiftDown
; }
756 bool HasModifiers() const { return ControlDown() || AltDown() || MetaDown(); }
758 // get the key code: an ASCII7 char or an element of wxKeyCode enum
759 int GetKeyCode() const { return (int)m_keyCode
; }
761 // Find the position of the event
762 void GetPosition(wxCoord
*xpos
, wxCoord
*ypos
) const
764 if (xpos
) *xpos
= m_x
;
765 if (ypos
) *ypos
= m_y
;
769 void GetPosition(long *xpos
, long *ypos
) const
771 if (xpos
) *xpos
= (long)m_x
;
772 if (ypos
) *ypos
= (long)m_y
;
776 wxPoint
GetPosition() const
777 { return wxPoint(m_x
, m_y
); }
780 wxCoord
GetX() const { return m_x
; }
783 wxCoord
GetY() const { return m_y
; }
785 void CopyObject(wxObject
& obj
) const;
788 long KeyCode() const { return m_keyCode
; }
807 class WXDLLEXPORT wxSizeEvent
: public wxEvent
809 DECLARE_DYNAMIC_CLASS(wxSizeEvent
)
814 wxSizeEvent() { m_eventType
= wxEVT_SIZE
; }
815 wxSizeEvent(const wxSize
& sz
, int id
= 0)
817 { m_eventType
= wxEVT_SIZE
; m_id
= id
; }
819 wxSize
GetSize() const { return m_size
; }
821 void CopyObject(wxObject
& obj
) const;
830 class WXDLLEXPORT wxMoveEvent
: public wxEvent
832 DECLARE_DYNAMIC_CLASS(wxMoveEvent
)
837 wxMoveEvent() { m_eventType
= wxEVT_MOVE
; }
838 wxMoveEvent(const wxPoint
& pos
, int id
= 0)
840 { m_eventType
= wxEVT_MOVE
; m_id
= id
; }
842 wxPoint
GetPosition() const { return m_pos
; }
844 void CopyObject(wxObject
& obj
) const;
854 #if defined(__WXDEBUG__) && (defined(__WXMSW__) || defined(__WXPM__))
855 // see comments in src/msw|os2/dcclient.cpp where g_isPainting is defined
856 extern WXDLLEXPORT
int g_isPainting
;
859 class WXDLLEXPORT wxPaintEvent
: public wxEvent
861 DECLARE_DYNAMIC_CLASS(wxPaintEvent
)
864 wxPaintEvent(int Id
= 0)
866 m_eventType
= wxEVT_PAINT
;
869 #if defined(__WXDEBUG__) && (defined(__WXMSW__) || defined(__WXPM__))
870 // set the internal flag for the duration of processing of WM_PAINT
875 #if defined(__WXDEBUG__) && (defined(__WXMSW__) || defined(__WXPM__))
883 // Erase background event class
885 wxEVT_ERASE_BACKGROUND
888 class WXDLLEXPORT wxEraseEvent
: public wxEvent
890 DECLARE_DYNAMIC_CLASS(wxEraseEvent
)
895 wxEraseEvent(int Id
= 0, wxDC
*dc
= (wxDC
*) NULL
)
896 { m_eventType
= wxEVT_ERASE_BACKGROUND
; m_id
= Id
; m_dc
= dc
; }
897 wxDC
*GetDC() const { return m_dc
; }
899 void CopyObject(wxObject
& obj
) const;
908 class WXDLLEXPORT wxFocusEvent
: public wxEvent
910 DECLARE_DYNAMIC_CLASS(wxFocusEvent
)
913 wxFocusEvent(wxEventType type
= wxEVT_NULL
, int Id
= 0)
914 { m_eventType
= type
; m_id
= Id
; }
917 // Activate event class
923 class WXDLLEXPORT wxActivateEvent
: public wxEvent
925 DECLARE_DYNAMIC_CLASS(wxActivateEvent
)
928 wxActivateEvent(wxEventType type
= wxEVT_NULL
, bool active
= TRUE
, int Id
= 0)
929 { m_eventType
= type
; m_active
= active
; m_id
= Id
; }
930 bool GetActive() const { return m_active
; }
932 void CopyObject(wxObject
& obj
) const;
938 // InitDialog event class
943 class WXDLLEXPORT wxInitDialogEvent
: public wxEvent
945 DECLARE_DYNAMIC_CLASS(wxInitDialogEvent
)
948 wxInitDialogEvent(int Id
= 0)
949 { m_eventType
= wxEVT_INIT_DIALOG
; m_id
= Id
; }
952 // Miscellaneous menu event class
956 wxEVT_MENU_HIGHLIGHT,
957 wxEVT_POPUP_MENU_INIT,
961 class WXDLLEXPORT wxMenuEvent
: public wxEvent
963 DECLARE_DYNAMIC_CLASS(wxMenuEvent
)
966 wxMenuEvent(wxEventType type
= wxEVT_NULL
, int id
= 0)
967 { m_eventType
= type
; m_menuId
= id
; }
969 int GetMenuId() const { return m_menuId
; }
971 void CopyObject(wxObject
& obj
) const;
976 // Window close or session close event class
980 wxEVT_QUERY_END_SESSION
983 class WXDLLEXPORT wxCloseEvent
: public wxEvent
985 DECLARE_DYNAMIC_CLASS(wxCloseEvent
)
988 wxCloseEvent(wxEventType type
= wxEVT_NULL
, int id
= 0)
992 m_veto
= FALSE
; // should be FALSE by default
994 #if WXWIN_COMPATIBILITY
996 #endif // WXWIN_COMPATIBILITY
1000 void SetLoggingOff(bool logOff
) { m_loggingOff
= logOff
; }
1001 bool GetLoggingOff() const { return m_loggingOff
; }
1003 void Veto(bool veto
= TRUE
)
1005 // GetVeto() will return FALSE anyhow...
1006 wxCHECK_RET( m_canVeto
,
1007 wxT("call to Veto() ignored (can't veto this event)") );
1011 void SetCanVeto(bool canVeto
) { m_canVeto
= canVeto
; }
1012 // No more asserts here please, the one you put here was wrong.
1013 bool CanVeto() const { return m_canVeto
; }
1014 bool GetVeto() const { return m_canVeto
&& m_veto
; }
1016 #if WXWIN_COMPATIBILITY
1017 // This is probably obsolete now, since we use CanVeto instead, in
1018 // both OnCloseWindow and OnQueryEndSession.
1019 // m_force == ! m_canVeto i.e., can't veto means we must force it to close.
1020 void SetForce(bool force
) { m_force
= force
; }
1021 bool GetForce() const { return m_force
; }
1024 void CopyObject(wxObject
& obj
) const;
1028 bool m_veto
, m_canVeto
;
1030 #if WXWIN_COMPATIBILITY
1039 class WXDLLEXPORT wxShowEvent
: public wxEvent
1041 DECLARE_DYNAMIC_CLASS(wxShowEvent
)
1045 wxShowEvent(int id
= 0, bool show
= FALSE
)
1046 { m_eventType
= wxEVT_SHOW
; m_id
= id
; m_show
= show
; }
1048 void SetShow(bool show
) { m_show
= show
; }
1049 bool GetShow() const { return m_show
; }
1051 void CopyObject(wxObject
& obj
) const;
1061 class WXDLLEXPORT wxIconizeEvent
: public wxEvent
1063 DECLARE_DYNAMIC_CLASS(wxIconizeEvent
)
1066 wxIconizeEvent(int id
= 0)
1067 { m_eventType
= wxEVT_ICONIZE
; m_id
= id
; }
1074 class WXDLLEXPORT wxMaximizeEvent
: public wxEvent
1076 DECLARE_DYNAMIC_CLASS(wxMaximizeEvent
)
1079 wxMaximizeEvent(int id
= 0)
1080 { m_eventType
= wxEVT_MAXIMIZE
; m_id
= id
; }
1083 // Joystick event class
1085 wxEVT_JOY_BUTTON_DOWN,
1086 wxEVT_JOY_BUTTON_UP,
1091 // Which joystick? Same as Windows ids so no conversion necessary.
1092 #define wxJOYSTICK1 0
1093 #define wxJOYSTICK2 1
1095 // Which button is down?
1096 #define wxJOY_BUTTON1 1
1097 #define wxJOY_BUTTON2 2
1098 #define wxJOY_BUTTON3 4
1099 #define wxJOY_BUTTON4 8
1100 #define wxJOY_BUTTON_ANY -1
1102 class WXDLLEXPORT wxJoystickEvent
: public wxEvent
1104 DECLARE_DYNAMIC_CLASS(wxJoystickEvent
)
1109 int m_buttonChange
; // Which button changed?
1110 int m_buttonState
; // Which buttons are down?
1111 int m_joyStick
; // Which joystick?
1113 wxJoystickEvent(wxEventType type
= wxEVT_NULL
,
1115 int joystick
= wxJOYSTICK1
,
1119 m_buttonState
= state
;
1120 m_pos
= wxPoint(0,0);
1122 m_joyStick
= joystick
;
1123 m_buttonChange
= change
;
1126 wxPoint
GetPosition() const { return m_pos
; }
1127 int GetZPosition() const { return m_zPosition
; }
1128 int GetButtonState() const { return m_buttonState
; }
1129 int GetButtonChange() const { return m_buttonChange
; }
1130 int GetJoystick() const { return m_joyStick
; }
1132 void SetJoystick(int stick
) { m_joyStick
= stick
; }
1133 void SetButtonState(int state
) { m_buttonState
= state
; }
1134 void SetButtonChange(int change
) { m_buttonChange
= change
; }
1135 void SetPosition(const wxPoint
& pos
) { m_pos
= pos
; }
1136 void SetZPosition(int zPos
) { m_zPosition
= zPos
; }
1138 // Was it a button event? (*doesn't* mean: is any button *down*?)
1139 bool IsButton() const { return ((GetEventType() == wxEVT_JOY_BUTTON_DOWN
) ||
1140 (GetEventType() == wxEVT_JOY_BUTTON_UP
)); }
1142 // Was it a move event?
1143 bool IsMove() const { return (GetEventType() == wxEVT_JOY_MOVE
) ; }
1145 // Was it a zmove event?
1146 bool IsZMove() const { return (GetEventType() == wxEVT_JOY_ZMOVE
) ; }
1148 // Was it a down event from button 1, 2, 3, 4 or any?
1149 bool ButtonDown(int but
= wxJOY_BUTTON_ANY
) const
1150 { return ((GetEventType() == wxEVT_JOY_BUTTON_DOWN
) &&
1151 ((but
== wxJOY_BUTTON_ANY
) || (but
== m_buttonChange
))); }
1153 // Was it a up event from button 1, 2, 3 or any?
1154 bool ButtonUp(int but
= wxJOY_BUTTON_ANY
) const
1155 { return ((GetEventType() == wxEVT_JOY_BUTTON_UP
) &&
1156 ((but
== wxJOY_BUTTON_ANY
) || (but
== m_buttonChange
))); }
1158 // Was the given button 1,2,3,4 or any in Down state?
1159 bool ButtonIsDown(int but
= wxJOY_BUTTON_ANY
) const
1160 { return (((but
== wxJOY_BUTTON_ANY
) && (m_buttonState
!= 0)) ||
1161 ((m_buttonState
& but
) == but
)); }
1163 void CopyObject(wxObject
& obj
) const;
1166 // Drop files event class
1171 class WXDLLEXPORT wxDropFilesEvent
: public wxEvent
1173 DECLARE_DYNAMIC_CLASS(wxDropFilesEvent
)
1178 wxString
* m_files
; // Memory (de)allocated by code calling ProcessEvent
1180 wxDropFilesEvent(wxEventType type
= wxEVT_NULL
,
1182 wxString
*files
= (wxString
*) NULL
)
1183 { m_eventType
= type
; m_noFiles
= noFiles
; m_files
= files
; }
1185 wxPoint
GetPosition() const { return m_pos
; }
1186 int GetNumberOfFiles() const { return m_noFiles
; }
1187 wxString
*GetFiles() const { return m_files
; }
1189 void CopyObject(wxObject
& obj
) const;
1197 class WXDLLEXPORT wxUpdateUIEvent
: public wxCommandEvent
1199 DECLARE_DYNAMIC_CLASS(wxUpdateUIEvent
)
1202 wxUpdateUIEvent(wxWindowID commandId
= 0)
1204 m_eventType
= wxEVT_UPDATE_UI
;
1207 m_setChecked
= FALSE
;
1209 m_setEnabled
= FALSE
;
1214 bool GetChecked() const { return m_checked
; }
1215 bool GetEnabled() const { return m_enabled
; }
1216 wxString
GetText() const { return m_text
; }
1217 bool GetSetText() const { return m_setText
; }
1218 bool GetSetChecked() const { return m_setChecked
; }
1219 bool GetSetEnabled() const { return m_setEnabled
; }
1221 void Check(bool check
) { m_checked
= check
; m_setChecked
= TRUE
; }
1222 void Enable(bool enable
) { m_enabled
= enable
; m_setEnabled
= TRUE
; }
1223 void SetText(const wxString
& text
) { m_text
= text
; m_setText
= TRUE
; }
1225 void CopyObject(wxObject
& obj
) const;
1237 wxEVT_SYS_COLOUR_CHANGED
1240 // TODO: shouldn't all events record the window ID?
1241 class WXDLLEXPORT wxSysColourChangedEvent
: public wxEvent
1243 DECLARE_DYNAMIC_CLASS(wxSysColourChangedEvent
)
1246 wxSysColourChangedEvent()
1247 { m_eventType
= wxEVT_SYS_COLOUR_CHANGED
; }
1251 wxEVT_PALETTE_CHANGED
1254 class WXDLLEXPORT wxPaletteChangedEvent
: public wxEvent
1256 DECLARE_DYNAMIC_CLASS(wxPaletteChangedEvent
)
1259 wxPaletteChangedEvent(wxWindowID id
= 0) : wxEvent(id
)
1261 m_eventType
= wxEVT_PALETTE_CHANGED
;
1262 m_changedWindow
= (wxWindow
*) NULL
;
1265 void SetChangedWindow(wxWindow
* win
) { m_changedWindow
= win
; }
1266 wxWindow
* GetChangedWindow() const { return m_changedWindow
; }
1268 void CopyObject(wxObject
& obj
) const;
1271 wxWindow
* m_changedWindow
;
1275 wxEVT_QUERY_NEW_PALETTE
1276 Indicates the window is getting keyboard focus and should re-do its palette.
1279 class WXDLLEXPORT wxQueryNewPaletteEvent
: public wxEvent
1281 DECLARE_DYNAMIC_CLASS(wxQueryNewPaletteEvent
)
1284 wxQueryNewPaletteEvent(wxWindowID id
= 0): wxEvent(id
)
1285 { m_eventType
= wxEVT_QUERY_NEW_PALETTE
; m_paletteRealized
= FALSE
; }
1287 // App sets this if it changes the palette.
1288 void SetPaletteRealized(bool realized
) { m_paletteRealized
= realized
; }
1289 bool GetPaletteRealized() const { return m_paletteRealized
; }
1291 void CopyObject(wxObject
& obj
) const;
1294 bool m_paletteRealized
;
1298 Event generated by dialog navigation keys
1299 wxEVT_NAVIGATION_KEY
1301 // NB: don't derive from command event to avoid being propagated to the parent
1302 class WXDLLEXPORT wxNavigationKeyEvent
: public wxEvent
1305 wxNavigationKeyEvent()
1307 SetEventType(wxEVT_NAVIGATION_KEY
);
1309 m_flags
= IsForward
| Propagate
; // defaults are for TAB
1310 m_focus
= (wxWindow
*)NULL
;
1313 // direction: forward (true) or backward (false)
1314 bool GetDirection() const
1315 { return (m_flags
& IsForward
) != 0; }
1316 void SetDirection(bool bForward
)
1317 { if ( bForward
) m_flags
|= IsForward
; else m_flags
&= ~IsForward
; }
1319 // it may be a window change event (MDI, notebook pages...) or a control
1321 bool IsWindowChange() const
1322 { return (m_flags
& WinChange
) != 0; }
1323 void SetWindowChange(bool bIs
)
1324 { if ( bIs
) m_flags
|= WinChange
; else m_flags
&= ~WinChange
; }
1326 // some navigation events are meant to be propagated upwards (Windows
1327 // convention is to do this for TAB events) while others should always
1328 // cycle inside the panel/radiobox/whatever we're current inside
1329 bool ShouldPropagate() const
1330 { return (m_flags
& Propagate
) != 0; }
1331 void SetPropagate(bool bDoIt
)
1332 { if ( bDoIt
) m_flags
|= Propagate
; else m_flags
&= ~Propagate
; }
1334 // the child which has the focus currently (may be NULL - use
1335 // wxWindow::FindFocus then)
1336 wxWindow
* GetCurrentFocus() const { return m_focus
; }
1337 void SetCurrentFocus(wxWindow
*win
) { m_focus
= win
; }
1350 DECLARE_DYNAMIC_CLASS(wxNavigationKeyEvent
)
1353 // Window creation/destruction events: the first is sent as soon as window is
1354 // created (i.e. the underlying GUI object exists), but when the C++ object is
1355 // fully initialized (so virtual functions may be called). The second,
1356 // wxEVT_DESTROY, is sent right before the window is destroyed - again, it's
1357 // still safe to call virtual functions at this moment
1363 class WXDLLEXPORT wxWindowCreateEvent
: public wxCommandEvent
1365 DECLARE_DYNAMIC_CLASS(wxWindowCreateEvent
)
1368 wxWindowCreateEvent(wxWindow
*win
= NULL
);
1370 wxWindow
*GetWindow() const { return (wxWindow
*)GetEventObject(); }
1373 class WXDLLEXPORT wxWindowDestroyEvent
: public wxCommandEvent
1375 DECLARE_DYNAMIC_CLASS(wxWindowDestroyEvent
)
1378 wxWindowDestroyEvent(wxWindow
*win
= NULL
);
1380 wxWindow
*GetWindow() const { return (wxWindow
*)GetEventObject(); }
1383 // A help event is sent when the user clicks on a window in context-help mode.
1389 class WXDLLEXPORT wxHelpEvent
: public wxCommandEvent
1392 wxHelpEvent(wxEventType type
= wxEVT_NULL
,
1394 const wxPoint
& pt
= wxDefaultPosition
)
1401 // Position of event (in screen coordinates)
1402 const wxPoint
& GetPosition() const { return m_pos
; }
1403 void SetPosition(const wxPoint
& pos
) { m_pos
= pos
; }
1405 // Optional link to further help
1406 const wxString
& GetLink() const { return m_link
; }
1407 void SetLink(const wxString
& link
) { m_link
= link
; }
1409 // Optional target to display help in. E.g. a window specification
1410 const wxString
& GetTarget() const { return m_target
; }
1411 void SetTarget(const wxString
& target
) { m_target
= target
; }
1419 DECLARE_DYNAMIC_CLASS(wxHelpEvent
)
1429 class WXDLLEXPORT wxIdleEvent
: public wxEvent
1431 DECLARE_DYNAMIC_CLASS(wxIdleEvent
)
1435 { m_eventType
= wxEVT_IDLE
; m_requestMore
= FALSE
; }
1437 void RequestMore(bool needMore
= TRUE
) { m_requestMore
= needMore
; }
1438 bool MoreRequested() const { return m_requestMore
; }
1440 void CopyObject(wxObject
& obj
) const;
1448 wxEVT_MOUSE_CAPTURE_CHANGED,
1449 wxEVT_SETTING_CHANGED, // WM_WININICHANGE (NT) / WM_SETTINGCHANGE (Win95)
1450 // wxEVT_FONT_CHANGED, // WM_FONTCHANGE: roll into wxEVT_SETTING_CHANGED, but remember to propagate
1451 // wxEVT_FONT_CHANGED to all other windows (maybe).
1452 wxEVT_DRAW_ITEM, // Leave these three as virtual functions in wxControl?? Platform-specific.
1457 // ============================================================================
1458 // event handler and related classes
1459 // ============================================================================
1461 typedef void (wxObject::*wxObjectEventFunction
)(wxEvent
&);
1463 struct WXDLLEXPORT wxEventTableEntry
1465 wxEventTableEntry(int evType
, int id
, int idLast
,
1466 wxObjectEventFunction fn
, wxObject
*data
);
1468 int m_eventType
; // the event type
1469 int m_id
; // control/menu/toolbar id
1470 int m_lastId
; // used for ranges of ids
1471 wxObjectEventFunction m_fn
; // function to call: not wxEventFunction,
1472 // because of dependency problems
1474 wxObject
* m_callbackUserData
;
1477 struct WXDLLEXPORT wxDynamicEventTableEntry
: public wxEventTableEntry
1479 wxDynamicEventTableEntry(int evType
, int id
, int idLast
,
1480 wxObjectEventFunction fn
, wxObject
*data
)
1481 : wxEventTableEntry(evType
, id
, idLast
, fn
, data
)
1486 struct WXDLLEXPORT wxEventTable
1488 const wxEventTable
*baseTable
; // base event table (next in chain)
1489 const wxEventTableEntry
*entries
; // bottom of entry array
1492 class WXDLLEXPORT wxEvtHandler
: public wxObject
1494 DECLARE_DYNAMIC_CLASS(wxEvtHandler
)
1500 wxEvtHandler
*GetNextHandler() const { return m_nextHandler
; }
1501 wxEvtHandler
*GetPreviousHandler() const { return m_previousHandler
; }
1502 void SetNextHandler(wxEvtHandler
*handler
) { m_nextHandler
= handler
; }
1503 void SetPreviousHandler(wxEvtHandler
*handler
) { m_previousHandler
= handler
; }
1505 void SetEvtHandlerEnabled(bool enabled
) { m_enabled
= enabled
; }
1506 bool GetEvtHandlerEnabled() const { return m_enabled
; }
1508 // process an event right now
1509 virtual bool ProcessEvent(wxEvent
& event
);
1511 // add an event to be processed later
1512 void AddPendingEvent(wxEvent
& event
);
1514 // process all pending events
1515 void ProcessPendingEvents();
1519 bool ProcessThreadEvent(wxEvent
& event
);
1522 // Dynamic association of a member function handler with the event handler,
1523 // id and event type
1524 void Connect( int id
, int lastId
, int eventType
,
1525 wxObjectEventFunction func
,
1526 wxObject
*userData
= (wxObject
*) NULL
);
1528 // Convenience function: take just one id
1529 void Connect( int id
, int eventType
,
1530 wxObjectEventFunction func
,
1531 wxObject
*userData
= (wxObject
*) NULL
)
1532 { Connect(id
, -1, eventType
, func
, userData
); }
1534 bool Disconnect( int id
, int lastId
= -1, wxEventType eventType
= wxEVT_NULL
,
1535 wxObjectEventFunction func
= NULL
,
1536 wxObject
*userData
= (wxObject
*) NULL
);
1538 // Convenience function: take just one id
1539 bool Disconnect( int id
, wxEventType eventType
= wxEVT_NULL
,
1540 wxObjectEventFunction func
= NULL
,
1541 wxObject
*userData
= (wxObject
*) NULL
)
1542 { return Disconnect(id
, -1, eventType
, func
, userData
); }
1544 // implementation from now on
1545 virtual bool SearchEventTable(wxEventTable
& table
, wxEvent
& event
);
1546 bool SearchDynamicEventTable( wxEvent
& event
);
1549 void ClearEventLocker()
1551 # if !defined(__VISAGECPP__)
1552 delete m_eventsLocker
;
1553 m_eventsLocker
= NULL
;
1560 #if WXWIN_COMPATIBILITY_2
1561 virtual void OnCommand(wxWindow
& WXUNUSED(win
),
1562 wxCommandEvent
& WXUNUSED(event
))
1564 wxFAIL_MSG(wxT("shouldn't be called any more"));
1567 // Called if child control has no callback function
1568 virtual long Default()
1569 { return GetNextHandler() ? GetNextHandler()->Default() : 0; };
1570 #endif // WXWIN_COMPATIBILITY_2
1572 #if WXWIN_COMPATIBILITY
1573 virtual bool OnClose();
1577 static const wxEventTableEntry sm_eventTableEntries
[];
1580 static const wxEventTable sm_eventTable
;
1582 virtual const wxEventTable
*GetEventTable() const;
1585 wxEvtHandler
* m_nextHandler
;
1586 wxEvtHandler
* m_previousHandler
;
1587 wxList
* m_dynamicEvents
;
1588 wxList
* m_pendingEvents
;
1590 #if defined (__VISAGECPP__)
1591 wxCriticalSection m_eventsLocker
;
1593 wxCriticalSection
* m_eventsLocker
;
1597 // optimization: instead of using costly IsKindOf() to decide whether we're
1598 // a window (which is true in 99% of cases), use this flag
1601 // Is event handler enabled?
1605 typedef void (wxEvtHandler::*wxEventFunction
)(wxEvent
&);
1607 typedef void (wxEvtHandler::*wxCommandEventFunction
)(wxCommandEvent
&);
1608 typedef void (wxEvtHandler::*wxScrollEventFunction
)(wxScrollEvent
&);
1609 typedef void (wxEvtHandler::*wxScrollWinEventFunction
)(wxScrollWinEvent
&);
1610 typedef void (wxEvtHandler::*wxSizeEventFunction
)(wxSizeEvent
&);
1611 typedef void (wxEvtHandler::*wxMoveEventFunction
)(wxMoveEvent
&);
1612 typedef void (wxEvtHandler::*wxPaintEventFunction
)(wxPaintEvent
&);
1613 typedef void (wxEvtHandler::*wxEraseEventFunction
)(wxEraseEvent
&);
1614 typedef void (wxEvtHandler::*wxMouseEventFunction
)(wxMouseEvent
&);
1615 typedef void (wxEvtHandler::*wxCharEventFunction
)(wxKeyEvent
&);
1616 typedef void (wxEvtHandler::*wxFocusEventFunction
)(wxFocusEvent
&);
1617 typedef void (wxEvtHandler::*wxActivateEventFunction
)(wxActivateEvent
&);
1618 typedef void (wxEvtHandler::*wxMenuEventFunction
)(wxMenuEvent
&);
1619 typedef void (wxEvtHandler::*wxJoystickEventFunction
)(wxJoystickEvent
&);
1620 typedef void (wxEvtHandler::*wxDropFilesEventFunction
)(wxDropFilesEvent
&);
1621 typedef void (wxEvtHandler::*wxInitDialogEventFunction
)(wxInitDialogEvent
&);
1622 typedef void (wxEvtHandler::*wxSysColourChangedFunction
)(wxSysColourChangedEvent
&);
1623 typedef void (wxEvtHandler::*wxUpdateUIEventFunction
)(wxUpdateUIEvent
&);
1624 typedef void (wxEvtHandler::*wxIdleEventFunction
)(wxIdleEvent
&);
1625 typedef void (wxEvtHandler::*wxCloseEventFunction
)(wxCloseEvent
&);
1626 typedef void (wxEvtHandler::*wxShowEventFunction
)(wxShowEvent
&);
1627 typedef void (wxEvtHandler::*wxIconizeEventFunction
)(wxShowEvent
&);
1628 typedef void (wxEvtHandler::*wxMaximizeEventFunction
)(wxShowEvent
&);
1629 typedef void (wxEvtHandler::*wxNavigationKeyEventFunction
)(wxNavigationKeyEvent
&);
1630 typedef void (wxEvtHandler::*wxPaletteChangedEventFunction
)(wxPaletteChangedEvent
&);
1631 typedef void (wxEvtHandler::*wxQueryNewPaletteEventFunction
)(wxQueryNewPaletteEvent
&);
1632 typedef void (wxEvtHandler::*wxWindowCreateEventFunction
)(wxWindowCreateEvent
&);
1633 typedef void (wxEvtHandler::*wxWindowDestroyEventFunction
)(wxWindowDestroyEvent
&);
1634 typedef void (wxEvtHandler::*wxSetCursorEventFunction
)(wxSetCursorEvent
&);
1635 typedef void (wxEvtHandler::*wxNotifyEventFunction
)(wxNotifyEvent
&);
1636 typedef void (wxEvtHandler::*wxHelpEventFunction
)(wxHelpEvent
&);
1639 // N.B. In GNU-WIN32, you *have* to take the address of a member function
1640 // (use &) or the compiler crashes...
1642 #define DECLARE_EVENT_TABLE() \
1644 static const wxEventTableEntry sm_eventTableEntries[];\
1646 static const wxEventTable sm_eventTable;\
1647 virtual const wxEventTable* GetEventTable() const;
1649 #define BEGIN_EVENT_TABLE(theClass, baseClass) \
1650 const wxEventTable *theClass::GetEventTable() const { return &theClass::sm_eventTable; }\
1651 const wxEventTable theClass::sm_eventTable =\
1652 { &baseClass::sm_eventTable, &theClass::sm_eventTableEntries[0] };\
1653 const wxEventTableEntry theClass::sm_eventTableEntries[] = { \
1655 #define END_EVENT_TABLE() \
1656 wxEventTableEntry( 0, 0, 0, 0, 0 ) };
1659 * Event table macros
1663 #define EVT_CUSTOM(event, id, func) wxEventTableEntry( event, id, -1, (wxObjectEventFunction) (wxEventFunction) & func, (wxObject *) NULL ),
1664 #define EVT_CUSTOM_RANGE(event, id1, id2, func) wxEventTableEntry( event, id1, id2, (wxObjectEventFunction) (wxEventFunction) & func, (wxObject *) NULL ),
1667 #define EVT_SIZE(func) wxEventTableEntry( wxEVT_SIZE, -1, -1, (wxObjectEventFunction) (wxEventFunction) (wxSizeEventFunction) & func, (wxObject *) NULL ),
1668 #define EVT_MOVE(func) wxEventTableEntry( wxEVT_MOVE, -1, -1, (wxObjectEventFunction) (wxEventFunction) (wxMoveEventFunction) & func, (wxObject *) NULL ),
1669 #define EVT_CLOSE(func) wxEventTableEntry( wxEVT_CLOSE_WINDOW, -1, -1, (wxObjectEventFunction) (wxEventFunction) (wxCloseEventFunction) & func, (wxObject *) NULL ),
1670 #define EVT_END_SESSION(func) wxEventTableEntry( wxEVT_END_SESSION, -1, -1, (wxObjectEventFunction) (wxEventFunction) (wxCloseEventFunction) & func, (wxObject *) NULL ),
1671 #define EVT_QUERY_END_SESSION(func) wxEventTableEntry( wxEVT_QUERY_END_SESSION, -1, -1, (wxObjectEventFunction) (wxEventFunction) (wxCloseEventFunction) & func, (wxObject *) NULL ),
1672 #define EVT_PAINT(func) wxEventTableEntry( wxEVT_PAINT, -1, -1, (wxObjectEventFunction) (wxEventFunction) (wxPaintEventFunction) & func, (wxObject *) NULL ),
1673 #define EVT_ERASE_BACKGROUND(func) wxEventTableEntry( wxEVT_ERASE_BACKGROUND, -1, -1, (wxObjectEventFunction) (wxEventFunction) (wxEraseEventFunction) & func, (wxObject *) NULL ),
1674 #define EVT_CHAR(func) wxEventTableEntry( wxEVT_CHAR, -1, -1, (wxObjectEventFunction) (wxEventFunction) (wxCharEventFunction) & func, (wxObject *) NULL ),
1675 #define EVT_KEY_DOWN(func) wxEventTableEntry( wxEVT_KEY_DOWN, -1, -1, (wxObjectEventFunction) (wxEventFunction) (wxCharEventFunction) & func, (wxObject *) NULL ),
1676 #define EVT_KEY_UP(func) wxEventTableEntry( wxEVT_KEY_UP, -1, -1, (wxObjectEventFunction) (wxEventFunction) (wxCharEventFunction) & func, (wxObject *) NULL ),
1677 #define EVT_CHAR_HOOK(func) wxEventTableEntry( wxEVT_CHAR_HOOK, -1, -1, (wxObjectEventFunction) (wxEventFunction) (wxCharEventFunction) & func, NULL ),
1678 #define EVT_MENU_HIGHLIGHT(id, func) wxEventTableEntry( wxEVT_MENU_HIGHLIGHT, id, -1, (wxObjectEventFunction) (wxEventFunction) (wxMenuEventFunction) & func, (wxObject *) NULL ),
1679 #define EVT_MENU_HIGHLIGHT_ALL(func) wxEventTableEntry( wxEVT_MENU_HIGHLIGHT, -1, -1, (wxObjectEventFunction) (wxEventFunction) (wxMenuEventFunction) & func, (wxObject *) NULL ),
1680 #define EVT_SET_FOCUS(func) wxEventTableEntry( wxEVT_SET_FOCUS, -1, -1, (wxObjectEventFunction) (wxEventFunction) (wxFocusEventFunction) & func, (wxObject *) NULL ),
1681 #define EVT_KILL_FOCUS(func) wxEventTableEntry( wxEVT_KILL_FOCUS, -1, -1, (wxObjectEventFunction) (wxEventFunction) (wxFocusEventFunction) & func, (wxObject *) NULL ),
1682 #define EVT_ACTIVATE(func) wxEventTableEntry( wxEVT_ACTIVATE, -1, -1, (wxObjectEventFunction) (wxEventFunction) (wxActivateEventFunction) & func, (wxObject *) NULL ),
1683 #define EVT_ACTIVATE_APP(func) wxEventTableEntry( wxEVT_ACTIVATE_APP, -1, -1, (wxObjectEventFunction) (wxEventFunction) (wxActivateEventFunction) & func, (wxObject *) NULL ),
1684 #define EVT_END_SESSION(func) wxEventTableEntry( wxEVT_END_SESSION, -1, -1, (wxObjectEventFunction) (wxEventFunction) (wxCloseEventFunction) & func, (wxObject *) NULL ),
1685 #define EVT_QUERY_END_SESSION(func) wxEventTableEntry( wxEVT_QUERY_END_SESSION, -1, -1, (wxObjectEventFunction) (wxEventFunction) (wxCloseEventFunction) & func, (wxObject *) NULL ),
1686 #define EVT_DROP_FILES(func) wxEventTableEntry( wxEVT_DROP_FILES, -1, -1, (wxObjectEventFunction) (wxEventFunction) (wxDropFilesEventFunction) & func, (wxObject *) NULL ),
1687 #define EVT_INIT_DIALOG(func) wxEventTableEntry( wxEVT_INIT_DIALOG, -1, -1, (wxObjectEventFunction) (wxEventFunction) (wxInitDialogEventFunction) & func, (wxObject *) NULL ),
1688 #define EVT_SYS_COLOUR_CHANGED(func) wxEventTableEntry( wxEVT_SYS_COLOUR_CHANGED, -1, -1, (wxObjectEventFunction) (wxEventFunction) (wxSysColourChangedFunction) & func, (wxObject *) NULL ),
1689 #define EVT_SHOW(func) wxEventTableEntry( wxEVT_SHOW, -1, -1, (wxObjectEventFunction) (wxEventFunction) (wxShowEventFunction) & func, (wxObject *) NULL ),
1690 #define EVT_MAXIMIZE(func) wxEventTableEntry( wxEVT_MAXIMIZE, -1, -1, (wxObjectEventFunction) (wxEventFunction) (wxMaximizeEventFunction) & func, (wxObject *) NULL ),
1691 #define EVT_ICONIZE(func) wxEventTableEntry( wxEVT_ICONIZE, -1, -1, (wxObjectEventFunction) (wxEventFunction) (wxIconizeEventFunction) & func, (wxObject *) NULL ),
1692 #define EVT_NAVIGATION_KEY(func) wxEventTableEntry( wxEVT_NAVIGATION_KEY, -1, -1, (wxObjectEventFunction) (wxEventFunction) (wxCommandEventFunction) (wxNavigationKeyEventFunction) & func, (wxObject *) NULL ),
1693 #define EVT_PALETTE_CHANGED(func) wxEventTableEntry( wxEVT_PALETTE_CHANGED, -1, -1, (wxObjectEventFunction) (wxEventFunction) (wxPaletteChangedEventFunction) & func, (wxObject *) NULL ),
1694 #define EVT_QUERY_NEW_PALETTE(func) wxEventTableEntry( wxEVT_QUERY_NEW_PALETTE, -1, -1, (wxObjectEventFunction) (wxEventFunction) (wxQueryNewPaletteEventFunction) & func, (wxObject *) NULL ),
1695 #define EVT_WINDOW_CREATE(func) wxEventTableEntry( wxEVT_CREATE, -1, -1, (wxObjectEventFunction) (wxEventFunction) (wxWindowCreateEventFunction) & func, (wxObject *) NULL ),
1696 #define EVT_WINDOW_DESTROY(func) wxEventTableEntry( wxEVT_DESTROY, -1, -1, (wxObjectEventFunction) (wxEventFunction) (wxWindowDestroyEventFunction) & func, (wxObject *) NULL ),
1697 #define EVT_SET_CURSOR(func) wxEventTableEntry( wxEVT_SET_CURSOR, -1, -1, (wxObjectEventFunction) (wxEventFunction) (wxSetCursorEventFunction) & func, (wxObject *) NULL ),
1700 #define EVT_LEFT_DOWN(func) wxEventTableEntry( wxEVT_LEFT_DOWN, -1, -1, (wxObjectEventFunction) (wxEventFunction) (wxMouseEventFunction) & func, (wxObject *) NULL ),
1701 #define EVT_LEFT_UP(func) wxEventTableEntry( wxEVT_LEFT_UP, -1, -1, (wxObjectEventFunction) (wxEventFunction) (wxMouseEventFunction) & func, (wxObject *) NULL ),
1702 #define EVT_MIDDLE_DOWN(func) wxEventTableEntry( wxEVT_MIDDLE_DOWN, -1, -1, (wxObjectEventFunction) (wxEventFunction) (wxMouseEventFunction) & func, (wxObject *) NULL ),
1703 #define EVT_MIDDLE_UP(func) wxEventTableEntry( wxEVT_MIDDLE_UP, -1, -1, (wxObjectEventFunction) (wxEventFunction) (wxMouseEventFunction) & func, (wxObject *) NULL ),
1704 #define EVT_RIGHT_DOWN(func) wxEventTableEntry( wxEVT_RIGHT_DOWN, -1, -1, (wxObjectEventFunction) (wxEventFunction) (wxMouseEventFunction) & func, (wxObject *) NULL ),
1705 #define EVT_RIGHT_UP(func) wxEventTableEntry( wxEVT_RIGHT_UP, -1, -1, (wxObjectEventFunction) (wxEventFunction) (wxMouseEventFunction) & func, (wxObject *) NULL ),
1706 #define EVT_MOTION(func) wxEventTableEntry( wxEVT_MOTION, -1, -1, (wxObjectEventFunction) (wxEventFunction) (wxMouseEventFunction) & func, (wxObject *) NULL ),
1707 #define EVT_LEFT_DCLICK(func) wxEventTableEntry( wxEVT_LEFT_DCLICK, -1, -1, (wxObjectEventFunction) (wxEventFunction) (wxMouseEventFunction) & func, (wxObject *) NULL ),
1708 #define EVT_MIDDLE_DCLICK(func) wxEventTableEntry( wxEVT_MIDDLE_DCLICK, -1, -1, (wxObjectEventFunction) (wxEventFunction) (wxMouseEventFunction) & func, (wxObject *) NULL ),
1709 #define EVT_RIGHT_DCLICK(func) wxEventTableEntry( wxEVT_RIGHT_DCLICK, -1, -1, (wxObjectEventFunction) (wxEventFunction) (wxMouseEventFunction) & func, (wxObject *) NULL ),
1710 #define EVT_LEAVE_WINDOW(func) wxEventTableEntry( wxEVT_LEAVE_WINDOW, -1, -1, (wxObjectEventFunction) (wxEventFunction) (wxMouseEventFunction) & func, (wxObject *) NULL ),
1711 #define EVT_ENTER_WINDOW(func) wxEventTableEntry( wxEVT_ENTER_WINDOW, -1, -1, (wxObjectEventFunction) (wxEventFunction) (wxMouseEventFunction) & func, (wxObject *) NULL ),
1714 #define EVT_MOUSE_EVENTS(func) \
1715 wxEventTableEntry( wxEVT_LEFT_DOWN, -1, -1, (wxObjectEventFunction) (wxEventFunction) (wxMouseEventFunction) & func, (wxObject *) NULL ),\
1716 wxEventTableEntry( wxEVT_LEFT_UP, -1, -1, (wxObjectEventFunction) (wxEventFunction) (wxMouseEventFunction) & func, (wxObject *) NULL ),\
1717 wxEventTableEntry( wxEVT_MIDDLE_DOWN, -1, -1, (wxObjectEventFunction) (wxEventFunction) (wxMouseEventFunction) & func, (wxObject *) NULL ),\
1718 wxEventTableEntry( wxEVT_MIDDLE_UP, -1, -1, (wxObjectEventFunction) (wxEventFunction) (wxMouseEventFunction) & func, (wxObject *) NULL ),\
1719 wxEventTableEntry( wxEVT_RIGHT_DOWN, -1, -1, (wxObjectEventFunction) (wxEventFunction) (wxMouseEventFunction) & func, (wxObject *) NULL ),\
1720 wxEventTableEntry( wxEVT_RIGHT_UP, -1, -1, (wxObjectEventFunction) (wxEventFunction) (wxMouseEventFunction) & func, (wxObject *) NULL ),\
1721 wxEventTableEntry( wxEVT_MOTION, -1, -1, (wxObjectEventFunction) (wxEventFunction) (wxMouseEventFunction) & func, (wxObject *) NULL ),\
1722 wxEventTableEntry( wxEVT_LEFT_DCLICK, -1, -1, (wxObjectEventFunction) (wxEventFunction) (wxMouseEventFunction) & func, (wxObject *) NULL ),\
1723 wxEventTableEntry( wxEVT_MIDDLE_DCLICK, -1, -1, (wxObjectEventFunction) (wxEventFunction) (wxMouseEventFunction) & func, (wxObject *) NULL ),\
1724 wxEventTableEntry( wxEVT_RIGHT_DCLICK, -1, -1, (wxObjectEventFunction) (wxEventFunction) (wxMouseEventFunction) & func, (wxObject *) NULL ),\
1725 wxEventTableEntry( wxEVT_ENTER_WINDOW, -1, -1, (wxObjectEventFunction) (wxEventFunction) (wxMouseEventFunction) & func, (wxObject *) NULL ),\
1726 wxEventTableEntry( wxEVT_LEAVE_WINDOW, -1, -1, (wxObjectEventFunction) (wxEventFunction) (wxMouseEventFunction) & func, (wxObject *) NULL ),
1729 #define EVT_COMMAND(id, event, fn) wxEventTableEntry( event, id, -1, (wxObjectEventFunction) (wxEventFunction) (wxCommandEventFunction) & fn, (wxObject *) NULL ),
1730 #define EVT_COMMAND_RANGE(id1, id2, event, fn) wxEventTableEntry( event, id1, id2, (wxObjectEventFunction) (wxEventFunction) (wxCommandEventFunction) & fn, (wxObject *) NULL ),
1732 // Scrolling from wxWindow (sent to wxScrolledWindow)
1733 #define EVT_SCROLLWIN(func) \
1734 wxEventTableEntry( wxEVT_SCROLLWIN_TOP, -1, -1, (wxObjectEventFunction) (wxEventFunction) (wxScrollWinEventFunction) & func, (wxObject *) NULL ),\
1735 wxEventTableEntry( wxEVT_SCROLLWIN_BOTTOM, -1, -1, (wxObjectEventFunction) (wxEventFunction) (wxScrollWinEventFunction) & func, (wxObject *) NULL ),\
1736 wxEventTableEntry( wxEVT_SCROLLWIN_LINEUP, -1, -1, (wxObjectEventFunction) (wxEventFunction) (wxScrollWinEventFunction) & func, (wxObject *) NULL ),\
1737 wxEventTableEntry( wxEVT_SCROLLWIN_LINEDOWN, -1, -1, (wxObjectEventFunction) (wxEventFunction) (wxScrollWinEventFunction) & func, (wxObject *) NULL ),\
1738 wxEventTableEntry( wxEVT_SCROLLWIN_PAGEUP, -1, -1, (wxObjectEventFunction) (wxEventFunction) (wxScrollWinEventFunction) & func, (wxObject *) NULL ),\
1739 wxEventTableEntry( wxEVT_SCROLLWIN_PAGEDOWN, -1, -1, (wxObjectEventFunction) (wxEventFunction) (wxScrollWinEventFunction) & func, (wxObject *) NULL ),\
1740 wxEventTableEntry( wxEVT_SCROLLWIN_THUMBTRACK, -1, -1, (wxObjectEventFunction) (wxEventFunction) (wxScrollWinEventFunction) & func, (wxObject *) NULL ),\
1741 wxEventTableEntry( wxEVT_SCROLLWIN_THUMBRELEASE, -1, -1, (wxObjectEventFunction) (wxEventFunction) (wxScrollWinEventFunction) & func, (wxObject *) NULL ),
1743 #define EVT_SCROLLWIN_TOP(func) wxEventTableEntry( wxEVT_SCROLLWIN_TOP, -1, -1, (wxObjectEventFunction) (wxEventFunction) (wxScrollWinEventFunction) & func, (wxObject *) NULL ),
1744 #define EVT_SCROLLWIN_BOTTOM(func) wxEventTableEntry( wxEVT_SCROLLWIN_BOTTOM, -1, -1, (wxObjectEventFunction) (wxEventFunction) (wxScrollWinEventFunction) & func, (wxObject *) NULL ),
1745 #define EVT_SCROLLWIN_LINEUP(func) wxEventTableEntry( wxEVT_SCROLLWIN_LINEUP, -1, -1, (wxObjectEventFunction) (wxEventFunction) (wxScrollWinEventFunction) & func, (wxObject *) NULL ),
1746 #define EVT_SCROLLWIN_LINEDOWN(func) wxEventTableEntry( wxEVT_SCROLLWIN_LINEDOWN, -1, -1, (wxObjectEventFunction) (wxEventFunction) (wxScrollWinEventFunction) & func, (wxObject *) NULL ),
1747 #define EVT_SCROLLWIN_PAGEUP(func) wxEventTableEntry( wxEVT_SCROLLWIN_PAGEUP, -1, -1, (wxObjectEventFunction) (wxEventFunction) (wxScrollWinEventFunction) & func, (wxObject *) NULL ),
1748 #define EVT_SCROLLWIN_PAGEDOWN(func) wxEventTableEntry( wxEVT_SCROLLWIN_PAGEDOWN, -1, -1, (wxObjectEventFunction) (wxEventFunction) (wxScrollWinEventFunction) & func, (wxObject *) NULL ),
1749 #define EVT_SCROLLWIN_THUMBTRACK(func) wxEventTableEntry( wxEVT_SCROLLWIN_THUMBTRACK, -1, -1, (wxObjectEventFunction) (wxEventFunction) (wxScrollWinEventFunction) & func, (wxObject *) NULL ),
1750 #define EVT_SCROLLWIN_THUMBRELEASE(func) wxEventTableEntry( wxEVT_SCROLLWIN_THUMBRELEASE, -1, -1, (wxObjectEventFunction) (wxEventFunction) (wxScrollWinEventFunction) & func, (wxObject *) NULL ),
1752 // Scrolling from wxSlider and wxScrollBar
1753 #define EVT_SCROLL(func) \
1754 wxEventTableEntry( wxEVT_SCROLL_TOP, -1, -1, (wxObjectEventFunction) (wxEventFunction) (wxScrollEventFunction) & func, (wxObject *) NULL ),\
1755 wxEventTableEntry( wxEVT_SCROLL_BOTTOM, -1, -1, (wxObjectEventFunction) (wxEventFunction) (wxScrollEventFunction) & func, (wxObject *) NULL ),\
1756 wxEventTableEntry( wxEVT_SCROLL_LINEUP, -1, -1, (wxObjectEventFunction) (wxEventFunction) (wxScrollEventFunction) & func, (wxObject *) NULL ),\
1757 wxEventTableEntry( wxEVT_SCROLL_LINEDOWN, -1, -1, (wxObjectEventFunction) (wxEventFunction) (wxScrollEventFunction) & func, (wxObject *) NULL ),\
1758 wxEventTableEntry( wxEVT_SCROLL_PAGEUP, -1, -1, (wxObjectEventFunction) (wxEventFunction) (wxScrollEventFunction) & func, (wxObject *) NULL ),\
1759 wxEventTableEntry( wxEVT_SCROLL_PAGEDOWN, -1, -1, (wxObjectEventFunction) (wxEventFunction) (wxScrollEventFunction) & func, (wxObject *) NULL ),\
1760 wxEventTableEntry( wxEVT_SCROLL_THUMBTRACK, -1, -1, (wxObjectEventFunction) (wxEventFunction) (wxScrollEventFunction) & func, (wxObject *) NULL ),\
1761 wxEventTableEntry( wxEVT_SCROLL_THUMBRELEASE, -1, -1, (wxObjectEventFunction) (wxEventFunction) (wxScrollEventFunction) & func, (wxObject *) NULL ),
1763 #define EVT_SCROLL_TOP(func) wxEventTableEntry( wxEVT_SCROLL_TOP, -1, -1, (wxObjectEventFunction) (wxEventFunction) (wxScrollEventFunction) & func, (wxObject *) NULL ),
1764 #define EVT_SCROLL_BOTTOM(func) wxEventTableEntry( wxEVT_SCROLL_BOTTOM, -1, -1, (wxObjectEventFunction) (wxEventFunction) (wxScrollEventFunction) & func, (wxObject *) NULL ),
1765 #define EVT_SCROLL_LINEUP(func) wxEventTableEntry( wxEVT_SCROLL_LINEUP, -1, -1, (wxObjectEventFunction) (wxEventFunction) (wxScrollEventFunction) & func, (wxObject *) NULL ),
1766 #define EVT_SCROLL_LINEDOWN(func) wxEventTableEntry( wxEVT_SCROLL_LINEDOWN, -1, -1, (wxObjectEventFunction) (wxEventFunction) (wxScrollEventFunction) & func, (wxObject *) NULL ),
1767 #define EVT_SCROLL_PAGEUP(func) wxEventTableEntry( wxEVT_SCROLL_PAGEUP, -1, -1, (wxObjectEventFunction) (wxEventFunction) (wxScrollEventFunction) & func, (wxObject *) NULL ),
1768 #define EVT_SCROLL_PAGEDOWN(func) wxEventTableEntry( wxEVT_SCROLL_PAGEDOWN, -1, -1, (wxObjectEventFunction) (wxEventFunction) (wxScrollEventFunction) & func, (wxObject *) NULL ),
1769 #define EVT_SCROLL_THUMBTRACK(func) wxEventTableEntry( wxEVT_SCROLL_THUMBTRACK, -1, -1, (wxObjectEventFunction) (wxEventFunction) (wxScrollEventFunction) & func, (wxObject *) NULL ),
1770 #define EVT_SCROLL_THUMBRELEASE(func) wxEventTableEntry( wxEVT_SCROLL_THUMBRELEASE, -1, -1, (wxObjectEventFunction) (wxEventFunction) (wxScrollEventFunction) & func, (wxObject *) NULL ),
1772 // Scrolling from wxSlider and wxScrollBar, with an id
1773 #define EVT_COMMAND_SCROLL(id, func) \
1774 wxEventTableEntry( wxEVT_SCROLL_TOP, id, -1, (wxObjectEventFunction) (wxEventFunction) (wxScrollEventFunction) & func, (wxObject *) NULL ),\
1775 wxEventTableEntry( wxEVT_SCROLL_BOTTOM, id, -1, (wxObjectEventFunction) (wxEventFunction) (wxScrollEventFunction) & func, (wxObject *) NULL ),\
1776 wxEventTableEntry( wxEVT_SCROLL_LINEUP, id, -1, (wxObjectEventFunction) (wxEventFunction) (wxScrollEventFunction) & func, (wxObject *) NULL ),\
1777 wxEventTableEntry( wxEVT_SCROLL_LINEDOWN, id, -1, (wxObjectEventFunction) (wxEventFunction) (wxScrollEventFunction) & func, (wxObject *) NULL ),\
1778 wxEventTableEntry( wxEVT_SCROLL_PAGEUP, id, -1, (wxObjectEventFunction) (wxEventFunction) (wxScrollEventFunction) & func, (wxObject *) NULL ),\
1779 wxEventTableEntry( wxEVT_SCROLL_PAGEDOWN, id, -1, (wxObjectEventFunction) (wxEventFunction) (wxScrollEventFunction) & func, (wxObject *) NULL ),\
1780 wxEventTableEntry( wxEVT_SCROLL_THUMBTRACK, id, -1, (wxObjectEventFunction) (wxEventFunction) (wxScrollEventFunction) & func, (wxObject *) NULL ),\
1781 wxEventTableEntry( wxEVT_SCROLL_THUMBRELEASE, id, -1, (wxObjectEventFunction) (wxEventFunction) (wxScrollEventFunction) & func, (wxObject *) NULL ),
1783 #define EVT_COMMAND_SCROLL_TOP(id, func) wxEventTableEntry( wxEVT_SCROLL_TOP, id, -1, (wxObjectEventFunction) (wxEventFunction) (wxScrollEventFunction) & func, (wxObject *) NULL ),
1784 #define EVT_COMMAND_SCROLL_BOTTOM(id, func) wxEventTableEntry( wxEVT_SCROLL_BOTTOM, id, -1, (wxObjectEventFunction) (wxEventFunction) (wxScrollEventFunction) & func, (wxObject *) NULL ),
1785 #define EVT_COMMAND_SCROLL_LINEUP(id, func) wxEventTableEntry( wxEVT_SCROLL_LINEUP, id, -1, (wxObjectEventFunction) (wxEventFunction) (wxScrollEventFunction) & func, (wxObject *) NULL ),
1786 #define EVT_COMMAND_SCROLL_LINEDOWN(id, func) wxEventTableEntry( wxEVT_SCROLL_LINEDOWN, id, -1, (wxObjectEventFunction) (wxEventFunction) (wxScrollEventFunction) & func, (wxObject *) NULL ),
1787 #define EVT_COMMAND_SCROLL_PAGEUP(id, func) wxEventTableEntry( wxEVT_SCROLL_PAGEUP, id, -1, (wxObjectEventFunction) (wxEventFunction) (wxScrollEventFunction) & func, (wxObject *) NULL ),
1788 #define EVT_COMMAND_SCROLL_PAGEDOWN(id, func) wxEventTableEntry( wxEVT_SCROLL_PAGEDOWN, id, -1, (wxObjectEventFunction) (wxEventFunction) (wxScrollEventFunction) & func, (wxObject *) NULL ),
1789 #define EVT_COMMAND_SCROLL_THUMBTRACK(id, func) wxEventTableEntry( wxEVT_SCROLL_THUMBTRACK, id, -1, (wxObjectEventFunction) (wxEventFunction) (wxScrollEventFunction) & func, (wxObject *) NULL ),
1790 #define EVT_COMMAND_SCROLL_THUMBRELEASE(id, func) wxEventTableEntry( wxEVT_SCROLL_THUMBRELEASE, id, -1, (wxObjectEventFunction) (wxEventFunction) (wxScrollEventFunction) & func, (wxObject *) NULL ),
1792 // Convenience macros for commonly-used commands
1793 #define EVT_BUTTON(id, fn) wxEventTableEntry( wxEVT_COMMAND_BUTTON_CLICKED, id, -1, (wxObjectEventFunction) (wxEventFunction) (wxCommandEventFunction) & fn, (wxObject *) NULL ),
1794 #define EVT_CHECKBOX(id, fn) wxEventTableEntry( wxEVT_COMMAND_CHECKBOX_CLICKED, id, -1, (wxObjectEventFunction) (wxEventFunction) (wxCommandEventFunction) & fn, (wxObject *) NULL ),
1795 #define EVT_CHOICE(id, fn) wxEventTableEntry( wxEVT_COMMAND_CHOICE_SELECTED, id, -1, (wxObjectEventFunction) (wxEventFunction) (wxCommandEventFunction) & fn, (wxObject *) NULL ),
1796 #define EVT_LISTBOX(id, fn) wxEventTableEntry( wxEVT_COMMAND_LISTBOX_SELECTED, id, -1, (wxObjectEventFunction) (wxEventFunction) (wxCommandEventFunction) & fn, (wxObject *) NULL ),
1797 #define EVT_LISTBOX_DCLICK(id, fn) wxEventTableEntry( wxEVT_COMMAND_LISTBOX_DOUBLECLICKED, id, -1, (wxObjectEventFunction) (wxEventFunction) (wxCommandEventFunction) & fn, (wxObject *) NULL ),
1798 #define EVT_TEXT(id, fn) wxEventTableEntry( wxEVT_COMMAND_TEXT_UPDATED, id, -1, (wxObjectEventFunction) (wxEventFunction) (wxCommandEventFunction) & fn, (wxObject *) NULL ),
1799 #define EVT_TEXT_ENTER(id, fn) wxEventTableEntry( wxEVT_COMMAND_TEXT_ENTER, id, -1, (wxObjectEventFunction) (wxEventFunction) (wxCommandEventFunction) & fn, (wxObject *) NULL ),
1800 #define EVT_MENU(id, fn) wxEventTableEntry( wxEVT_COMMAND_MENU_SELECTED, id, -1, (wxObjectEventFunction) (wxEventFunction) (wxCommandEventFunction) & fn, (wxObject *) NULL ),
1801 #define EVT_MENU_RANGE(id1, id2, fn) wxEventTableEntry( wxEVT_COMMAND_MENU_SELECTED, id1, id2, (wxObjectEventFunction) (wxEventFunction) (wxCommandEventFunction) & fn, (wxObject *) NULL ),
1802 #define EVT_SLIDER(id, fn) wxEventTableEntry( wxEVT_COMMAND_SLIDER_UPDATED, id, -1, (wxObjectEventFunction) (wxEventFunction) (wxCommandEventFunction) & fn, (wxObject *) NULL ),
1803 #define EVT_RADIOBOX(id, fn) wxEventTableEntry( wxEVT_COMMAND_RADIOBOX_SELECTED, id, -1, (wxObjectEventFunction) (wxEventFunction) (wxCommandEventFunction) & fn, (wxObject *) NULL ),
1804 #define EVT_RADIOBUTTON(id, fn) wxEventTableEntry( wxEVT_COMMAND_RADIOBUTTON_SELECTED, id, -1, (wxObjectEventFunction) (wxEventFunction) (wxCommandEventFunction) & fn, (wxObject *) NULL ),
1805 // EVT_SCROLLBAR is now obsolete since we use EVT_COMMAND_SCROLL... events
1806 #define EVT_SCROLLBAR(id, fn) wxEventTableEntry( wxEVT_COMMAND_SCROLLBAR_UPDATED, id, -1, (wxObjectEventFunction) (wxEventFunction) (wxCommandEventFunction) & fn, (wxObject *) NULL ),
1807 #define EVT_VLBOX(id, fn) wxEventTableEntry( wxEVT_COMMAND_VLBOX_SELECTED, id, -1, (wxObjectEventFunction) (wxEventFunction) (wxCommandEventFunction) & fn, (wxObject *) NULL ),
1808 #define EVT_COMBOBOX(id, fn) wxEventTableEntry( wxEVT_COMMAND_COMBOBOX_SELECTED, id, -1, (wxObjectEventFunction) (wxEventFunction) (wxCommandEventFunction) & fn, (wxObject *) NULL ),
1809 #define EVT_TOOL(id, fn) wxEventTableEntry( wxEVT_COMMAND_TOOL_CLICKED, id, -1, (wxObjectEventFunction) (wxEventFunction) (wxCommandEventFunction) & fn, (wxObject *) NULL ),
1810 #define EVT_TOOL_RANGE(id1, id2, fn) wxEventTableEntry( wxEVT_COMMAND_TOOL_CLICKED, id1, id2, (wxObjectEventFunction) (wxEventFunction) (wxCommandEventFunction) & fn, (wxObject *) NULL ),
1811 #define EVT_TOOL_RCLICKED(id, fn) wxEventTableEntry( wxEVT_COMMAND_TOOL_RCLICKED, id, -1, (wxObjectEventFunction) (wxEventFunction) (wxCommandEventFunction) & fn, (wxObject *) NULL ),
1812 #define EVT_TOOL_RCLICKED_RANGE(id1, id2, fn) wxEventTableEntry( wxEVT_COMMAND_TOOL_RCLICKED, id1, id2, (wxObjectEventFunction) (wxEventFunction) (wxCommandEventFunction) & fn, (wxObject *) NULL ),
1813 #define EVT_TOOL_ENTER(id, fn) wxEventTableEntry( wxEVT_COMMAND_TOOL_ENTER, id, -1, (wxObjectEventFunction) (wxEventFunction) (wxCommandEventFunction) & fn, (wxObject *) NULL ),
1814 #define EVT_CHECKLISTBOX(id, fn) wxEventTableEntry( wxEVT_COMMAND_CHECKLISTBOX_TOGGLED, id, -1, (wxObjectEventFunction) (wxEventFunction) (wxCommandEventFunction) & fn, (wxObject *) NULL ),
1816 // Generic command events
1817 #define EVT_COMMAND_LEFT_CLICK(id, fn) wxEventTableEntry( wxEVT_COMMAND_LEFT_CLICK, id, -1, (wxObjectEventFunction) (wxEventFunction) (wxCommandEventFunction) & fn, (wxObject *) NULL ),
1818 #define EVT_COMMAND_LEFT_DCLICK(id, fn) wxEventTableEntry( wxEVT_COMMAND_LEFT_DCLICK, id, -1, (wxObjectEventFunction) (wxEventFunction) (wxCommandEventFunction) & fn, (wxObject *) NULL ),
1819 #define EVT_COMMAND_RIGHT_CLICK(id, fn) wxEventTableEntry( wxEVT_COMMAND_RIGHT_CLICK, id, -1, (wxObjectEventFunction) (wxEventFunction) (wxCommandEventFunction) & fn, (wxObject *) NULL ),
1820 #define EVT_COMMAND_RIGHT_DCLICK(id, fn) wxEventTableEntry( wxEVT_COMMAND_RIGHT_DCLICK, id, -1, (wxObjectEventFunction) (wxEventFunction) (wxCommandEventFunction) & fn, (wxObject *) NULL ),
1821 #define EVT_COMMAND_SET_FOCUS(id, fn) wxEventTableEntry( wxEVT_COMMAND_SET_FOCUS, id, -1, (wxObjectEventFunction) (wxEventFunction) (wxCommandEventFunction) & fn, (wxObject *) NULL ),
1822 #define EVT_COMMAND_KILL_FOCUS(id, fn) wxEventTableEntry( wxEVT_COMMAND_KILL_FOCUS, id, -1, (wxObjectEventFunction) (wxEventFunction) (wxCommandEventFunction) & fn, (wxObject *) NULL ),
1823 #define EVT_COMMAND_ENTER(id, fn) wxEventTableEntry( wxEVT_COMMAND_ENTER, id, -1, (wxObjectEventFunction) (wxEventFunction) (wxCommandEventFunction) & fn, (wxObject *) NULL ),
1826 #define EVT_JOY_DOWN(func) \
1827 wxEventTableEntry( wxEVT_JOY_BUTTON_DOWN, -1, -1, (wxObjectEventFunction) (wxEventFunction) (wxJoystickEventFunction) & func, (wxObject *) NULL ),
1828 #define EVT_JOY_UP(func) \
1829 wxEventTableEntry( wxEVT_JOY_BUTTON_UP, -1, -1, (wxObjectEventFunction) (wxEventFunction) (wxJoystickEventFunction) & func, (wxObject *) NULL ),
1830 #define EVT_JOY_MOVE(func) \
1831 wxEventTableEntry( wxEVT_JOY_MOVE, -1, -1, (wxObjectEventFunction) (wxEventFunction) (wxJoystickEventFunction) & func, (wxObject *) NULL ),
1832 #define EVT_JOY_ZMOVE(func) \
1833 wxEventTableEntry( wxEVT_JOY_ZMOVE, -1, -1, (wxObjectEventFunction) (wxEventFunction) (wxJoystickEventFunction) & func, (wxObject *) NULL ),
1835 // All joystick events
1836 #define EVT_JOYSTICK_EVENTS(func) \
1837 wxEventTableEntry( wxEVT_JOY_BUTTON_DOWN, -1, -1, (wxObjectEventFunction) (wxEventFunction) (wxJoystickEventFunction) & func, (wxObject *) NULL ),\
1838 wxEventTableEntry( wxEVT_JOY_BUTTON_UP, -1, -1, (wxObjectEventFunction) (wxEventFunction) (wxJoystickEventFunction) & func, (wxObject *) NULL ),\
1839 wxEventTableEntry( wxEVT_JOY_MOVE, -1, -1, (wxObjectEventFunction) (wxEventFunction) (wxJoystickEventFunction) & func, (wxObject *) NULL ),\
1840 wxEventTableEntry( wxEVT_JOY_ZMOVE, -1, -1, (wxObjectEventFunction) (wxEventFunction) (wxJoystickEventFunction) & func, (wxObject *) NULL ),
1843 #define EVT_IDLE(func) \
1844 wxEventTableEntry( wxEVT_IDLE, -1, -1, (wxObjectEventFunction) (wxEventFunction) (wxIdleEventFunction) & func, (wxObject *) NULL ),
1847 #define EVT_UPDATE_UI(id, func) \
1848 wxEventTableEntry( wxEVT_UPDATE_UI, id, -1, (wxObjectEventFunction) (wxEventFunction) (wxUpdateUIEventFunction) & func, (wxObject *) NULL ),
1849 #define EVT_UPDATE_UI_RANGE(id1, id2, func) \
1850 wxEventTableEntry( wxEVT_UPDATE_UI, id1, id2, (wxObjectEventFunction)(wxEventFunction)(wxUpdateUIEventFunction)&func, (wxObject *) NULL ),
1853 #define EVT_HELP(id, func) \
1854 wxEventTableEntry( wxEVT_HELP, id, -1, (wxObjectEventFunction) (wxEventFunction) (wxCommandEventFunction) (wxHelpEventFunction) & func, (wxObject *) NULL ),
1856 #define EVT_HELP_RANGE(id1, id2, func) \
1857 wxEventTableEntry( wxEVT_HELP, id1, id2, (wxObjectEventFunction) (wxEventFunction) (wxCommandEventFunction) (wxHelpEventFunction) & func, (wxObject *) NULL ),
1859 #define EVT_DETAILED_HELP(id, func) \
1860 wxEventTableEntry( wxEVT_DETAILED_HELP, id, -1, (wxObjectEventFunction) (wxEventFunction) (wxCommandEventFunction) (wxHelpEventFunction) & func, (wxObject *) NULL ),
1862 #define EVT_DETAILED_HELP_RANGE(id1, id2, func) \
1863 wxEventTableEntry( wxEVT_DETAILED_HELP, id1, id2, (wxObjectEventFunction) (wxEventFunction) (wxCommandEventFunction) (wxHelpEventFunction) & func, (wxObject *) NULL ),
1865 // ----------------------------------------------------------------------------
1867 // ----------------------------------------------------------------------------
1869 // for pending event processing - notice that there is intentionally no
1871 extern wxList
*wxPendingEvents
;
1873 extern wxCriticalSection
*wxPendingEventsLocker
;
1876 // ----------------------------------------------------------------------------
1878 // ----------------------------------------------------------------------------
1882 // Find a window with the focus, that is also a descendant of the given window.
1883 // This is used to determine the window to initially send commands to.
1884 wxWindow
* wxFindFocusDescendant(wxWindow
* ancestor
);