1 /////////////////////////////////////////////////////////////////////////////
2 // Name: src/common/event.cpp
3 // Purpose: Event classes
4 // Author: Julian Smart
8 // Copyright: (c) Julian Smart
9 // Licence: wxWindows licence
10 /////////////////////////////////////////////////////////////////////////////
12 // ============================================================================
14 // ============================================================================
16 // ----------------------------------------------------------------------------
18 // ----------------------------------------------------------------------------
20 // For compilers that support precompilation, includes "wx.h".
21 #include "wx/wxprec.h"
28 #include "wx/eventfilter.h"
29 #include "wx/evtloop.h"
36 #include "wx/stopwatch.h"
37 #include "wx/module.h"
40 #include "wx/window.h"
41 #include "wx/control.h"
43 #include "wx/spinbutt.h"
44 #include "wx/textctrl.h"
45 #include "wx/validate.h"
49 #include "wx/thread.h"
52 #include "wx/scopedptr.h"
54 wxDECLARE_SCOPED_PTR(wxEvent
, wxEventPtr
)
55 wxDEFINE_SCOPED_PTR(wxEvent
, wxEventPtr
)
58 // ----------------------------------------------------------------------------
60 // ----------------------------------------------------------------------------
63 IMPLEMENT_DYNAMIC_CLASS(wxEvtHandler
, wxObject
)
64 IMPLEMENT_ABSTRACT_CLASS(wxEvent
, wxObject
)
65 IMPLEMENT_DYNAMIC_CLASS(wxIdleEvent
, wxEvent
)
66 IMPLEMENT_DYNAMIC_CLASS(wxThreadEvent
, wxEvent
)
70 IMPLEMENT_DYNAMIC_CLASS(wxCommandEvent
, wxEvent
)
71 IMPLEMENT_DYNAMIC_CLASS(wxNotifyEvent
, wxCommandEvent
)
72 IMPLEMENT_DYNAMIC_CLASS(wxScrollEvent
, wxCommandEvent
)
73 IMPLEMENT_DYNAMIC_CLASS(wxScrollWinEvent
, wxEvent
)
74 IMPLEMENT_DYNAMIC_CLASS(wxMouseEvent
, wxEvent
)
75 IMPLEMENT_DYNAMIC_CLASS(wxKeyEvent
, wxEvent
)
76 IMPLEMENT_DYNAMIC_CLASS(wxSizeEvent
, wxEvent
)
77 IMPLEMENT_DYNAMIC_CLASS(wxPaintEvent
, wxEvent
)
78 IMPLEMENT_DYNAMIC_CLASS(wxNcPaintEvent
, wxEvent
)
79 IMPLEMENT_DYNAMIC_CLASS(wxEraseEvent
, wxEvent
)
80 IMPLEMENT_DYNAMIC_CLASS(wxMoveEvent
, wxEvent
)
81 IMPLEMENT_DYNAMIC_CLASS(wxFocusEvent
, wxEvent
)
82 IMPLEMENT_DYNAMIC_CLASS(wxChildFocusEvent
, wxCommandEvent
)
83 IMPLEMENT_DYNAMIC_CLASS(wxCloseEvent
, wxEvent
)
84 IMPLEMENT_DYNAMIC_CLASS(wxShowEvent
, wxEvent
)
85 IMPLEMENT_DYNAMIC_CLASS(wxMaximizeEvent
, wxEvent
)
86 IMPLEMENT_DYNAMIC_CLASS(wxIconizeEvent
, wxEvent
)
87 IMPLEMENT_DYNAMIC_CLASS(wxMenuEvent
, wxEvent
)
88 IMPLEMENT_DYNAMIC_CLASS(wxJoystickEvent
, wxEvent
)
89 IMPLEMENT_DYNAMIC_CLASS(wxDropFilesEvent
, wxEvent
)
90 IMPLEMENT_DYNAMIC_CLASS(wxActivateEvent
, wxEvent
)
91 IMPLEMENT_DYNAMIC_CLASS(wxInitDialogEvent
, wxEvent
)
92 IMPLEMENT_DYNAMIC_CLASS(wxSetCursorEvent
, wxEvent
)
93 IMPLEMENT_DYNAMIC_CLASS(wxSysColourChangedEvent
, wxEvent
)
94 IMPLEMENT_DYNAMIC_CLASS(wxDisplayChangedEvent
, wxEvent
)
95 IMPLEMENT_DYNAMIC_CLASS(wxUpdateUIEvent
, wxCommandEvent
)
96 IMPLEMENT_DYNAMIC_CLASS(wxNavigationKeyEvent
, wxEvent
)
97 IMPLEMENT_DYNAMIC_CLASS(wxPaletteChangedEvent
, wxEvent
)
98 IMPLEMENT_DYNAMIC_CLASS(wxQueryNewPaletteEvent
, wxEvent
)
99 IMPLEMENT_DYNAMIC_CLASS(wxWindowCreateEvent
, wxEvent
)
100 IMPLEMENT_DYNAMIC_CLASS(wxWindowDestroyEvent
, wxEvent
)
101 IMPLEMENT_DYNAMIC_CLASS(wxHelpEvent
, wxCommandEvent
)
102 IMPLEMENT_DYNAMIC_CLASS(wxContextMenuEvent
, wxCommandEvent
)
103 IMPLEMENT_DYNAMIC_CLASS(wxMouseCaptureChangedEvent
, wxEvent
)
104 IMPLEMENT_DYNAMIC_CLASS(wxMouseCaptureLostEvent
, wxEvent
)
105 IMPLEMENT_DYNAMIC_CLASS(wxClipboardTextEvent
, wxCommandEvent
)
110 const wxEventTable
*wxEvtHandler::GetEventTable() const
111 { return &wxEvtHandler::sm_eventTable
; }
113 const wxEventTable
wxEvtHandler::sm_eventTable
=
114 { (const wxEventTable
*)NULL
, &wxEvtHandler::sm_eventTableEntries
[0] };
116 wxEventHashTable
&wxEvtHandler::GetEventHashTable() const
117 { return wxEvtHandler::sm_eventHashTable
; }
119 wxEventHashTable
wxEvtHandler::sm_eventHashTable(wxEvtHandler::sm_eventTable
);
121 const wxEventTableEntry
wxEvtHandler::sm_eventTableEntries
[] =
122 { wxDECLARE_EVENT_TABLE_TERMINATOR() };
125 // wxUSE_MEMORY_TRACING considers memory freed from the static objects dtors
126 // leaked, so we need to manually clean up all event tables before checking for
127 // the memory leaks when using it, however this breaks re-initializing the
128 // library (i.e. repeated calls to wxInitialize/wxUninitialize) because the
129 // event tables won't be rebuilt the next time, so disable this by default
130 #if wxUSE_MEMORY_TRACING
132 class wxEventTableEntryModule
: public wxModule
135 wxEventTableEntryModule() { }
136 virtual bool OnInit() { return true; }
137 virtual void OnExit() { wxEventHashTable::ClearAll(); }
139 DECLARE_DYNAMIC_CLASS(wxEventTableEntryModule
)
142 IMPLEMENT_DYNAMIC_CLASS(wxEventTableEntryModule
, wxModule
)
144 #endif // wxUSE_MEMORY_TRACING
146 // ----------------------------------------------------------------------------
148 // ----------------------------------------------------------------------------
150 // common event types are defined here, other event types are defined by the
151 // components which use them
153 const wxEventType wxEVT_FIRST
= 10000;
154 const wxEventType wxEVT_USER_FIRST
= wxEVT_FIRST
+ 2000;
155 const wxEventType wxEVT_NULL
= wxNewEventType();
157 wxDEFINE_EVENT( wxEVT_IDLE
, wxIdleEvent
);
159 // Thread and asynchronous call events
160 wxDEFINE_EVENT( wxEVT_THREAD
, wxThreadEvent
);
161 wxDEFINE_EVENT( wxEVT_ASYNC_METHOD_CALL
, wxAsyncMethodCallEvent
);
167 wxDEFINE_EVENT( wxEVT_BUTTON
, wxCommandEvent
);
168 wxDEFINE_EVENT( wxEVT_CHECKBOX
, wxCommandEvent
);
169 wxDEFINE_EVENT( wxEVT_CHOICE
, wxCommandEvent
);
170 wxDEFINE_EVENT( wxEVT_LISTBOX
, wxCommandEvent
);
171 wxDEFINE_EVENT( wxEVT_LISTBOX_DCLICK
, wxCommandEvent
);
172 wxDEFINE_EVENT( wxEVT_CHECKLISTBOX
, wxCommandEvent
);
173 wxDEFINE_EVENT( wxEVT_MENU
, wxCommandEvent
);
174 wxDEFINE_EVENT( wxEVT_SLIDER
, wxCommandEvent
);
175 wxDEFINE_EVENT( wxEVT_RADIOBOX
, wxCommandEvent
);
176 wxDEFINE_EVENT( wxEVT_RADIOBUTTON
, wxCommandEvent
);
177 wxDEFINE_EVENT( wxEVT_SCROLLBAR
, wxCommandEvent
);
178 wxDEFINE_EVENT( wxEVT_VLBOX
, wxCommandEvent
);
179 wxDEFINE_EVENT( wxEVT_COMBOBOX
, wxCommandEvent
);
180 wxDEFINE_EVENT( wxEVT_TOOL_RCLICKED
, wxCommandEvent
);
181 wxDEFINE_EVENT( wxEVT_TOOL_ENTER
, wxCommandEvent
);
182 wxDEFINE_EVENT( wxEVT_SPINCTRL
, wxCommandEvent
);
183 wxDEFINE_EVENT( wxEVT_SPINCTRLDOUBLE
, wxCommandEvent
);
184 wxDEFINE_EVENT( wxEVT_TOOL_DROPDOWN
, wxCommandEvent
);
185 wxDEFINE_EVENT( wxEVT_COMBOBOX_DROPDOWN
, wxCommandEvent
);
186 wxDEFINE_EVENT( wxEVT_COMBOBOX_CLOSEUP
, wxCommandEvent
);
189 wxDEFINE_EVENT( wxEVT_LEFT_DOWN
, wxMouseEvent
);
190 wxDEFINE_EVENT( wxEVT_LEFT_UP
, wxMouseEvent
);
191 wxDEFINE_EVENT( wxEVT_MIDDLE_DOWN
, wxMouseEvent
);
192 wxDEFINE_EVENT( wxEVT_MIDDLE_UP
, wxMouseEvent
);
193 wxDEFINE_EVENT( wxEVT_RIGHT_DOWN
, wxMouseEvent
);
194 wxDEFINE_EVENT( wxEVT_RIGHT_UP
, wxMouseEvent
);
195 wxDEFINE_EVENT( wxEVT_MOTION
, wxMouseEvent
);
196 wxDEFINE_EVENT( wxEVT_ENTER_WINDOW
, wxMouseEvent
);
197 wxDEFINE_EVENT( wxEVT_LEAVE_WINDOW
, wxMouseEvent
);
198 wxDEFINE_EVENT( wxEVT_LEFT_DCLICK
, wxMouseEvent
);
199 wxDEFINE_EVENT( wxEVT_MIDDLE_DCLICK
, wxMouseEvent
);
200 wxDEFINE_EVENT( wxEVT_RIGHT_DCLICK
, wxMouseEvent
);
201 wxDEFINE_EVENT( wxEVT_SET_FOCUS
, wxFocusEvent
);
202 wxDEFINE_EVENT( wxEVT_KILL_FOCUS
, wxFocusEvent
);
203 wxDEFINE_EVENT( wxEVT_CHILD_FOCUS
, wxChildFocusEvent
);
204 wxDEFINE_EVENT( wxEVT_MOUSEWHEEL
, wxMouseEvent
);
205 wxDEFINE_EVENT( wxEVT_AUX1_DOWN
, wxMouseEvent
);
206 wxDEFINE_EVENT( wxEVT_AUX1_UP
, wxMouseEvent
);
207 wxDEFINE_EVENT( wxEVT_AUX1_DCLICK
, wxMouseEvent
);
208 wxDEFINE_EVENT( wxEVT_AUX2_DOWN
, wxMouseEvent
);
209 wxDEFINE_EVENT( wxEVT_AUX2_UP
, wxMouseEvent
);
210 wxDEFINE_EVENT( wxEVT_AUX2_DCLICK
, wxMouseEvent
);
212 // Character input event type
213 wxDEFINE_EVENT( wxEVT_CHAR
, wxKeyEvent
);
214 wxDEFINE_EVENT( wxEVT_AFTER_CHAR
, wxKeyEvent
);
215 wxDEFINE_EVENT( wxEVT_CHAR_HOOK
, wxKeyEvent
);
216 wxDEFINE_EVENT( wxEVT_NAVIGATION_KEY
, wxNavigationKeyEvent
);
217 wxDEFINE_EVENT( wxEVT_KEY_DOWN
, wxKeyEvent
);
218 wxDEFINE_EVENT( wxEVT_KEY_UP
, wxKeyEvent
);
220 wxDEFINE_EVENT( wxEVT_HOTKEY
, wxKeyEvent
);
224 wxDEFINE_EVENT( wxEVT_SET_CURSOR
, wxSetCursorEvent
);
226 // wxScrollbar and wxSlider event identifiers
227 wxDEFINE_EVENT( wxEVT_SCROLL_TOP
, wxScrollEvent
);
228 wxDEFINE_EVENT( wxEVT_SCROLL_BOTTOM
, wxScrollEvent
);
229 wxDEFINE_EVENT( wxEVT_SCROLL_LINEUP
, wxScrollEvent
);
230 wxDEFINE_EVENT( wxEVT_SCROLL_LINEDOWN
, wxScrollEvent
);
231 wxDEFINE_EVENT( wxEVT_SCROLL_PAGEUP
, wxScrollEvent
);
232 wxDEFINE_EVENT( wxEVT_SCROLL_PAGEDOWN
, wxScrollEvent
);
233 wxDEFINE_EVENT( wxEVT_SCROLL_THUMBTRACK
, wxScrollEvent
);
234 wxDEFINE_EVENT( wxEVT_SCROLL_THUMBRELEASE
, wxScrollEvent
);
235 wxDEFINE_EVENT( wxEVT_SCROLL_CHANGED
, wxScrollEvent
);
237 // Due to a bug in older wx versions, wxSpinEvents were being sent with type of
238 // wxEVT_SCROLL_LINEUP, wxEVT_SCROLL_LINEDOWN and wxEVT_SCROLL_THUMBTRACK. But
239 // with the type-safe events in place, these event types are associated with
240 // wxScrollEvent. To allow handling of spin events, new event types have been
241 // defined in spinbutt.h/spinnbuttcmn.cpp. To maintain backward compatibility
242 // the spin event types are being initialized with the scroll event types.
246 wxDEFINE_EVENT_ALIAS( wxEVT_SPIN_UP
, wxSpinEvent
, wxEVT_SCROLL_LINEUP
);
247 wxDEFINE_EVENT_ALIAS( wxEVT_SPIN_DOWN
, wxSpinEvent
, wxEVT_SCROLL_LINEDOWN
);
248 wxDEFINE_EVENT_ALIAS( wxEVT_SPIN
, wxSpinEvent
, wxEVT_SCROLL_THUMBTRACK
);
250 #endif // wxUSE_SPINBTN
252 // Scroll events from wxWindow
253 wxDEFINE_EVENT( wxEVT_SCROLLWIN_TOP
, wxScrollWinEvent
);
254 wxDEFINE_EVENT( wxEVT_SCROLLWIN_BOTTOM
, wxScrollWinEvent
);
255 wxDEFINE_EVENT( wxEVT_SCROLLWIN_LINEUP
, wxScrollWinEvent
);
256 wxDEFINE_EVENT( wxEVT_SCROLLWIN_LINEDOWN
, wxScrollWinEvent
);
257 wxDEFINE_EVENT( wxEVT_SCROLLWIN_PAGEUP
, wxScrollWinEvent
);
258 wxDEFINE_EVENT( wxEVT_SCROLLWIN_PAGEDOWN
, wxScrollWinEvent
);
259 wxDEFINE_EVENT( wxEVT_SCROLLWIN_THUMBTRACK
, wxScrollWinEvent
);
260 wxDEFINE_EVENT( wxEVT_SCROLLWIN_THUMBRELEASE
, wxScrollWinEvent
);
263 wxDEFINE_EVENT( wxEVT_SIZE
, wxSizeEvent
);
264 wxDEFINE_EVENT( wxEVT_SIZING
, wxSizeEvent
);
265 wxDEFINE_EVENT( wxEVT_MOVE
, wxMoveEvent
);
266 wxDEFINE_EVENT( wxEVT_MOVING
, wxMoveEvent
);
267 wxDEFINE_EVENT( wxEVT_MOVE_START
, wxMoveEvent
);
268 wxDEFINE_EVENT( wxEVT_MOVE_END
, wxMoveEvent
);
269 wxDEFINE_EVENT( wxEVT_CLOSE_WINDOW
, wxCloseEvent
);
270 wxDEFINE_EVENT( wxEVT_END_SESSION
, wxCloseEvent
);
271 wxDEFINE_EVENT( wxEVT_QUERY_END_SESSION
, wxCloseEvent
);
272 wxDEFINE_EVENT( wxEVT_HIBERNATE
, wxActivateEvent
);
273 wxDEFINE_EVENT( wxEVT_ACTIVATE_APP
, wxActivateEvent
);
274 wxDEFINE_EVENT( wxEVT_ACTIVATE
, wxActivateEvent
);
275 wxDEFINE_EVENT( wxEVT_CREATE
, wxWindowCreateEvent
);
276 wxDEFINE_EVENT( wxEVT_DESTROY
, wxWindowDestroyEvent
);
277 wxDEFINE_EVENT( wxEVT_SHOW
, wxShowEvent
);
278 wxDEFINE_EVENT( wxEVT_ICONIZE
, wxIconizeEvent
);
279 wxDEFINE_EVENT( wxEVT_MAXIMIZE
, wxMaximizeEvent
);
280 wxDEFINE_EVENT( wxEVT_MOUSE_CAPTURE_CHANGED
, wxMouseCaptureChangedEvent
);
281 wxDEFINE_EVENT( wxEVT_MOUSE_CAPTURE_LOST
, wxMouseCaptureLostEvent
);
282 wxDEFINE_EVENT( wxEVT_PAINT
, wxPaintEvent
);
283 wxDEFINE_EVENT( wxEVT_ERASE_BACKGROUND
, wxEraseEvent
);
284 wxDEFINE_EVENT( wxEVT_NC_PAINT
, wxNcPaintEvent
);
285 wxDEFINE_EVENT( wxEVT_MENU_OPEN
, wxMenuEvent
);
286 wxDEFINE_EVENT( wxEVT_MENU_CLOSE
, wxMenuEvent
);
287 wxDEFINE_EVENT( wxEVT_MENU_HIGHLIGHT
, wxMenuEvent
);
288 wxDEFINE_EVENT( wxEVT_CONTEXT_MENU
, wxContextMenuEvent
);
289 wxDEFINE_EVENT( wxEVT_SYS_COLOUR_CHANGED
, wxSysColourChangedEvent
);
290 wxDEFINE_EVENT( wxEVT_DISPLAY_CHANGED
, wxDisplayChangedEvent
);
291 wxDEFINE_EVENT( wxEVT_QUERY_NEW_PALETTE
, wxQueryNewPaletteEvent
);
292 wxDEFINE_EVENT( wxEVT_PALETTE_CHANGED
, wxPaletteChangedEvent
);
293 wxDEFINE_EVENT( wxEVT_JOY_BUTTON_DOWN
, wxJoystickEvent
);
294 wxDEFINE_EVENT( wxEVT_JOY_BUTTON_UP
, wxJoystickEvent
);
295 wxDEFINE_EVENT( wxEVT_JOY_MOVE
, wxJoystickEvent
);
296 wxDEFINE_EVENT( wxEVT_JOY_ZMOVE
, wxJoystickEvent
);
297 wxDEFINE_EVENT( wxEVT_DROP_FILES
, wxDropFilesEvent
);
298 wxDEFINE_EVENT( wxEVT_INIT_DIALOG
, wxInitDialogEvent
);
299 wxDEFINE_EVENT( wxEVT_UPDATE_UI
, wxUpdateUIEvent
);
302 wxDEFINE_EVENT( wxEVT_TEXT_COPY
, wxClipboardTextEvent
);
303 wxDEFINE_EVENT( wxEVT_TEXT_CUT
, wxClipboardTextEvent
);
304 wxDEFINE_EVENT( wxEVT_TEXT_PASTE
, wxClipboardTextEvent
);
306 // Generic command events
307 // Note: a click is a higher-level event than button down/up
308 wxDEFINE_EVENT( wxEVT_COMMAND_LEFT_CLICK
, wxCommandEvent
);
309 wxDEFINE_EVENT( wxEVT_COMMAND_LEFT_DCLICK
, wxCommandEvent
);
310 wxDEFINE_EVENT( wxEVT_COMMAND_RIGHT_CLICK
, wxCommandEvent
);
311 wxDEFINE_EVENT( wxEVT_COMMAND_RIGHT_DCLICK
, wxCommandEvent
);
312 wxDEFINE_EVENT( wxEVT_COMMAND_SET_FOCUS
, wxCommandEvent
);
313 wxDEFINE_EVENT( wxEVT_COMMAND_KILL_FOCUS
, wxCommandEvent
);
314 wxDEFINE_EVENT( wxEVT_COMMAND_ENTER
, wxCommandEvent
);
317 wxDEFINE_EVENT( wxEVT_HELP
, wxHelpEvent
);
318 wxDEFINE_EVENT( wxEVT_DETAILED_HELP
, wxHelpEvent
);
324 wxIdleMode
wxIdleEvent::sm_idleMode
= wxIDLE_PROCESS_ALL
;
326 // ============================================================================
328 // ============================================================================
330 // ----------------------------------------------------------------------------
331 // event initialization
332 // ----------------------------------------------------------------------------
337 static int s_lastUsedEventType
= wxEVT_FIRST
;
339 return s_lastUsedEventType
++;
341 // ----------------------------------------------------------------------------
343 // ----------------------------------------------------------------------------
345 wxEventFunctor::~wxEventFunctor()
349 // ----------------------------------------------------------------------------
351 // ----------------------------------------------------------------------------
354 * General wxWidgets events, covering all interesting things that might happen
355 * (button clicking, resizing, setting text in widgets, etc.).
357 * For each completely new event type, derive a new event class.
361 wxEvent::wxEvent(int theId
, wxEventType commandType
)
363 m_eventType
= commandType
;
364 m_eventObject
= NULL
;
368 m_callbackUserData
= NULL
;
369 m_handlerToProcessOnlyIn
= NULL
;
370 m_isCommandEvent
= false;
371 m_propagationLevel
= wxEVENT_PROPAGATE_NONE
;
372 m_wasProcessed
= false;
373 m_willBeProcessedAgain
= false;
376 wxEvent::wxEvent(const wxEvent
& src
)
378 , m_eventObject(src
.m_eventObject
)
379 , m_eventType(src
.m_eventType
)
380 , m_timeStamp(src
.m_timeStamp
)
382 , m_callbackUserData(src
.m_callbackUserData
)
383 , m_handlerToProcessOnlyIn(NULL
)
384 , m_propagationLevel(src
.m_propagationLevel
)
385 , m_skipped(src
.m_skipped
)
386 , m_isCommandEvent(src
.m_isCommandEvent
)
387 , m_wasProcessed(false)
388 , m_willBeProcessedAgain(false)
392 wxEvent
& wxEvent::operator=(const wxEvent
& src
)
394 wxObject::operator=(src
);
396 m_eventObject
= src
.m_eventObject
;
397 m_eventType
= src
.m_eventType
;
398 m_timeStamp
= src
.m_timeStamp
;
400 m_callbackUserData
= src
.m_callbackUserData
;
401 m_handlerToProcessOnlyIn
= NULL
;
402 m_propagationLevel
= src
.m_propagationLevel
;
403 m_skipped
= src
.m_skipped
;
404 m_isCommandEvent
= src
.m_isCommandEvent
;
406 // don't change m_wasProcessed
408 // While the original again could be passed to another handler, this one
409 // isn't going to be processed anywhere else by default.
410 m_willBeProcessedAgain
= false;
419 // ----------------------------------------------------------------------------
421 // ----------------------------------------------------------------------------
423 wxCommandEvent::wxCommandEvent(wxEventType commandType
, int theId
)
424 : wxEvent(theId
, commandType
)
427 m_clientObject
= NULL
;
428 m_isCommandEvent
= true;
430 // the command events are propagated upwards by default
431 m_propagationLevel
= wxEVENT_PROPAGATE_MAX
;
434 wxString
wxCommandEvent::GetString() const
436 if (m_eventType
!= wxEVT_TEXT
|| !m_eventObject
)
443 wxTextCtrl
*txt
= wxDynamicCast(m_eventObject
, wxTextCtrl
);
445 return txt
->GetValue();
447 #endif // wxUSE_TEXTCTRL
452 // ----------------------------------------------------------------------------
454 // ----------------------------------------------------------------------------
457 wxLongLong
wxUpdateUIEvent::sm_lastUpdate
= 0;
460 long wxUpdateUIEvent::sm_updateInterval
= 0;
462 wxUpdateUIMode
wxUpdateUIEvent::sm_updateMode
= wxUPDATE_UI_PROCESS_ALL
;
465 bool wxUpdateUIEvent::CanUpdate(wxWindowBase
*win
)
467 // Don't update if we've switched global updating off
468 // and this window doesn't support updates.
470 (GetMode() == wxUPDATE_UI_PROCESS_SPECIFIED
&&
471 ((win
->GetExtraStyle() & wxWS_EX_PROCESS_UI_UPDATES
) == 0)))
474 // Don't update children of the hidden windows: this is useless as any
475 // change to their state won't be seen by the user anyhow. Notice that this
476 // argument doesn't apply to the hidden windows (with visible parent)
477 // themselves as they could be shown by their EVT_UPDATE_UI handler.
478 if ( win
->GetParent() && !win
->GetParent()->IsShownOnScreen() )
481 if (sm_updateInterval
== -1)
484 if (sm_updateInterval
== 0)
487 #if wxUSE_STOPWATCH && wxUSE_LONGLONG
488 wxLongLong now
= wxGetLocalTimeMillis();
489 if (now
> (sm_lastUpdate
+ sm_updateInterval
))
496 // If we don't have wxStopWatch or wxLongLong, we
497 // should err on the safe side and update now anyway.
502 // Reset the update time to provide a delay until the next
503 // time we should update
504 void wxUpdateUIEvent::ResetUpdateTime()
506 #if wxUSE_STOPWATCH && wxUSE_LONGLONG
507 if (sm_updateInterval
> 0)
509 wxLongLong now
= wxGetLocalTimeMillis();
510 if (now
> (sm_lastUpdate
+ sm_updateInterval
))
518 // ----------------------------------------------------------------------------
520 // ----------------------------------------------------------------------------
522 wxScrollEvent::wxScrollEvent(wxEventType commandType
,
526 : wxCommandEvent(commandType
, id
)
528 m_extraLong
= orient
;
532 // ----------------------------------------------------------------------------
534 // ----------------------------------------------------------------------------
536 wxScrollWinEvent::wxScrollWinEvent(wxEventType commandType
,
540 m_eventType
= commandType
;
541 m_extraLong
= orient
;
545 // ----------------------------------------------------------------------------
547 // ----------------------------------------------------------------------------
549 wxMouseEvent::wxMouseEvent(wxEventType commandType
)
551 m_eventType
= commandType
;
557 m_middleDown
= false;
564 m_wheelAxis
= wxMOUSE_WHEEL_VERTICAL
;
567 m_linesPerAction
= 0;
570 void wxMouseEvent::Assign(const wxMouseEvent
& event
)
572 wxEvent::operator=(event
);
574 // Borland C++ 5.82 doesn't compile an explicit call to an implicitly
575 // defined operator=() so need to do it this way:
576 *static_cast<wxMouseState
*>(this) = event
;
581 m_leftDown
= event
.m_leftDown
;
582 m_middleDown
= event
.m_middleDown
;
583 m_rightDown
= event
.m_rightDown
;
584 m_aux1Down
= event
.m_aux1Down
;
585 m_aux2Down
= event
.m_aux2Down
;
587 m_wheelRotation
= event
.m_wheelRotation
;
588 m_wheelDelta
= event
.m_wheelDelta
;
589 m_linesPerAction
= event
.m_linesPerAction
;
590 m_wheelAxis
= event
.m_wheelAxis
;
593 // return true if was a button dclick event
594 bool wxMouseEvent::ButtonDClick(int but
) const
599 wxFAIL_MSG(wxT("invalid parameter in wxMouseEvent::ButtonDClick"));
602 case wxMOUSE_BTN_ANY
:
603 return (LeftDClick() || MiddleDClick() || RightDClick() ||
604 Aux1DClick() || Aux2DClick());
606 case wxMOUSE_BTN_LEFT
:
609 case wxMOUSE_BTN_MIDDLE
:
610 return MiddleDClick();
612 case wxMOUSE_BTN_RIGHT
:
613 return RightDClick();
615 case wxMOUSE_BTN_AUX1
:
618 case wxMOUSE_BTN_AUX2
:
623 // return true if was a button down event
624 bool wxMouseEvent::ButtonDown(int but
) const
629 wxFAIL_MSG(wxT("invalid parameter in wxMouseEvent::ButtonDown"));
632 case wxMOUSE_BTN_ANY
:
633 return (LeftDown() || MiddleDown() || RightDown() ||
634 Aux1Down() || Aux2Down());
636 case wxMOUSE_BTN_LEFT
:
639 case wxMOUSE_BTN_MIDDLE
:
642 case wxMOUSE_BTN_RIGHT
:
645 case wxMOUSE_BTN_AUX1
:
648 case wxMOUSE_BTN_AUX2
:
653 // return true if was a button up event
654 bool wxMouseEvent::ButtonUp(int but
) const
659 wxFAIL_MSG(wxT("invalid parameter in wxMouseEvent::ButtonUp"));
662 case wxMOUSE_BTN_ANY
:
663 return (LeftUp() || MiddleUp() || RightUp() ||
664 Aux1Up() || Aux2Up());
666 case wxMOUSE_BTN_LEFT
:
669 case wxMOUSE_BTN_MIDDLE
:
672 case wxMOUSE_BTN_RIGHT
:
675 case wxMOUSE_BTN_AUX1
:
678 case wxMOUSE_BTN_AUX2
:
683 // return true if the given button is currently changing state
684 bool wxMouseEvent::Button(int but
) const
689 wxFAIL_MSG(wxT("invalid parameter in wxMouseEvent::Button"));
692 case wxMOUSE_BTN_ANY
:
693 return ButtonUp(wxMOUSE_BTN_ANY
) ||
694 ButtonDown(wxMOUSE_BTN_ANY
) ||
695 ButtonDClick(wxMOUSE_BTN_ANY
);
697 case wxMOUSE_BTN_LEFT
:
698 return LeftDown() || LeftUp() || LeftDClick();
700 case wxMOUSE_BTN_MIDDLE
:
701 return MiddleDown() || MiddleUp() || MiddleDClick();
703 case wxMOUSE_BTN_RIGHT
:
704 return RightDown() || RightUp() || RightDClick();
706 case wxMOUSE_BTN_AUX1
:
707 return Aux1Down() || Aux1Up() || Aux1DClick();
709 case wxMOUSE_BTN_AUX2
:
710 return Aux2Down() || Aux2Up() || Aux2DClick();
714 int wxMouseEvent::GetButton() const
716 for ( int i
= 1; i
< wxMOUSE_BTN_MAX
; i
++ )
724 return wxMOUSE_BTN_NONE
;
727 // Find the logical position of the event given the DC
728 wxPoint
wxMouseEvent::GetLogicalPosition(const wxDC
& dc
) const
730 wxPoint
pt(dc
.DeviceToLogicalX(m_x
), dc
.DeviceToLogicalY(m_y
));
734 // ----------------------------------------------------------------------------
736 // ----------------------------------------------------------------------------
738 wxKeyEvent::wxKeyEvent(wxEventType type
)
741 m_keyCode
= WXK_NONE
;
743 m_uniChar
= WXK_NONE
;
747 m_y
= wxDefaultCoord
;
748 m_hasPosition
= false;
753 wxKeyEvent::wxKeyEvent(const wxKeyEvent
& evt
)
757 DoAssignMembers(evt
);
762 wxKeyEvent::wxKeyEvent(wxEventType eventType
, const wxKeyEvent
& evt
)
766 DoAssignMembers(evt
);
768 m_eventType
= eventType
;
773 void wxKeyEvent::InitPositionIfNecessary() const
778 // We're const because we're called from const Get[XY]() methods but we
779 // need to update the "cached" values.
780 wxKeyEvent
& self
= const_cast<wxKeyEvent
&>(*this);
781 self
.m_hasPosition
= true;
783 // The only position we can possibly associate with the keyboard event on
784 // the platforms where it doesn't carry it already is the mouse position.
785 wxGetMousePosition(&self
.m_x
, &self
.m_y
);
787 // If this event is associated with a window, the position should be in its
788 // client coordinates, but otherwise leave it in screen coordinates as what
790 wxWindow
* const win
= wxDynamicCast(GetEventObject(), wxWindow
);
792 win
->ScreenToClient(&self
.m_x
, &self
.m_y
);
795 wxCoord
wxKeyEvent::GetX() const
797 InitPositionIfNecessary();
802 wxCoord
wxKeyEvent::GetY() const
804 InitPositionIfNecessary();
809 bool wxKeyEvent::IsKeyInCategory(int category
) const
811 switch ( GetKeyCode() )
817 case WXK_NUMPAD_LEFT
:
818 case WXK_NUMPAD_RIGHT
:
820 case WXK_NUMPAD_DOWN
:
821 return (category
& WXK_CATEGORY_ARROW
) != 0;
825 case WXK_NUMPAD_PAGEUP
:
826 case WXK_NUMPAD_PAGEDOWN
:
827 return (category
& WXK_CATEGORY_PAGING
) != 0;
831 case WXK_NUMPAD_HOME
:
833 return (category
& WXK_CATEGORY_JUMP
) != 0;
837 return (category
& WXK_CATEGORY_TAB
) != 0;
841 case WXK_NUMPAD_DELETE
:
842 return (category
& WXK_CATEGORY_CUT
) != 0;
849 // ----------------------------------------------------------------------------
850 // wxWindowCreateEvent
851 // ----------------------------------------------------------------------------
853 wxWindowCreateEvent::wxWindowCreateEvent(wxWindow
*win
)
855 SetEventType(wxEVT_CREATE
);
859 // ----------------------------------------------------------------------------
860 // wxWindowDestroyEvent
861 // ----------------------------------------------------------------------------
863 wxWindowDestroyEvent::wxWindowDestroyEvent(wxWindow
*win
)
865 SetEventType(wxEVT_DESTROY
);
869 // ----------------------------------------------------------------------------
871 // ----------------------------------------------------------------------------
873 wxChildFocusEvent::wxChildFocusEvent(wxWindow
*win
)
874 : wxCommandEvent(wxEVT_CHILD_FOCUS
)
879 // ----------------------------------------------------------------------------
881 // ----------------------------------------------------------------------------
884 wxHelpEvent::Origin
wxHelpEvent::GuessOrigin(Origin origin
)
886 if ( origin
== Origin_Unknown
)
888 // assume that the event comes from the help button if it's not from
889 // keyboard and that pressing F1 always results in the help event
890 origin
= wxGetKeyState(WXK_F1
) ? Origin_Keyboard
: Origin_HelpButton
;
901 // ----------------------------------------------------------------------------
903 // ----------------------------------------------------------------------------
905 static const int EVENT_TYPE_TABLE_INIT_SIZE
= 31; // Not too big not too small...
907 wxEventHashTable
* wxEventHashTable::sm_first
= NULL
;
909 wxEventHashTable::wxEventHashTable(const wxEventTable
&table
)
913 AllocEventTypeTable(EVENT_TYPE_TABLE_INIT_SIZE
);
917 m_next
->m_previous
= this;
921 wxEventHashTable::~wxEventHashTable()
924 m_next
->m_previous
= m_previous
;
926 m_previous
->m_next
= m_next
;
927 if (sm_first
== this)
933 void wxEventHashTable::Clear()
935 for ( size_t i
= 0; i
< m_size
; i
++ )
937 EventTypeTablePointer eTTnode
= m_eventTypeTable
[i
];
941 wxDELETEA(m_eventTypeTable
);
946 #if wxUSE_MEMORY_TRACING
949 void wxEventHashTable::ClearAll()
951 wxEventHashTable
* table
= sm_first
;
955 table
= table
->m_next
;
959 #endif // wxUSE_MEMORY_TRACING
961 bool wxEventHashTable::HandleEvent(wxEvent
&event
, wxEvtHandler
*self
)
966 m_rebuildHash
= false;
969 if (!m_eventTypeTable
)
972 // Find all entries for the given event type.
973 wxEventType eventType
= event
.GetEventType();
974 const EventTypeTablePointer eTTnode
= m_eventTypeTable
[eventType
% m_size
];
975 if (eTTnode
&& eTTnode
->eventType
== eventType
)
977 // Now start the search for an event handler
978 // that can handle an event with the given ID.
979 const wxEventTableEntryPointerArray
&
980 eventEntryTable
= eTTnode
->eventEntryTable
;
982 const size_t count
= eventEntryTable
.GetCount();
983 for (size_t n
= 0; n
< count
; n
++)
985 const wxEventTableEntry
& entry
= *eventEntryTable
[n
];
986 if ( wxEvtHandler::ProcessEventIfMatchesId(entry
, self
, event
) )
994 void wxEventHashTable::InitHashTable()
996 // Loop over the event tables and all its base tables.
997 const wxEventTable
*table
= &m_table
;
1000 // Retrieve all valid event handler entries
1001 const wxEventTableEntry
*entry
= table
->entries
;
1002 while (entry
->m_fn
!= 0)
1004 // Add the event entry in the Hash.
1010 table
= table
->baseTable
;
1013 // Let's free some memory.
1015 for(i
= 0; i
< m_size
; i
++)
1017 EventTypeTablePointer eTTnode
= m_eventTypeTable
[i
];
1020 eTTnode
->eventEntryTable
.Shrink();
1025 void wxEventHashTable::AddEntry(const wxEventTableEntry
&entry
)
1027 // This might happen 'accidentally' as the app is exiting
1028 if (!m_eventTypeTable
)
1031 EventTypeTablePointer
*peTTnode
= &m_eventTypeTable
[entry
.m_eventType
% m_size
];
1032 EventTypeTablePointer eTTnode
= *peTTnode
;
1036 if (eTTnode
->eventType
!= entry
.m_eventType
)
1038 // Resize the table!
1039 GrowEventTypeTable();
1040 // Try again to add it.
1047 eTTnode
= new EventTypeTable
;
1048 eTTnode
->eventType
= entry
.m_eventType
;
1049 *peTTnode
= eTTnode
;
1052 // Fill all hash entries between entry.m_id and entry.m_lastId...
1053 eTTnode
->eventEntryTable
.Add(&entry
);
1056 void wxEventHashTable::AllocEventTypeTable(size_t size
)
1058 m_eventTypeTable
= new EventTypeTablePointer
[size
];
1059 memset((void *)m_eventTypeTable
, 0, sizeof(EventTypeTablePointer
)*size
);
1063 void wxEventHashTable::GrowEventTypeTable()
1065 size_t oldSize
= m_size
;
1066 EventTypeTablePointer
*oldEventTypeTable
= m_eventTypeTable
;
1068 // TODO: Search the most optimal grow sequence
1069 AllocEventTypeTable(/* GetNextPrime(oldSize) */oldSize
*2+1);
1071 for ( size_t i
= 0; i
< oldSize
; /* */ )
1073 EventTypeTablePointer eTToldNode
= oldEventTypeTable
[i
];
1076 EventTypeTablePointer
*peTTnode
= &m_eventTypeTable
[eTToldNode
->eventType
% m_size
];
1077 EventTypeTablePointer eTTnode
= *peTTnode
;
1079 // Check for collision, we don't want any.
1082 GrowEventTypeTable();
1083 continue; // Don't increment the counter,
1084 // as we still need to add this element.
1088 // Get the old value and put it in the new table.
1089 *peTTnode
= oldEventTypeTable
[i
];
1096 delete[] oldEventTypeTable
;
1099 // ----------------------------------------------------------------------------
1101 // ----------------------------------------------------------------------------
1103 wxEvtHandler::wxEvtHandler()
1105 m_nextHandler
= NULL
;
1106 m_previousHandler
= NULL
;
1108 m_dynamicEvents
= NULL
;
1109 m_pendingEvents
= NULL
;
1111 // no client data (yet)
1112 m_clientData
= NULL
;
1113 m_clientDataType
= wxClientData_None
;
1116 wxEvtHandler::~wxEvtHandler()
1120 if (m_dynamicEvents
)
1122 for ( wxList::iterator it
= m_dynamicEvents
->begin(),
1123 end
= m_dynamicEvents
->end();
1127 wxDynamicEventTableEntry
*entry
= (wxDynamicEventTableEntry
*)*it
;
1129 // Remove ourselves from sink destructor notifications
1130 // (this has usually been done, in wxTrackable destructor)
1131 wxEvtHandler
*eventSink
= entry
->m_fn
->GetEvtHandler();
1134 wxEventConnectionRef
* const
1135 evtConnRef
= FindRefInTrackerList(eventSink
);
1138 eventSink
->RemoveNode(evtConnRef
);
1143 delete entry
->m_callbackUserData
;
1146 delete m_dynamicEvents
;
1149 // Remove us from the list of the pending events if necessary.
1151 wxTheApp
->RemovePendingEventHandler(this);
1153 DeletePendingEvents();
1155 // we only delete object data, not untyped
1156 if ( m_clientDataType
== wxClientData_Object
)
1157 delete m_clientObject
;
1160 void wxEvtHandler::Unlink()
1162 // this event handler must take itself out of the chain of handlers:
1164 if (m_previousHandler
)
1165 m_previousHandler
->SetNextHandler(m_nextHandler
);
1168 m_nextHandler
->SetPreviousHandler(m_previousHandler
);
1170 m_nextHandler
= NULL
;
1171 m_previousHandler
= NULL
;
1174 bool wxEvtHandler::IsUnlinked() const
1176 return m_previousHandler
== NULL
&&
1177 m_nextHandler
== NULL
;
1180 wxEventFilter
* wxEvtHandler::ms_filterList
= NULL
;
1182 /* static */ void wxEvtHandler::AddFilter(wxEventFilter
* filter
)
1184 wxCHECK_RET( filter
, "NULL filter" );
1186 filter
->m_next
= ms_filterList
;
1187 ms_filterList
= filter
;
1190 /* static */ void wxEvtHandler::RemoveFilter(wxEventFilter
* filter
)
1192 wxEventFilter
* prev
= NULL
;
1193 for ( wxEventFilter
* f
= ms_filterList
; f
; f
= f
->m_next
)
1197 // Set the previous list element or the list head to the next
1200 prev
->m_next
= f
->m_next
;
1202 ms_filterList
= f
->m_next
;
1204 // Also reset the next pointer in the filter itself just to avoid
1205 // having possibly dangling pointers, even though it's not strictly
1209 // Skip the assert below.
1216 wxFAIL_MSG( "Filter not found" );
1221 bool wxEvtHandler::ProcessThreadEvent(const wxEvent
& event
)
1223 // check that we are really in a child thread
1224 wxASSERT_MSG( !wxThread::IsMain(),
1225 wxT("use ProcessEvent() in main thread") );
1227 AddPendingEvent(event
);
1232 #endif // wxUSE_THREADS
1234 void wxEvtHandler::QueueEvent(wxEvent
*event
)
1236 wxCHECK_RET( event
, "NULL event can't be posted" );
1240 // we need an event loop which manages the list of event handlers with
1241 // pending events... cannot proceed without it!
1242 wxLogDebug("No application object! Cannot queue this event!");
1244 // anyway delete the given event to avoid memory leaks
1250 // 1) Add this event to our list of pending events
1251 wxENTER_CRIT_SECT( m_pendingEventsLock
);
1253 if ( !m_pendingEvents
)
1254 m_pendingEvents
= new wxList
;
1256 m_pendingEvents
->Append(event
);
1258 // 2) Add this event handler to list of event handlers that
1259 // have pending events.
1261 wxTheApp
->AppendPendingEventHandler(this);
1263 // only release m_pendingEventsLock now because otherwise there is a race
1264 // condition as described in the ticket #9093: we could process the event
1265 // just added to m_pendingEvents in our ProcessPendingEvents() below before
1266 // we had time to append this pointer to wxHandlersWithPendingEvents list; thus
1267 // breaking the invariant that a handler should be in the list iff it has
1268 // any pending events to process
1269 wxLEAVE_CRIT_SECT( m_pendingEventsLock
);
1271 // 3) Inform the system that new pending events are somewhere,
1272 // and that these should be processed in idle time.
1276 void wxEvtHandler::DeletePendingEvents()
1278 if (m_pendingEvents
)
1279 m_pendingEvents
->DeleteContents(true);
1280 wxDELETE(m_pendingEvents
);
1283 void wxEvtHandler::ProcessPendingEvents()
1287 // we need an event loop which manages the list of event handlers with
1288 // pending events... cannot proceed without it!
1289 wxLogDebug("No application object! Cannot process pending events!");
1293 // we need to process only a single pending event in this call because
1294 // each call to ProcessEvent() could result in the destruction of this
1295 // same event handler (see the comment at the end of this function)
1297 wxENTER_CRIT_SECT( m_pendingEventsLock
);
1299 // this method is only called by wxApp if this handler does have
1301 wxCHECK_RET( m_pendingEvents
&& !m_pendingEvents
->IsEmpty(),
1302 "should have pending events if called" );
1304 wxList::compatibility_iterator node
= m_pendingEvents
->GetFirst();
1305 wxEvent
* pEvent
= static_cast<wxEvent
*>(node
->GetData());
1307 // find the first event which can be processed now:
1308 wxEventLoopBase
* evtLoop
= wxEventLoopBase::GetActive();
1309 if (evtLoop
&& evtLoop
->IsYielding())
1311 while (node
&& pEvent
&& !evtLoop
->IsEventAllowedInsideYield(pEvent
->GetEventCategory()))
1313 node
= node
->GetNext();
1314 pEvent
= node
? static_cast<wxEvent
*>(node
->GetData()) : NULL
;
1319 // all our events are NOT processable now... signal this:
1320 wxTheApp
->DelayPendingEventHandler(this);
1322 // see the comment at the beginning of evtloop.h header for the
1323 // logic behind YieldFor() and behind DelayPendingEventHandler()
1325 wxLEAVE_CRIT_SECT( m_pendingEventsLock
);
1331 wxEventPtr
event(pEvent
);
1333 // it's important we remove event from list before processing it, else a
1334 // nested event loop, for example from a modal dialog, might process the
1335 // same event again.
1336 m_pendingEvents
->Erase(node
);
1338 if ( m_pendingEvents
->IsEmpty() )
1340 // if there are no more pending events left, we don't need to
1341 // stay in this list
1342 wxTheApp
->RemovePendingEventHandler(this);
1345 wxLEAVE_CRIT_SECT( m_pendingEventsLock
);
1347 ProcessEvent(*event
);
1349 // careful: this object could have been deleted by the event handler
1350 // executed by the above ProcessEvent() call, so we can't access any fields
1351 // of this object any more
1355 bool wxEvtHandler::ProcessEventIfMatchesId(const wxEventTableEntryBase
& entry
,
1356 wxEvtHandler
*handler
,
1359 int tableId1
= entry
.m_id
,
1360 tableId2
= entry
.m_lastId
;
1362 // match only if the event type is the same and the id is either -1 in
1363 // the event table (meaning "any") or the event id matches the id
1364 // specified in the event table either exactly or by falling into
1365 // range between first and last
1366 if ((tableId1
== wxID_ANY
) ||
1367 (tableId2
== wxID_ANY
&& tableId1
== event
.GetId()) ||
1368 (tableId2
!= wxID_ANY
&&
1369 (event
.GetId() >= tableId1
&& event
.GetId() <= tableId2
)))
1372 event
.m_callbackUserData
= entry
.m_callbackUserData
;
1374 #if wxUSE_EXCEPTIONS
1377 // call the handler via wxApp method which allows the user to catch
1378 // any exceptions which may be thrown by any handler in the program
1380 wxTheApp
->CallEventHandler(handler
, *entry
.m_fn
, event
);
1383 #endif // wxUSE_EXCEPTIONS
1385 (*entry
.m_fn
)(handler
, event
);
1388 if (!event
.GetSkipped())
1395 bool wxEvtHandler::DoTryApp(wxEvent
& event
)
1397 if ( wxTheApp
&& (this != wxTheApp
) )
1399 // Special case: don't pass wxEVT_IDLE to wxApp, since it'll always
1400 // swallow it. wxEVT_IDLE is sent explicitly to wxApp so it will be
1401 // processed appropriately via SearchEventTable.
1402 if ( event
.GetEventType() != wxEVT_IDLE
)
1404 if ( wxTheApp
->ProcessEvent(event
) )
1412 bool wxEvtHandler::TryBefore(wxEvent
& event
)
1414 #if WXWIN_COMPATIBILITY_2_8
1415 // call the old virtual function to keep the code overriding it working
1416 return TryValidator(event
);
1423 bool wxEvtHandler::TryAfter(wxEvent
& event
)
1425 // We only want to pass the window to the application object once even if
1426 // there are several chained handlers. Ensure that this is what happens by
1427 // only calling DoTryApp() if there is no next handler (which would do it).
1429 // Notice that, unlike simply calling TryAfter() on the last handler in the
1430 // chain only from ProcessEvent(), this also works with wxWindow object in
1431 // the middle of the chain: its overridden TryAfter() will still be called
1432 // and propagate the event upwards the window hierarchy even if it's not
1433 // the last one in the chain (which, admittedly, shouldn't happen often).
1434 if ( GetNextHandler() )
1435 return GetNextHandler()->TryAfter(event
);
1437 // If this event is going to be processed in another handler next, don't
1438 // pass it to wxTheApp now, it will be done from TryAfter() of this other
1440 if ( event
.WillBeProcessedAgain() )
1443 #if WXWIN_COMPATIBILITY_2_8
1444 // as above, call the old virtual function for compatibility
1445 return TryParent(event
);
1447 return DoTryApp(event
);
1451 bool wxEvtHandler::ProcessEvent(wxEvent
& event
)
1453 // The very first thing we do is to allow any registered filters to hook
1454 // into event processing in order to globally pre-process all events.
1456 // Note that we should only do it if we're the first event handler called
1457 // to avoid calling FilterEvent() multiple times as the event goes through
1458 // the event handler chain and possibly upwards the window hierarchy.
1459 if ( !event
.WasProcessed() )
1461 for ( wxEventFilter
* f
= ms_filterList
; f
; f
= f
->m_next
)
1463 int rc
= f
->FilterEvent(event
);
1464 if ( rc
!= wxEventFilter::Event_Skip
)
1466 wxASSERT_MSG( rc
== wxEventFilter::Event_Ignore
||
1467 rc
== wxEventFilter::Event_Processed
,
1468 "unexpected FilterEvent() return value" );
1470 return rc
!= wxEventFilter::Event_Ignore
;
1472 //else: proceed normally
1476 // Short circuit the event processing logic if we're requested to process
1477 // this event in this handler only, see DoTryChain() for more details.
1478 if ( event
.ShouldProcessOnlyIn(this) )
1479 return TryBeforeAndHere(event
);
1482 // Try to process the event in this handler itself.
1483 if ( ProcessEventLocally(event
) )
1485 // It is possible that DoTryChain() called from ProcessEventLocally()
1486 // returned true but the event was not really processed: this happens
1487 // if a custom handler ignores the request to process the event in this
1488 // handler only and in this case we should skip the post processing
1489 // done in TryAfter() but still return the correct value ourselves to
1490 // indicate whether we did or did not find a handler for this event.
1491 return !event
.GetSkipped();
1494 // If we still didn't find a handler, propagate the event upwards the
1495 // window chain and/or to the application object.
1496 if ( TryAfter(event
) )
1500 // No handler found anywhere, bail out.
1504 bool wxEvtHandler::ProcessEventLocally(wxEvent
& event
)
1506 // Try the hooks which should be called before our own handlers and this
1507 // handler itself first. Notice that we should not call ProcessEvent() on
1508 // this one as we're already called from it, which explains why we do it
1509 // here and not in DoTryChain()
1510 return TryBeforeAndHere(event
) || DoTryChain(event
);
1513 bool wxEvtHandler::DoTryChain(wxEvent
& event
)
1515 for ( wxEvtHandler
*h
= GetNextHandler(); h
; h
= h
->GetNextHandler() )
1517 // We need to process this event at the level of this handler only
1518 // right now, the pre-/post-processing was either already done by
1519 // ProcessEvent() from which we were called or will be done by it when
1522 // However we must call ProcessEvent() and not TryHereOnly() because the
1523 // existing code (including some in wxWidgets itself) expects the
1524 // overridden ProcessEvent() in its custom event handlers pushed on a
1525 // window to be called.
1527 // So we must call ProcessEvent() but it must not do what it usually
1528 // does. To resolve this paradox we set up a special flag inside the
1529 // object itself to let ProcessEvent() know that it shouldn't do any
1530 // pre/post-processing for this event if it gets it. Note that this
1531 // only applies to this handler, if the event is passed to another one
1532 // by explicitly calling its ProcessEvent(), pre/post-processing should
1533 // be done as usual.
1535 // Final complication is that if the implementation of ProcessEvent()
1536 // called wxEvent::DidntHonourProcessOnlyIn() (as the gross hack that
1537 // is wxScrollHelperEvtHandler::ProcessEvent() does) and ignored our
1538 // request to process event in this handler only, we have to compensate
1539 // for it by not processing the event further because this was already
1540 // done by that rogue event handler.
1541 wxEventProcessInHandlerOnly
processInHandlerOnly(event
, h
);
1542 if ( h
->ProcessEvent(event
) )
1544 // Make sure "skipped" flag is not set as the event was really
1545 // processed in this case. Normally it shouldn't be set anyhow but
1546 // make sure just in case the user code does something strange.
1552 if ( !event
.ShouldProcessOnlyIn(h
) )
1554 // Still return true to indicate that no further processing should
1555 // be undertaken but ensure that "skipped" flag is set so that the
1556 // caller knows that the event was not really processed.
1566 bool wxEvtHandler::TryHereOnly(wxEvent
& event
)
1568 // If the event handler is disabled it doesn't process any events
1569 if ( !GetEvtHandlerEnabled() )
1572 // Handle per-instance dynamic event tables first
1573 if ( m_dynamicEvents
&& SearchDynamicEventTable(event
) )
1576 // Then static per-class event tables
1577 if ( GetEventHashTable().HandleEvent(event
, this) )
1580 #ifdef wxHAS_CALL_AFTER
1581 // There is an implicit entry for async method calls processing in every
1583 if ( event
.GetEventType() == wxEVT_ASYNC_METHOD_CALL
&&
1584 event
.GetEventObject() == this )
1586 static_cast<wxAsyncMethodCallEvent
&>(event
).Execute();
1589 #endif // wxHAS_CALL_AFTER
1591 // We don't have a handler for this event.
1595 bool wxEvtHandler::SafelyProcessEvent(wxEvent
& event
)
1597 #if wxUSE_EXCEPTIONS
1601 return ProcessEvent(event
);
1602 #if wxUSE_EXCEPTIONS
1606 // notice that we do it in 2 steps to avoid warnings about possibly
1607 // uninitialized loop variable from some versions of g++ which are not
1608 // smart enough to figure out that GetActive() doesn't throw and so
1609 // that loop will always be initialized
1610 wxEventLoopBase
*loop
= NULL
;
1613 loop
= wxEventLoopBase::GetActive();
1615 if ( !wxTheApp
|| !wxTheApp
->OnExceptionInMainLoop() )
1620 //else: continue running current event loop
1626 // OnExceptionInMainLoop() threw, possibly rethrowing the same
1627 // exception again: very good, but we still need Exit() to
1634 #endif // wxUSE_EXCEPTIONS
1637 bool wxEvtHandler::SearchEventTable(wxEventTable
& table
, wxEvent
& event
)
1639 const wxEventType eventType
= event
.GetEventType();
1640 for ( int i
= 0; table
.entries
[i
].m_fn
!= 0; i
++ )
1642 const wxEventTableEntry
& entry
= table
.entries
[i
];
1643 if ( eventType
== entry
.m_eventType
)
1645 if ( ProcessEventIfMatchesId(entry
, this, event
) )
1653 void wxEvtHandler::DoBind(int id
,
1655 wxEventType eventType
,
1656 wxEventFunctor
*func
,
1659 wxDynamicEventTableEntry
*entry
=
1660 new wxDynamicEventTableEntry(eventType
, id
, lastId
, func
, userData
);
1662 if (!m_dynamicEvents
)
1663 m_dynamicEvents
= new wxList
;
1665 // Insert at the front of the list so most recent additions are found first
1666 m_dynamicEvents
->Insert( (wxObject
*) entry
);
1668 // Make sure we get to know when a sink is destroyed
1669 wxEvtHandler
*eventSink
= func
->GetEvtHandler();
1670 if ( eventSink
&& eventSink
!= this )
1672 wxEventConnectionRef
*evtConnRef
= FindRefInTrackerList(eventSink
);
1674 evtConnRef
->IncRef( );
1676 new wxEventConnectionRef(this, eventSink
);
1681 wxEvtHandler::DoUnbind(int id
,
1683 wxEventType eventType
,
1684 const wxEventFunctor
& func
,
1687 if (!m_dynamicEvents
)
1690 wxList::compatibility_iterator node
= m_dynamicEvents
->GetFirst();
1693 wxDynamicEventTableEntry
*entry
= (wxDynamicEventTableEntry
*)node
->GetData();
1695 if ((entry
->m_id
== id
) &&
1696 ((entry
->m_lastId
== lastId
) || (lastId
== wxID_ANY
)) &&
1697 ((entry
->m_eventType
== eventType
) || (eventType
== wxEVT_NULL
)) &&
1698 entry
->m_fn
->IsMatching(func
) &&
1699 ((entry
->m_callbackUserData
== userData
) || !userData
))
1701 // Remove connection from tracker node (wxEventConnectionRef)
1702 wxEvtHandler
*eventSink
= entry
->m_fn
->GetEvtHandler();
1703 if ( eventSink
&& eventSink
!= this )
1705 wxEventConnectionRef
*evtConnRef
= FindRefInTrackerList(eventSink
);
1707 evtConnRef
->DecRef();
1710 delete entry
->m_callbackUserData
;
1711 m_dynamicEvents
->Erase( node
);
1715 node
= node
->GetNext();
1720 bool wxEvtHandler::SearchDynamicEventTable( wxEvent
& event
)
1722 wxCHECK_MSG( m_dynamicEvents
, false,
1723 wxT("caller should check that we have dynamic events") );
1725 wxList::compatibility_iterator node
= m_dynamicEvents
->GetFirst();
1728 wxDynamicEventTableEntry
*entry
= (wxDynamicEventTableEntry
*)node
->GetData();
1730 // get next node before (maybe) calling the event handler as it could
1731 // call Disconnect() invalidating the current node
1732 node
= node
->GetNext();
1734 if ( event
.GetEventType() == entry
->m_eventType
)
1736 wxEvtHandler
*handler
= entry
->m_fn
->GetEvtHandler();
1739 if ( ProcessEventIfMatchesId(*entry
, handler
, event
) )
1747 void wxEvtHandler::DoSetClientObject( wxClientData
*data
)
1749 wxASSERT_MSG( m_clientDataType
!= wxClientData_Void
,
1750 wxT("can't have both object and void client data") );
1752 if ( m_clientObject
)
1753 delete m_clientObject
;
1755 m_clientObject
= data
;
1756 m_clientDataType
= wxClientData_Object
;
1759 wxClientData
*wxEvtHandler::DoGetClientObject() const
1761 // it's not an error to call GetClientObject() on a window which doesn't
1762 // have client data at all - NULL will be returned
1763 wxASSERT_MSG( m_clientDataType
!= wxClientData_Void
,
1764 wxT("this window doesn't have object client data") );
1766 return m_clientObject
;
1769 void wxEvtHandler::DoSetClientData( void *data
)
1771 wxASSERT_MSG( m_clientDataType
!= wxClientData_Object
,
1772 wxT("can't have both object and void client data") );
1774 m_clientData
= data
;
1775 m_clientDataType
= wxClientData_Void
;
1778 void *wxEvtHandler::DoGetClientData() const
1780 // it's not an error to call GetClientData() on a window which doesn't have
1781 // client data at all - NULL will be returned
1782 wxASSERT_MSG( m_clientDataType
!= wxClientData_Object
,
1783 wxT("this window doesn't have void client data") );
1785 return m_clientData
;
1788 // A helper to find an wxEventConnectionRef object
1789 wxEventConnectionRef
*
1790 wxEvtHandler::FindRefInTrackerList(wxEvtHandler
*eventSink
)
1792 for ( wxTrackerNode
*node
= eventSink
->GetFirst(); node
; node
= node
->m_nxt
)
1794 // we only want wxEventConnectionRef nodes here
1795 wxEventConnectionRef
*evtConnRef
= node
->ToEventConnection();
1796 if ( evtConnRef
&& evtConnRef
->m_src
== this )
1798 wxASSERT( evtConnRef
->m_sink
==eventSink
);
1806 void wxEvtHandler::OnSinkDestroyed( wxEvtHandler
*sink
)
1808 wxASSERT(m_dynamicEvents
);
1810 // remove all connections with this sink
1811 wxList::compatibility_iterator node
= m_dynamicEvents
->GetFirst(), node_nxt
;
1814 wxDynamicEventTableEntry
*entry
= (wxDynamicEventTableEntry
*)node
->GetData();
1815 node_nxt
= node
->GetNext();
1817 if ( entry
->m_fn
->GetEvtHandler() == sink
)
1819 delete entry
->m_callbackUserData
;
1820 m_dynamicEvents
->Erase( node
);
1827 #endif // wxUSE_BASE
1831 // Find a window with the focus, that is also a descendant of the given window.
1832 // This is used to determine the window to initially send commands to.
1833 wxWindow
* wxFindFocusDescendant(wxWindow
* ancestor
)
1835 // Process events starting with the window with the focus, if any.
1836 wxWindow
* focusWin
= wxWindow::FindFocus();
1837 wxWindow
* win
= focusWin
;
1839 // Check if this is a descendant of this frame.
1840 // If not, win will be set to NULL.
1843 if (win
== ancestor
)
1846 win
= win
->GetParent();
1854 // ----------------------------------------------------------------------------
1856 // ----------------------------------------------------------------------------
1858 wxEventBlocker::wxEventBlocker(wxWindow
*win
, wxEventType type
)
1860 wxCHECK_RET(win
, wxT("Null window given to wxEventBlocker"));
1865 m_window
->PushEventHandler(this);
1868 wxEventBlocker::~wxEventBlocker()
1870 wxEvtHandler
*popped
= m_window
->PopEventHandler(false);
1871 wxCHECK_RET(popped
== this,
1872 wxT("Don't push other event handlers into a window managed by wxEventBlocker!"));
1875 bool wxEventBlocker::ProcessEvent(wxEvent
& event
)
1877 // should this event be blocked?
1878 for ( size_t i
= 0; i
< m_eventsToBlock
.size(); i
++ )
1880 wxEventType t
= (wxEventType
)m_eventsToBlock
[i
];
1881 if ( t
== wxEVT_ANY
|| t
== event
.GetEventType() )
1882 return true; // yes, it should: mark this event as processed