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/evtloop.h"
34 #include "wx/stopwatch.h"
35 #include "wx/module.h"
38 #include "wx/window.h"
39 #include "wx/control.h"
41 #include "wx/spinbutt.h"
42 #include "wx/textctrl.h"
43 #include "wx/validate.h"
47 #include "wx/thread.h"
50 #include "wx/ptr_scpd.h"
52 wxDECLARE_SCOPED_PTR(wxEvent
, wxEventPtr
)
53 wxDEFINE_SCOPED_PTR(wxEvent
, wxEventPtr
)
56 // ----------------------------------------------------------------------------
58 // ----------------------------------------------------------------------------
61 IMPLEMENT_DYNAMIC_CLASS(wxEvtHandler
, wxObject
)
62 IMPLEMENT_ABSTRACT_CLASS(wxEvent
, wxObject
)
63 IMPLEMENT_DYNAMIC_CLASS(wxIdleEvent
, wxEvent
)
67 IMPLEMENT_DYNAMIC_CLASS(wxCommandEvent
, wxEvent
)
68 IMPLEMENT_DYNAMIC_CLASS(wxNotifyEvent
, wxCommandEvent
)
69 IMPLEMENT_DYNAMIC_CLASS(wxScrollEvent
, wxCommandEvent
)
70 IMPLEMENT_DYNAMIC_CLASS(wxScrollWinEvent
, wxEvent
)
71 IMPLEMENT_DYNAMIC_CLASS(wxMouseEvent
, wxEvent
)
72 IMPLEMENT_DYNAMIC_CLASS(wxKeyEvent
, wxEvent
)
73 IMPLEMENT_DYNAMIC_CLASS(wxSizeEvent
, wxEvent
)
74 IMPLEMENT_DYNAMIC_CLASS(wxPaintEvent
, wxEvent
)
75 IMPLEMENT_DYNAMIC_CLASS(wxNcPaintEvent
, wxEvent
)
76 IMPLEMENT_DYNAMIC_CLASS(wxEraseEvent
, wxEvent
)
77 IMPLEMENT_DYNAMIC_CLASS(wxMoveEvent
, wxEvent
)
78 IMPLEMENT_DYNAMIC_CLASS(wxFocusEvent
, wxEvent
)
79 IMPLEMENT_DYNAMIC_CLASS(wxChildFocusEvent
, wxCommandEvent
)
80 IMPLEMENT_DYNAMIC_CLASS(wxCloseEvent
, wxEvent
)
81 IMPLEMENT_DYNAMIC_CLASS(wxShowEvent
, wxEvent
)
82 IMPLEMENT_DYNAMIC_CLASS(wxMaximizeEvent
, wxEvent
)
83 IMPLEMENT_DYNAMIC_CLASS(wxIconizeEvent
, wxEvent
)
84 IMPLEMENT_DYNAMIC_CLASS(wxMenuEvent
, wxEvent
)
85 IMPLEMENT_DYNAMIC_CLASS(wxJoystickEvent
, wxEvent
)
86 IMPLEMENT_DYNAMIC_CLASS(wxDropFilesEvent
, wxEvent
)
87 IMPLEMENT_DYNAMIC_CLASS(wxActivateEvent
, wxEvent
)
88 IMPLEMENT_DYNAMIC_CLASS(wxInitDialogEvent
, wxEvent
)
89 IMPLEMENT_DYNAMIC_CLASS(wxSetCursorEvent
, wxEvent
)
90 IMPLEMENT_DYNAMIC_CLASS(wxSysColourChangedEvent
, wxEvent
)
91 IMPLEMENT_DYNAMIC_CLASS(wxDisplayChangedEvent
, wxEvent
)
92 IMPLEMENT_DYNAMIC_CLASS(wxUpdateUIEvent
, wxCommandEvent
)
93 IMPLEMENT_DYNAMIC_CLASS(wxNavigationKeyEvent
, wxEvent
)
94 IMPLEMENT_DYNAMIC_CLASS(wxPaletteChangedEvent
, wxEvent
)
95 IMPLEMENT_DYNAMIC_CLASS(wxQueryNewPaletteEvent
, wxEvent
)
96 IMPLEMENT_DYNAMIC_CLASS(wxWindowCreateEvent
, wxEvent
)
97 IMPLEMENT_DYNAMIC_CLASS(wxWindowDestroyEvent
, wxEvent
)
98 IMPLEMENT_DYNAMIC_CLASS(wxHelpEvent
, wxCommandEvent
)
99 IMPLEMENT_DYNAMIC_CLASS(wxContextMenuEvent
, wxCommandEvent
)
100 IMPLEMENT_DYNAMIC_CLASS(wxMouseCaptureChangedEvent
, wxEvent
)
101 IMPLEMENT_DYNAMIC_CLASS(wxMouseCaptureLostEvent
, wxEvent
)
102 IMPLEMENT_DYNAMIC_CLASS(wxClipboardTextEvent
, wxCommandEvent
)
107 const wxEventTable
*wxEvtHandler::GetEventTable() const
108 { return &wxEvtHandler::sm_eventTable
; }
110 const wxEventTable
wxEvtHandler::sm_eventTable
=
111 { (const wxEventTable
*)NULL
, &wxEvtHandler::sm_eventTableEntries
[0] };
113 wxEventHashTable
&wxEvtHandler::GetEventHashTable() const
114 { return wxEvtHandler::sm_eventHashTable
; }
116 wxEventHashTable
wxEvtHandler::sm_eventHashTable(wxEvtHandler::sm_eventTable
);
118 const wxEventTableEntry
wxEvtHandler::sm_eventTableEntries
[] =
119 { DECLARE_EVENT_TABLE_TERMINATOR() };
122 // wxUSE_MEMORY_TRACING considers memory freed from the static objects dtors
123 // leaked, so we need to manually clean up all event tables before checking for
124 // the memory leaks when using it, however this breaks re-initializing the
125 // library (i.e. repeated calls to wxInitialize/wxUninitialize) because the
126 // event tables won't be rebuilt the next time, so disable this by default
127 #if defined(__WXDEBUG__) && wxUSE_MEMORY_TRACING
129 class wxEventTableEntryModule
: public wxModule
132 wxEventTableEntryModule() { }
133 virtual bool OnInit() { return true; }
134 virtual void OnExit() { wxEventHashTable::ClearAll(); }
136 DECLARE_DYNAMIC_CLASS(wxEventTableEntryModule
)
139 IMPLEMENT_DYNAMIC_CLASS(wxEventTableEntryModule
, wxModule
)
141 #endif // __WXDEBUG__ && wxUSE_MEMORY_TRACING
143 // ----------------------------------------------------------------------------
145 // ----------------------------------------------------------------------------
147 // List containing event handlers with pending events (each handler can occur
148 // at most once here)
149 wxList
*wxHandlersWithPendingEvents
= NULL
;
152 // protects wxHandlersWithPendingEvents list
153 wxCriticalSection
*wxHandlersWithPendingEventsLocker
= NULL
;
156 // common event types are defined here, other event types are defined by the
157 // components which use them
159 const wxEventType wxEVT_FIRST
= 10000;
160 const wxEventType wxEVT_USER_FIRST
= wxEVT_FIRST
+ 2000;
162 DEFINE_EVENT_TYPE(wxEVT_NULL
)
163 wxDEFINE_EVENT( wxEVT_IDLE
, wxIdleEvent
)
169 wxDEFINE_EVENT( wxEVT_COMMAND_BUTTON_CLICKED
, wxCommandEvent
)
170 wxDEFINE_EVENT( wxEVT_COMMAND_CHECKBOX_CLICKED
, wxCommandEvent
)
171 wxDEFINE_EVENT( wxEVT_COMMAND_CHOICE_SELECTED
, wxCommandEvent
)
172 wxDEFINE_EVENT( wxEVT_COMMAND_LISTBOX_SELECTED
, wxCommandEvent
)
173 wxDEFINE_EVENT( wxEVT_COMMAND_LISTBOX_DOUBLECLICKED
, wxCommandEvent
)
174 wxDEFINE_EVENT( wxEVT_COMMAND_CHECKLISTBOX_TOGGLED
, wxCommandEvent
)
175 wxDEFINE_EVENT( wxEVT_COMMAND_MENU_SELECTED
, wxCommandEvent
)
176 wxDEFINE_EVENT( wxEVT_COMMAND_SLIDER_UPDATED
, wxCommandEvent
)
177 wxDEFINE_EVENT( wxEVT_COMMAND_RADIOBOX_SELECTED
, wxCommandEvent
)
178 wxDEFINE_EVENT( wxEVT_COMMAND_RADIOBUTTON_SELECTED
, wxCommandEvent
)
179 wxDEFINE_EVENT( wxEVT_COMMAND_SCROLLBAR_UPDATED
, wxCommandEvent
)
180 wxDEFINE_EVENT( wxEVT_COMMAND_VLBOX_SELECTED
, wxCommandEvent
)
181 wxDEFINE_EVENT( wxEVT_COMMAND_COMBOBOX_SELECTED
, wxCommandEvent
)
182 wxDEFINE_EVENT( wxEVT_COMMAND_TOOL_RCLICKED
, wxCommandEvent
)
183 wxDEFINE_EVENT( wxEVT_COMMAND_TOOL_ENTER
, wxCommandEvent
)
184 wxDEFINE_EVENT( wxEVT_COMMAND_SPINCTRL_UPDATED
, wxCommandEvent
)
185 wxDEFINE_EVENT( wxEVT_COMMAND_SPINCTRLDOUBLE_UPDATED
, wxCommandEvent
)
186 wxDEFINE_EVENT( wxEVT_COMMAND_TOOL_DROPDOWN_CLICKED
, 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_CHAR_HOOK
, wxKeyEvent
)
215 wxDEFINE_EVENT( wxEVT_NAVIGATION_KEY
, wxNavigationKeyEvent
)
216 wxDEFINE_EVENT( wxEVT_KEY_DOWN
, wxKeyEvent
)
217 wxDEFINE_EVENT( wxEVT_KEY_UP
, wxKeyEvent
)
219 wxDEFINE_EVENT( wxEVT_HOTKEY
, wxKeyEvent
)
223 wxDEFINE_EVENT( wxEVT_SET_CURSOR
, wxSetCursorEvent
)
225 // wxScrollbar and wxSlider event identifiers
226 wxDEFINE_EVENT( wxEVT_SCROLL_TOP
, wxScrollEvent
)
227 wxDEFINE_EVENT( wxEVT_SCROLL_BOTTOM
, wxScrollEvent
)
228 wxDEFINE_EVENT( wxEVT_SCROLL_LINEUP
, wxScrollEvent
)
229 wxDEFINE_EVENT( wxEVT_SCROLL_LINEDOWN
, wxScrollEvent
)
230 wxDEFINE_EVENT( wxEVT_SCROLL_PAGEUP
, wxScrollEvent
)
231 wxDEFINE_EVENT( wxEVT_SCROLL_PAGEDOWN
, wxScrollEvent
)
232 wxDEFINE_EVENT( wxEVT_SCROLL_THUMBTRACK
, wxScrollEvent
)
233 wxDEFINE_EVENT( wxEVT_SCROLL_THUMBRELEASE
, wxScrollEvent
)
234 wxDEFINE_EVENT( wxEVT_SCROLL_CHANGED
, wxScrollEvent
)
236 // Due to a bug in older wx versions, wxSpinEvents were being sent with type of
237 // wxEVT_SCROLL_LINEUP, wxEVT_SCROLL_LINEDOWN and wxEVT_SCROLL_THUMBTRACK. But
238 // with the type-safe events in place, these event types are associated with
239 // wxScrollEvent. To allow handling of spin events, new event types have been
240 // defined in spinbutt.h/spinnbuttcmn.cpp. To maintain backward compatibility
241 // the spin event types are being initialized with the scroll event types.
245 wxDEFINE_EVENT_ALIAS( wxEVT_SPIN_UP
, wxSpinEvent
, wxEVT_SCROLL_LINEUP
)
246 wxDEFINE_EVENT_ALIAS( wxEVT_SPIN_DOWN
, wxSpinEvent
, wxEVT_SCROLL_LINEDOWN
)
247 wxDEFINE_EVENT_ALIAS( wxEVT_SPIN
, wxSpinEvent
, wxEVT_SCROLL_THUMBTRACK
)
249 #endif // wxUSE_SPINBTN
251 // Scroll events from wxWindow
252 wxDEFINE_EVENT( wxEVT_SCROLLWIN_TOP
, wxScrollWinEvent
)
253 wxDEFINE_EVENT( wxEVT_SCROLLWIN_BOTTOM
, wxScrollWinEvent
)
254 wxDEFINE_EVENT( wxEVT_SCROLLWIN_LINEUP
, wxScrollWinEvent
)
255 wxDEFINE_EVENT( wxEVT_SCROLLWIN_LINEDOWN
, wxScrollWinEvent
)
256 wxDEFINE_EVENT( wxEVT_SCROLLWIN_PAGEUP
, wxScrollWinEvent
)
257 wxDEFINE_EVENT( wxEVT_SCROLLWIN_PAGEDOWN
, wxScrollWinEvent
)
258 wxDEFINE_EVENT( wxEVT_SCROLLWIN_THUMBTRACK
, wxScrollWinEvent
)
259 wxDEFINE_EVENT( wxEVT_SCROLLWIN_THUMBRELEASE
, wxScrollWinEvent
)
262 wxDEFINE_EVENT( wxEVT_SIZE
, wxSizeEvent
)
263 wxDEFINE_EVENT( wxEVT_SIZING
, wxSizeEvent
)
264 wxDEFINE_EVENT( wxEVT_MOVE
, wxMoveEvent
)
265 wxDEFINE_EVENT( wxEVT_MOVING
, wxMoveEvent
)
266 wxDEFINE_EVENT( wxEVT_MOVE_START
, wxMoveEvent
)
267 wxDEFINE_EVENT( wxEVT_MOVE_END
, wxMoveEvent
)
268 wxDEFINE_EVENT( wxEVT_CLOSE_WINDOW
, wxCloseEvent
)
269 wxDEFINE_EVENT( wxEVT_END_SESSION
, wxCloseEvent
)
270 wxDEFINE_EVENT( wxEVT_QUERY_END_SESSION
, wxCloseEvent
)
271 wxDEFINE_EVENT( wxEVT_HIBERNATE
, wxActivateEvent
)
272 wxDEFINE_EVENT( wxEVT_ACTIVATE_APP
, wxActivateEvent
)
273 wxDEFINE_EVENT( wxEVT_ACTIVATE
, wxActivateEvent
)
274 wxDEFINE_EVENT( wxEVT_CREATE
, wxWindowCreateEvent
)
275 wxDEFINE_EVENT( wxEVT_DESTROY
, wxWindowDestroyEvent
)
276 wxDEFINE_EVENT( wxEVT_SHOW
, wxShowEvent
)
277 wxDEFINE_EVENT( wxEVT_ICONIZE
, wxIconizeEvent
)
278 wxDEFINE_EVENT( wxEVT_MAXIMIZE
, wxMaximizeEvent
)
279 wxDEFINE_EVENT( wxEVT_MOUSE_CAPTURE_CHANGED
, wxMouseCaptureChangedEvent
)
280 wxDEFINE_EVENT( wxEVT_MOUSE_CAPTURE_LOST
, wxMouseCaptureLostEvent
)
281 wxDEFINE_EVENT( wxEVT_PAINT
, wxPaintEvent
)
282 wxDEFINE_EVENT( wxEVT_ERASE_BACKGROUND
, wxEraseEvent
)
283 wxDEFINE_EVENT( wxEVT_NC_PAINT
, wxNcPaintEvent
)
284 wxDEFINE_EVENT( wxEVT_MENU_OPEN
, wxMenuEvent
)
285 wxDEFINE_EVENT( wxEVT_MENU_CLOSE
, wxMenuEvent
)
286 wxDEFINE_EVENT( wxEVT_MENU_HIGHLIGHT
, wxMenuEvent
)
287 wxDEFINE_EVENT( wxEVT_CONTEXT_MENU
, wxContextMenuEvent
)
288 wxDEFINE_EVENT( wxEVT_SYS_COLOUR_CHANGED
, wxSysColourChangedEvent
)
289 wxDEFINE_EVENT( wxEVT_DISPLAY_CHANGED
, wxDisplayChangedEvent
)
290 wxDEFINE_EVENT( wxEVT_QUERY_NEW_PALETTE
, wxQueryNewPaletteEvent
)
291 wxDEFINE_EVENT( wxEVT_PALETTE_CHANGED
, wxPaletteChangedEvent
)
292 wxDEFINE_EVENT( wxEVT_JOY_BUTTON_DOWN
, wxJoystickEvent
)
293 wxDEFINE_EVENT( wxEVT_JOY_BUTTON_UP
, wxJoystickEvent
)
294 wxDEFINE_EVENT( wxEVT_JOY_MOVE
, wxJoystickEvent
)
295 wxDEFINE_EVENT( wxEVT_JOY_ZMOVE
, wxJoystickEvent
)
296 wxDEFINE_EVENT( wxEVT_DROP_FILES
, wxDropFilesEvent
)
297 wxDEFINE_EVENT( wxEVT_INIT_DIALOG
, wxInitDialogEvent
)
298 wxDEFINE_EVENT( wxEVT_UPDATE_UI
, wxUpdateUIEvent
)
301 wxDEFINE_EVENT( wxEVT_COMMAND_TEXT_COPY
, wxClipboardTextEvent
)
302 wxDEFINE_EVENT( wxEVT_COMMAND_TEXT_CUT
, wxClipboardTextEvent
)
303 wxDEFINE_EVENT( wxEVT_COMMAND_TEXT_PASTE
, wxClipboardTextEvent
)
305 // Generic command events
306 // Note: a click is a higher-level event than button down/up
307 wxDEFINE_EVENT( wxEVT_COMMAND_LEFT_CLICK
, wxCommandEvent
)
308 wxDEFINE_EVENT( wxEVT_COMMAND_LEFT_DCLICK
, wxCommandEvent
)
309 wxDEFINE_EVENT( wxEVT_COMMAND_RIGHT_CLICK
, wxCommandEvent
)
310 wxDEFINE_EVENT( wxEVT_COMMAND_RIGHT_DCLICK
, wxCommandEvent
)
311 wxDEFINE_EVENT( wxEVT_COMMAND_SET_FOCUS
, wxCommandEvent
)
312 wxDEFINE_EVENT( wxEVT_COMMAND_KILL_FOCUS
, wxCommandEvent
)
313 wxDEFINE_EVENT( wxEVT_COMMAND_ENTER
, wxCommandEvent
)
316 wxDEFINE_EVENT( wxEVT_HELP
, wxHelpEvent
)
317 wxDEFINE_EVENT( wxEVT_DETAILED_HELP
, wxHelpEvent
)
323 wxIdleMode
wxIdleEvent::sm_idleMode
= wxIDLE_PROCESS_ALL
;
325 // ============================================================================
327 // ============================================================================
329 // ----------------------------------------------------------------------------
330 // event initialization
331 // ----------------------------------------------------------------------------
336 static int s_lastUsedEventType
= wxEVT_FIRST
;
338 return s_lastUsedEventType
++;
340 // ----------------------------------------------------------------------------
342 // ----------------------------------------------------------------------------
344 wxEventFunctor::~wxEventFunctor()
348 // ----------------------------------------------------------------------------
350 // ----------------------------------------------------------------------------
353 * General wxWidgets events, covering
354 * all interesting things that might happen (button clicking, resizing,
355 * 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_isCommandEvent
= false;
370 m_propagationLevel
= wxEVENT_PROPAGATE_NONE
;
371 m_wasProcessed
= false;
374 wxEvent::wxEvent(const wxEvent
& src
)
376 , m_eventObject(src
.m_eventObject
)
377 , m_eventType(src
.m_eventType
)
378 , m_timeStamp(src
.m_timeStamp
)
380 , m_callbackUserData(src
.m_callbackUserData
)
381 , m_propagationLevel(src
.m_propagationLevel
)
382 , m_skipped(src
.m_skipped
)
383 , m_isCommandEvent(src
.m_isCommandEvent
)
384 , m_wasProcessed(false)
388 wxEvent
& wxEvent::operator=(const wxEvent
& src
)
390 wxObject::operator=(src
);
392 m_eventObject
= src
.m_eventObject
;
393 m_eventType
= src
.m_eventType
;
394 m_timeStamp
= src
.m_timeStamp
;
396 m_callbackUserData
= src
.m_callbackUserData
;
397 m_propagationLevel
= src
.m_propagationLevel
;
398 m_skipped
= src
.m_skipped
;
399 m_isCommandEvent
= src
.m_isCommandEvent
;
401 // don't change m_wasProcessed
416 // 'this' : used in base member initializer list (for m_commandString)
417 #pragma warning(disable:4355)
420 wxCommandEvent::wxCommandEvent(wxEventType commandType
, int theId
)
421 : wxEvent(theId
, commandType
)
424 m_clientObject
= NULL
;
427 m_isCommandEvent
= true;
429 // the command events are propagated upwards by default
430 m_propagationLevel
= wxEVENT_PROPAGATE_MAX
;
434 #pragma warning(default:4355)
437 wxString
wxCommandEvent::GetString() const
439 if (m_eventType
!= wxEVT_COMMAND_TEXT_UPDATED
|| !m_eventObject
)
446 wxTextCtrl
*txt
= wxDynamicCast(m_eventObject
, wxTextCtrl
);
448 return txt
->GetValue();
450 #endif // wxUSE_TEXTCTRL
460 wxLongLong
wxUpdateUIEvent::sm_lastUpdate
= 0;
463 long wxUpdateUIEvent::sm_updateInterval
= 0;
465 wxUpdateUIMode
wxUpdateUIEvent::sm_updateMode
= wxUPDATE_UI_PROCESS_ALL
;
468 bool wxUpdateUIEvent::CanUpdate(wxWindowBase
*win
)
470 // Don't update if we've switched global updating off
471 // and this window doesn't support updates.
473 (GetMode() == wxUPDATE_UI_PROCESS_SPECIFIED
&&
474 ((win
->GetExtraStyle() & wxWS_EX_PROCESS_UI_UPDATES
) == 0)))
477 if (sm_updateInterval
== -1)
480 if (sm_updateInterval
== 0)
483 #if wxUSE_STOPWATCH && wxUSE_LONGLONG
484 wxLongLong now
= wxGetLocalTimeMillis();
485 if (now
> (sm_lastUpdate
+ sm_updateInterval
))
492 // If we don't have wxStopWatch or wxLongLong, we
493 // should err on the safe side and update now anyway.
498 // Reset the update time to provide a delay until the next
499 // time we should update
500 void wxUpdateUIEvent::ResetUpdateTime()
502 #if wxUSE_STOPWATCH && wxUSE_LONGLONG
503 if (sm_updateInterval
> 0)
505 wxLongLong now
= wxGetLocalTimeMillis();
506 if (now
> (sm_lastUpdate
+ sm_updateInterval
))
518 wxScrollEvent::wxScrollEvent(wxEventType commandType
,
522 : wxCommandEvent(commandType
, id
)
524 m_extraLong
= orient
;
532 wxScrollWinEvent::wxScrollWinEvent(wxEventType commandType
,
536 m_eventType
= commandType
;
537 m_extraLong
= orient
;
546 wxMouseEvent::wxMouseEvent(wxEventType commandType
)
548 m_eventType
= commandType
;
554 m_middleDown
= false;
563 m_linesPerAction
= 0;
567 void wxMouseEvent::Assign(const wxMouseEvent
& event
)
569 wxEvent::operator=(event
);
571 // Borland C++ 5.82 doesn't compile an explicit call to an implicitly
572 // defined operator=() so need to do it this way:
573 *static_cast<wxMouseState
*>(this) = event
;
578 m_leftDown
= event
.m_leftDown
;
579 m_middleDown
= event
.m_middleDown
;
580 m_rightDown
= event
.m_rightDown
;
581 m_aux1Down
= event
.m_aux1Down
;
582 m_aux2Down
= event
.m_aux2Down
;
584 m_wheelRotation
= event
.m_wheelRotation
;
585 m_wheelDelta
= event
.m_wheelDelta
;
586 m_linesPerAction
= event
.m_linesPerAction
;
587 m_wheelAxis
= event
.m_wheelAxis
;
590 // return true if was a button dclick event
591 bool wxMouseEvent::ButtonDClick(int but
) const
596 wxFAIL_MSG(wxT("invalid parameter in wxMouseEvent::ButtonDClick"));
599 case wxMOUSE_BTN_ANY
:
600 return (LeftDClick() || MiddleDClick() || RightDClick() ||
601 Aux1DClick() || Aux2DClick());
603 case wxMOUSE_BTN_LEFT
:
606 case wxMOUSE_BTN_MIDDLE
:
607 return MiddleDClick();
609 case wxMOUSE_BTN_RIGHT
:
610 return RightDClick();
612 case wxMOUSE_BTN_AUX1
:
615 case wxMOUSE_BTN_AUX2
:
620 // return true if was a button down event
621 bool wxMouseEvent::ButtonDown(int but
) const
626 wxFAIL_MSG(wxT("invalid parameter in wxMouseEvent::ButtonDown"));
629 case wxMOUSE_BTN_ANY
:
630 return (LeftDown() || MiddleDown() || RightDown() ||
631 Aux1Down() || Aux2Down());
633 case wxMOUSE_BTN_LEFT
:
636 case wxMOUSE_BTN_MIDDLE
:
639 case wxMOUSE_BTN_RIGHT
:
642 case wxMOUSE_BTN_AUX1
:
645 case wxMOUSE_BTN_AUX2
:
650 // return true if was a button up event
651 bool wxMouseEvent::ButtonUp(int but
) const
656 wxFAIL_MSG(wxT("invalid parameter in wxMouseEvent::ButtonUp"));
659 case wxMOUSE_BTN_ANY
:
660 return (LeftUp() || MiddleUp() || RightUp() ||
661 Aux1Up() || Aux2Up());
663 case wxMOUSE_BTN_LEFT
:
666 case wxMOUSE_BTN_MIDDLE
:
669 case wxMOUSE_BTN_RIGHT
:
672 case wxMOUSE_BTN_AUX1
:
675 case wxMOUSE_BTN_AUX2
:
680 // return true if the given button is currently changing state
681 bool wxMouseEvent::Button(int but
) const
686 wxFAIL_MSG(wxT("invalid parameter in wxMouseEvent::Button"));
689 case wxMOUSE_BTN_ANY
:
690 return ButtonUp(wxMOUSE_BTN_ANY
) ||
691 ButtonDown(wxMOUSE_BTN_ANY
) ||
692 ButtonDClick(wxMOUSE_BTN_ANY
);
694 case wxMOUSE_BTN_LEFT
:
695 return LeftDown() || LeftUp() || LeftDClick();
697 case wxMOUSE_BTN_MIDDLE
:
698 return MiddleDown() || MiddleUp() || MiddleDClick();
700 case wxMOUSE_BTN_RIGHT
:
701 return RightDown() || RightUp() || RightDClick();
703 case wxMOUSE_BTN_AUX1
:
704 return Aux1Down() || Aux1Up() || Aux1DClick();
706 case wxMOUSE_BTN_AUX2
:
707 return Aux2Down() || Aux2Up() || Aux2DClick();
711 bool wxMouseEvent::ButtonIsDown(int but
) const
716 wxFAIL_MSG(wxT("invalid parameter in wxMouseEvent::ButtonIsDown"));
719 case wxMOUSE_BTN_ANY
:
720 return LeftIsDown() || MiddleIsDown() || RightIsDown() || Aux1Down() || Aux2Down();
722 case wxMOUSE_BTN_LEFT
:
725 case wxMOUSE_BTN_MIDDLE
:
726 return MiddleIsDown();
728 case wxMOUSE_BTN_RIGHT
:
729 return RightIsDown();
731 case wxMOUSE_BTN_AUX1
:
734 case wxMOUSE_BTN_AUX2
:
739 int wxMouseEvent::GetButton() const
741 for ( int i
= 1; i
< wxMOUSE_BTN_MAX
; i
++ )
749 return wxMOUSE_BTN_NONE
;
752 // Find the logical position of the event given the DC
753 wxPoint
wxMouseEvent::GetLogicalPosition(const wxDC
& dc
) const
755 wxPoint
pt(dc
.DeviceToLogicalX(m_x
), dc
.DeviceToLogicalY(m_y
));
765 wxKeyEvent::wxKeyEvent(wxEventType type
)
775 wxKeyEvent::wxKeyEvent(const wxKeyEvent
& evt
)
782 m_keyCode
= evt
.m_keyCode
;
784 m_scanCode
= evt
.m_scanCode
;
785 m_rawCode
= evt
.m_rawCode
;
786 m_rawFlags
= evt
.m_rawFlags
;
789 m_uniChar
= evt
.m_uniChar
;
793 wxWindowCreateEvent::wxWindowCreateEvent(wxWindow
*win
)
795 SetEventType(wxEVT_CREATE
);
799 wxWindowDestroyEvent::wxWindowDestroyEvent(wxWindow
*win
)
801 SetEventType(wxEVT_DESTROY
);
805 wxChildFocusEvent::wxChildFocusEvent(wxWindow
*win
)
806 : wxCommandEvent(wxEVT_CHILD_FOCUS
)
811 // ----------------------------------------------------------------------------
813 // ----------------------------------------------------------------------------
816 wxHelpEvent::Origin
wxHelpEvent::GuessOrigin(Origin origin
)
818 if ( origin
== Origin_Unknown
)
820 // assume that the event comes from the help button if it's not from
821 // keyboard and that pressing F1 always results in the help event
822 origin
= wxGetKeyState(WXK_F1
) ? Origin_Keyboard
: Origin_HelpButton
;
833 // ----------------------------------------------------------------------------
835 // ----------------------------------------------------------------------------
837 static const int EVENT_TYPE_TABLE_INIT_SIZE
= 31; // Not too big not too small...
839 wxEventHashTable
* wxEventHashTable::sm_first
= NULL
;
841 wxEventHashTable::wxEventHashTable(const wxEventTable
&table
)
845 AllocEventTypeTable(EVENT_TYPE_TABLE_INIT_SIZE
);
849 m_next
->m_previous
= this;
853 wxEventHashTable::~wxEventHashTable()
856 m_next
->m_previous
= m_previous
;
858 m_previous
->m_next
= m_next
;
859 if (sm_first
== this)
865 void wxEventHashTable::Clear()
867 for ( size_t i
= 0; i
< m_size
; i
++ )
869 EventTypeTablePointer eTTnode
= m_eventTypeTable
[i
];
873 delete[] m_eventTypeTable
;
874 m_eventTypeTable
= NULL
;
879 #if defined(__WXDEBUG__) && wxUSE_MEMORY_TRACING
882 void wxEventHashTable::ClearAll()
884 wxEventHashTable
* table
= sm_first
;
888 table
= table
->m_next
;
892 #endif // __WXDEBUG__ && wxUSE_MEMORY_TRACING
894 bool wxEventHashTable::HandleEvent(wxEvent
&event
, wxEvtHandler
*self
)
899 m_rebuildHash
= false;
902 if (!m_eventTypeTable
)
905 // Find all entries for the given event type.
906 wxEventType eventType
= event
.GetEventType();
907 const EventTypeTablePointer eTTnode
= m_eventTypeTable
[eventType
% m_size
];
908 if (eTTnode
&& eTTnode
->eventType
== eventType
)
910 // Now start the search for an event handler
911 // that can handle an event with the given ID.
912 const wxEventTableEntryPointerArray
&
913 eventEntryTable
= eTTnode
->eventEntryTable
;
915 const size_t count
= eventEntryTable
.GetCount();
916 for (size_t n
= 0; n
< count
; n
++)
918 const wxEventTableEntry
& entry
= *eventEntryTable
[n
];
919 if ( wxEvtHandler::ProcessEventIfMatchesId(entry
, self
, event
) )
927 void wxEventHashTable::InitHashTable()
929 // Loop over the event tables and all its base tables.
930 const wxEventTable
*table
= &m_table
;
933 // Retrieve all valid event handler entries
934 const wxEventTableEntry
*entry
= table
->entries
;
935 while (entry
->m_fn
!= 0)
937 // Add the event entry in the Hash.
943 table
= table
->baseTable
;
946 // Lets free some memory.
948 for(i
= 0; i
< m_size
; i
++)
950 EventTypeTablePointer eTTnode
= m_eventTypeTable
[i
];
953 eTTnode
->eventEntryTable
.Shrink();
958 void wxEventHashTable::AddEntry(const wxEventTableEntry
&entry
)
960 // This might happen 'accidentally' as the app is exiting
961 if (!m_eventTypeTable
)
964 EventTypeTablePointer
*peTTnode
= &m_eventTypeTable
[entry
.m_eventType
% m_size
];
965 EventTypeTablePointer eTTnode
= *peTTnode
;
969 if (eTTnode
->eventType
!= entry
.m_eventType
)
972 GrowEventTypeTable();
973 // Try again to add it.
980 eTTnode
= new EventTypeTable
;
981 eTTnode
->eventType
= entry
.m_eventType
;
985 // Fill all hash entries between entry.m_id and entry.m_lastId...
986 eTTnode
->eventEntryTable
.Add(&entry
);
989 void wxEventHashTable::AllocEventTypeTable(size_t size
)
991 m_eventTypeTable
= new EventTypeTablePointer
[size
];
992 memset((void *)m_eventTypeTable
, 0, sizeof(EventTypeTablePointer
)*size
);
996 void wxEventHashTable::GrowEventTypeTable()
998 size_t oldSize
= m_size
;
999 EventTypeTablePointer
*oldEventTypeTable
= m_eventTypeTable
;
1001 // TODO: Search the most optimal grow sequence
1002 AllocEventTypeTable(/* GetNextPrime(oldSize) */oldSize
*2+1);
1004 for ( size_t i
= 0; i
< oldSize
; /* */ )
1006 EventTypeTablePointer eTToldNode
= oldEventTypeTable
[i
];
1009 EventTypeTablePointer
*peTTnode
= &m_eventTypeTable
[eTToldNode
->eventType
% m_size
];
1010 EventTypeTablePointer eTTnode
= *peTTnode
;
1012 // Check for collision, we don't want any.
1015 GrowEventTypeTable();
1016 continue; // Don't increment the counter,
1017 // as we still need to add this element.
1021 // Get the old value and put it in the new table.
1022 *peTTnode
= oldEventTypeTable
[i
];
1029 delete[] oldEventTypeTable
;
1032 // ----------------------------------------------------------------------------
1034 // ----------------------------------------------------------------------------
1040 wxEvtHandler::wxEvtHandler()
1042 m_nextHandler
= NULL
;
1043 m_previousHandler
= NULL
;
1045 m_dynamicEvents
= NULL
;
1046 m_pendingEvents
= NULL
;
1048 // no client data (yet)
1049 m_clientData
= NULL
;
1050 m_clientDataType
= wxClientData_None
;
1053 wxEvtHandler::~wxEvtHandler()
1057 if (m_dynamicEvents
)
1059 for ( wxList::iterator it
= m_dynamicEvents
->begin(),
1060 end
= m_dynamicEvents
->end();
1064 wxDynamicEventTableEntry
*entry
= (wxDynamicEventTableEntry
*)*it
;
1066 // Remove ourselves from sink destructor notifications
1067 // (this has usually been done, in wxTrackable destructor)
1068 wxEvtHandler
*eventSink
= entry
->m_fn
->GetHandler();
1071 wxEventConnectionRef
* const
1072 evtConnRef
= FindRefInTrackerList(eventSink
);
1075 eventSink
->RemoveNode(evtConnRef
);
1080 delete entry
->m_callbackUserData
;
1083 delete m_dynamicEvents
;
1086 if (m_pendingEvents
)
1087 m_pendingEvents
->DeleteContents(true);
1088 delete m_pendingEvents
;
1090 // Remove us from wxHandlersWithPendingEvents if necessary.
1091 if ( wxHandlersWithPendingEvents
)
1094 if (wxHandlersWithPendingEventsLocker
)
1095 wxENTER_CRIT_SECT(*wxHandlersWithPendingEventsLocker
);
1098 if ( wxHandlersWithPendingEvents
->DeleteObject(this) )
1100 // check that we were present only once in the list
1101 wxASSERT_MSG( !wxHandlersWithPendingEvents
->Find(this),
1102 "Handler occurs twice in wxHandlersWithPendingEvents list" );
1104 //else: we weren't in this list at all, it's ok
1107 if (wxHandlersWithPendingEventsLocker
)
1108 wxLEAVE_CRIT_SECT(*wxHandlersWithPendingEventsLocker
);
1112 // we only delete object data, not untyped
1113 if ( m_clientDataType
== wxClientData_Object
)
1114 delete m_clientObject
;
1117 void wxEvtHandler::Unlink()
1119 // this event handler must take itself out of the chain of handlers:
1121 if (m_previousHandler
)
1122 m_previousHandler
->SetNextHandler(m_nextHandler
);
1125 m_nextHandler
->SetPreviousHandler(m_previousHandler
);
1127 m_nextHandler
= NULL
;
1128 m_previousHandler
= NULL
;
1131 bool wxEvtHandler::IsUnlinked() const
1133 return m_previousHandler
== NULL
&&
1134 m_nextHandler
== NULL
;
1139 bool wxEvtHandler::ProcessThreadEvent(const wxEvent
& event
)
1141 // check that we are really in a child thread
1142 wxASSERT_MSG( !wxThread::IsMain(),
1143 wxT("use ProcessEvent() in main thread") );
1145 AddPendingEvent(event
);
1150 #endif // wxUSE_THREADS
1152 void wxEvtHandler::QueueEvent(wxEvent
*event
)
1154 wxCHECK_RET( event
, "NULL event can't be posted" );
1156 // 1) Add this event to our list of pending events
1157 wxENTER_CRIT_SECT( m_pendingEventsLock
);
1159 if ( !m_pendingEvents
)
1160 m_pendingEvents
= new wxList
;
1162 m_pendingEvents
->Append(event
);
1164 // 2) Add this event handler to list of event handlers that
1165 // have pending events.
1167 wxENTER_CRIT_SECT(*wxHandlersWithPendingEventsLocker
);
1169 if ( !wxHandlersWithPendingEvents
)
1170 wxHandlersWithPendingEvents
= new wxList
;
1171 if ( !wxHandlersWithPendingEvents
->Find(this) )
1172 wxHandlersWithPendingEvents
->Append(this);
1174 wxLEAVE_CRIT_SECT(*wxHandlersWithPendingEventsLocker
);
1176 // only release m_pendingEventsLock now because otherwise there is a race
1177 // condition as described in the ticket #9093: we could process the event
1178 // just added to m_pendingEvents in our ProcessPendingEvents() below before
1179 // we had time to append this pointer to wxHandlersWithPendingEvents list; thus
1180 // breaking the invariant that a handler should be in the list iff it has
1181 // any pending events to process
1182 wxLEAVE_CRIT_SECT( m_pendingEventsLock
);
1184 // 3) Inform the system that new pending events are somewhere,
1185 // and that these should be processed in idle time.
1189 void wxEvtHandler::ProcessPendingEvents()
1191 wxENTER_CRIT_SECT( m_pendingEventsLock
);
1193 // this method is only called by wxApp if this handler does have
1195 wxCHECK_RET( m_pendingEvents
&& !m_pendingEvents
->IsEmpty(),
1196 "should have pending events if called" );
1198 wxList::compatibility_iterator node
= m_pendingEvents
->GetFirst();
1199 wxEventPtr
event(static_cast<wxEvent
*>(node
->GetData()));
1201 // it's important we remove event from list before processing it, else a
1202 // nested event loop, for example from a modal dialog, might process the
1203 // same event again.
1204 m_pendingEvents
->Erase(node
);
1206 // if there are no more pending events left, we don't need to stay in this
1208 if ( m_pendingEvents
->IsEmpty() )
1211 if (wxHandlersWithPendingEventsLocker
)
1212 wxENTER_CRIT_SECT(*wxHandlersWithPendingEventsLocker
);
1214 wxHandlersWithPendingEvents
->DeleteObject(this);
1216 if (wxHandlersWithPendingEventsLocker
)
1217 wxLEAVE_CRIT_SECT(*wxHandlersWithPendingEventsLocker
);
1221 wxLEAVE_CRIT_SECT( m_pendingEventsLock
);
1223 ProcessEvent(*event
);
1225 // careful: this object could have been deleted by the event handler
1226 // executed by the above ProcessEvent() call, so we can't access any fields
1227 // of this object any more
1234 wxEvtHandler::ProcessEventIfMatchesId(const wxEventTableEntryBase
& entry
,
1235 wxEvtHandler
*handler
,
1238 int tableId1
= entry
.m_id
,
1239 tableId2
= entry
.m_lastId
;
1241 // match only if the event type is the same and the id is either -1 in
1242 // the event table (meaning "any") or the event id matches the id
1243 // specified in the event table either exactly or by falling into
1244 // range between first and last
1245 if ((tableId1
== wxID_ANY
) ||
1246 (tableId2
== wxID_ANY
&& tableId1
== event
.GetId()) ||
1247 (tableId2
!= wxID_ANY
&&
1248 (event
.GetId() >= tableId1
&& event
.GetId() <= tableId2
)))
1251 event
.m_callbackUserData
= entry
.m_callbackUserData
;
1253 #if wxUSE_EXCEPTIONS
1256 // call the handler via wxApp method which allows the user to catch
1257 // any exceptions which may be thrown by any handler in the program
1259 wxTheApp
->CallEventHandler(handler
, *entry
.m_fn
, event
);
1262 #endif // wxUSE_EXCEPTIONS
1264 (*entry
.m_fn
)(handler
, event
);
1267 if (!event
.GetSkipped())
1274 bool wxEvtHandler::TryParent(wxEvent
& event
)
1276 if ( GetNextHandler() )
1278 // the next handler will pass it to wxTheApp if it doesn't process it,
1279 // so return from here to avoid doing it again
1280 return GetNextHandler()->TryParent(event
);
1283 if ( wxTheApp
&& (this != wxTheApp
) )
1285 // Special case: don't pass wxEVT_IDLE to wxApp, since it'll always
1286 // swallow it. wxEVT_IDLE is sent explicitly to wxApp so it will be
1287 // processed appropriately via SearchEventTable.
1288 if ( event
.GetEventType() != wxEVT_IDLE
)
1290 if ( wxTheApp
->ProcessEvent(event
) )
1298 bool wxEvtHandler::ProcessEvent(wxEvent
& event
)
1300 // allow the application to hook into event processing
1302 // note that we should only do it if we're the first event handler called
1303 // to avoid calling FilterEvent() multiple times as the event goes through
1304 // the event handler chain and possibly upwards the window hierarchy
1305 if ( !event
.WasProcessed() )
1309 int rc
= wxTheApp
->FilterEvent(event
);
1312 wxASSERT_MSG( rc
== 1 || rc
== 0,
1313 "unexpected wxApp::FilterEvent return value" );
1317 //else: proceed normally
1321 if ( ProcessEventHere(event
) )
1324 // pass the event to the next handler, notice that we shouldn't call
1325 // TryParent() even if it doesn't handle the event as the last handler in
1326 // the chain will do it
1327 if ( GetNextHandler() )
1328 return GetNextHandler()->ProcessEvent(event
);
1330 // propagate the event upwards the window chain and/or to the application
1331 // object if it wasn't processed at this level
1332 return TryParent(event
);
1335 bool wxEvtHandler::ProcessEventHere(wxEvent
& event
)
1337 // If the event handler is disabled it doesn't process any events
1338 if ( !GetEvtHandlerEnabled() )
1341 // If we have a validator, it has higher priority than our own event
1343 if ( TryValidator(event
) )
1346 // Handle per-instance dynamic event tables first
1347 if ( m_dynamicEvents
&& SearchDynamicEventTable(event
) )
1350 // Then static per-class event tables
1351 if ( GetEventHashTable().HandleEvent(event
, this) )
1354 // We don't have a handler for this event.
1358 bool wxEvtHandler::SafelyProcessEvent(wxEvent
& event
)
1360 #if wxUSE_EXCEPTIONS
1364 return ProcessEvent(event
);
1365 #if wxUSE_EXCEPTIONS
1369 wxEventLoopBase
*loop
= wxEventLoopBase::GetActive();
1372 if ( !wxTheApp
|| !wxTheApp
->OnExceptionInMainLoop() )
1377 //else: continue running current event loop
1383 // OnExceptionInMainLoop() threw, possibly rethrowing the same
1384 // exception again: very good, but we still need Exit() to
1391 #endif // wxUSE_EXCEPTIONS
1395 bool wxEvtHandler::SearchEventTable(wxEventTable
& table
, wxEvent
& event
)
1397 const wxEventType eventType
= event
.GetEventType();
1398 for ( int i
= 0; table
.entries
[i
].m_fn
!= 0; i
++ )
1400 const wxEventTableEntry
& entry
= table
.entries
[i
];
1401 if ( eventType
== entry
.m_eventType
)
1403 if ( ProcessEventIfMatchesId(entry
, this, event
) )
1411 void wxEvtHandler::Subscribe( int id
, int lastId
,
1412 wxEventType eventType
,
1413 wxEventFunctor
*func
,
1414 wxObject
*userData
)
1416 wxDynamicEventTableEntry
*entry
=
1417 new wxDynamicEventTableEntry(eventType
, id
, lastId
, func
, userData
);
1419 if (!m_dynamicEvents
)
1420 m_dynamicEvents
= new wxList
;
1422 // Insert at the front of the list so most recent additions are found first
1423 m_dynamicEvents
->Insert( (wxObject
*) entry
);
1425 // Make sure we get to know when a sink is destroyed
1426 wxEvtHandler
*eventSink
= func
->GetHandler();
1427 if ( eventSink
&& eventSink
!= this )
1429 wxEventConnectionRef
*evtConnRef
= FindRefInTrackerList(eventSink
);
1431 evtConnRef
->IncRef( );
1433 new wxEventConnectionRef(this, eventSink
);
1438 wxEvtHandler::Unsubscribe(int id
,
1440 wxEventType eventType
,
1441 const wxEventFunctor
& func
,
1444 if (!m_dynamicEvents
)
1447 // Remove connection from tracker node (wxEventConnectionRef)
1448 wxEvtHandler
*eventSink
= func
.GetHandler();
1449 if ( eventSink
&& eventSink
!= this )
1451 wxEventConnectionRef
*evtConnRef
= FindRefInTrackerList(eventSink
);
1453 evtConnRef
->DecRef();
1456 wxList::compatibility_iterator node
= m_dynamicEvents
->GetFirst();
1459 wxDynamicEventTableEntry
*entry
= (wxDynamicEventTableEntry
*)node
->GetData();
1461 if ((entry
->m_id
== id
) &&
1462 ((entry
->m_lastId
== lastId
) || (lastId
== wxID_ANY
)) &&
1463 ((entry
->m_eventType
== eventType
) || (eventType
== wxEVT_NULL
)) &&
1464 entry
->m_fn
->Matches(func
) &&
1465 ((entry
->m_callbackUserData
== userData
) || !userData
))
1467 delete entry
->m_callbackUserData
;
1468 m_dynamicEvents
->Erase( node
);
1472 node
= node
->GetNext();
1477 bool wxEvtHandler::SearchDynamicEventTable( wxEvent
& event
)
1479 wxCHECK_MSG( m_dynamicEvents
, false,
1480 wxT("caller should check that we have dynamic events") );
1482 wxList::compatibility_iterator node
= m_dynamicEvents
->GetFirst();
1485 wxDynamicEventTableEntry
*entry
= (wxDynamicEventTableEntry
*)node
->GetData();
1487 // get next node before (maybe) calling the event handler as it could
1488 // call Disconnect() invalidating the current node
1489 node
= node
->GetNext();
1491 if ( event
.GetEventType() == entry
->m_eventType
)
1493 wxEvtHandler
*handler
= entry
->m_fn
->GetHandler();
1496 if ( ProcessEventIfMatchesId(*entry
, handler
, event
) )
1504 void wxEvtHandler::DoSetClientObject( wxClientData
*data
)
1506 wxASSERT_MSG( m_clientDataType
!= wxClientData_Void
,
1507 wxT("can't have both object and void client data") );
1509 if ( m_clientObject
)
1510 delete m_clientObject
;
1512 m_clientObject
= data
;
1513 m_clientDataType
= wxClientData_Object
;
1516 wxClientData
*wxEvtHandler::DoGetClientObject() const
1518 // it's not an error to call GetClientObject() on a window which doesn't
1519 // have client data at all - NULL will be returned
1520 wxASSERT_MSG( m_clientDataType
!= wxClientData_Void
,
1521 wxT("this window doesn't have object client data") );
1523 return m_clientObject
;
1526 void wxEvtHandler::DoSetClientData( void *data
)
1528 wxASSERT_MSG( m_clientDataType
!= wxClientData_Object
,
1529 wxT("can't have both object and void client data") );
1531 m_clientData
= data
;
1532 m_clientDataType
= wxClientData_Void
;
1535 void *wxEvtHandler::DoGetClientData() const
1537 // it's not an error to call GetClientData() on a window which doesn't have
1538 // client data at all - NULL will be returned
1539 wxASSERT_MSG( m_clientDataType
!= wxClientData_Object
,
1540 wxT("this window doesn't have void client data") );
1542 return m_clientData
;
1545 // A helper to find an wxEventConnectionRef object
1546 wxEventConnectionRef
*
1547 wxEvtHandler::FindRefInTrackerList(wxEvtHandler
*eventSink
)
1549 for ( wxTrackerNode
*node
= eventSink
->GetFirst(); node
; node
= node
->m_nxt
)
1551 // we only want wxEventConnectionRef nodes here
1552 wxEventConnectionRef
*evtConnRef
= node
->ToEventConnection();
1553 if ( evtConnRef
&& evtConnRef
->m_src
== this )
1555 wxASSERT( evtConnRef
->m_sink
==eventSink
);
1563 void wxEvtHandler::OnSinkDestroyed( wxEvtHandler
*sink
)
1565 wxASSERT(m_dynamicEvents
);
1567 // remove all connections with this sink
1568 wxList::compatibility_iterator node
= m_dynamicEvents
->GetFirst(), node_nxt
;
1571 wxDynamicEventTableEntry
*entry
= (wxDynamicEventTableEntry
*)node
->GetData();
1572 node_nxt
= node
->GetNext();
1574 if ( entry
->m_fn
->GetHandler() == sink
)
1576 delete entry
->m_callbackUserData
;
1577 m_dynamicEvents
->Erase( node
);
1584 #endif // wxUSE_BASE
1588 // Find a window with the focus, that is also a descendant of the given window.
1589 // This is used to determine the window to initially send commands to.
1590 wxWindow
* wxFindFocusDescendant(wxWindow
* ancestor
)
1592 // Process events starting with the window with the focus, if any.
1593 wxWindow
* focusWin
= wxWindow::FindFocus();
1594 wxWindow
* win
= focusWin
;
1596 // Check if this is a descendant of this frame.
1597 // If not, win will be set to NULL.
1600 if (win
== ancestor
)
1603 win
= win
->GetParent();
1611 // ----------------------------------------------------------------------------
1613 // ----------------------------------------------------------------------------
1615 wxEventBlocker::wxEventBlocker(wxWindow
*win
, wxEventType type
)
1617 wxCHECK_RET(win
, wxT("Null window given to wxEventBlocker"));
1622 m_window
->PushEventHandler(this);
1625 wxEventBlocker::~wxEventBlocker()
1627 wxEvtHandler
*popped
= m_window
->PopEventHandler(false);
1628 wxCHECK_RET(popped
== this,
1629 wxT("Don't push other event handlers into a window managed by wxEventBlocker!"));
1632 bool wxEventBlocker::ProcessEvent(wxEvent
& event
)
1634 // should this event be blocked?
1635 for ( size_t i
= 0; i
< m_eventsToBlock
.size(); i
++ )
1637 wxEventType t
= (wxEventType
)m_eventsToBlock
[i
];
1638 if ( t
== wxEVT_ANY
|| t
== event
.GetEventType() )
1639 return true; // yes, it should: mark this event as processed