1 /////////////////////////////////////////////////////////////////////////////
3 // Purpose: Event classes
4 // Author: Julian Smart
8 // Copyright: (c) Julian Smart
9 // Licence: wxWindows licence
10 /////////////////////////////////////////////////////////////////////////////
12 // ============================================================================
14 // ============================================================================
16 // ----------------------------------------------------------------------------
18 // ----------------------------------------------------------------------------
21 #pragma implementation "event.h"
24 // For compilers that support precompilation, includes "wx.h".
25 #include "wx/wxprec.h"
37 #include "wx/control.h"
46 #include "wx/validate.h"
48 #include "wx/stopwatch.h"
52 // ----------------------------------------------------------------------------
54 // ----------------------------------------------------------------------------
57 IMPLEMENT_DYNAMIC_CLASS(wxEvtHandler
, wxObject
)
58 IMPLEMENT_ABSTRACT_CLASS(wxEvent
, wxObject
)
62 IMPLEMENT_DYNAMIC_CLASS(wxIdleEvent
, wxEvent
)
63 IMPLEMENT_DYNAMIC_CLASS(wxCommandEvent
, wxEvent
)
64 IMPLEMENT_DYNAMIC_CLASS(wxNotifyEvent
, wxCommandEvent
)
65 IMPLEMENT_DYNAMIC_CLASS(wxScrollEvent
, wxCommandEvent
)
66 IMPLEMENT_DYNAMIC_CLASS(wxScrollWinEvent
, wxEvent
)
67 IMPLEMENT_DYNAMIC_CLASS(wxMouseEvent
, wxEvent
)
68 IMPLEMENT_DYNAMIC_CLASS(wxKeyEvent
, wxEvent
)
69 IMPLEMENT_DYNAMIC_CLASS(wxSizeEvent
, wxEvent
)
70 IMPLEMENT_DYNAMIC_CLASS(wxPaintEvent
, wxEvent
)
71 IMPLEMENT_DYNAMIC_CLASS(wxNcPaintEvent
, wxEvent
)
72 IMPLEMENT_DYNAMIC_CLASS(wxEraseEvent
, wxEvent
)
73 IMPLEMENT_DYNAMIC_CLASS(wxMoveEvent
, wxEvent
)
74 IMPLEMENT_DYNAMIC_CLASS(wxFocusEvent
, wxEvent
)
75 IMPLEMENT_DYNAMIC_CLASS(wxChildFocusEvent
, wxCommandEvent
)
76 IMPLEMENT_DYNAMIC_CLASS(wxCloseEvent
, wxEvent
)
77 IMPLEMENT_DYNAMIC_CLASS(wxShowEvent
, wxEvent
)
78 IMPLEMENT_DYNAMIC_CLASS(wxMaximizeEvent
, wxEvent
)
79 IMPLEMENT_DYNAMIC_CLASS(wxIconizeEvent
, wxEvent
)
80 IMPLEMENT_DYNAMIC_CLASS(wxMenuEvent
, wxEvent
)
81 IMPLEMENT_DYNAMIC_CLASS(wxJoystickEvent
, wxEvent
)
82 IMPLEMENT_DYNAMIC_CLASS(wxDropFilesEvent
, wxEvent
)
83 IMPLEMENT_DYNAMIC_CLASS(wxActivateEvent
, wxEvent
)
84 IMPLEMENT_DYNAMIC_CLASS(wxInitDialogEvent
, wxEvent
)
85 IMPLEMENT_DYNAMIC_CLASS(wxSetCursorEvent
, wxEvent
)
86 IMPLEMENT_DYNAMIC_CLASS(wxSysColourChangedEvent
, wxEvent
)
87 IMPLEMENT_DYNAMIC_CLASS(wxDisplayChangedEvent
, wxEvent
)
88 IMPLEMENT_DYNAMIC_CLASS(wxUpdateUIEvent
, wxCommandEvent
)
89 IMPLEMENT_DYNAMIC_CLASS(wxNavigationKeyEvent
, wxCommandEvent
)
90 IMPLEMENT_DYNAMIC_CLASS(wxPaletteChangedEvent
, wxEvent
)
91 IMPLEMENT_DYNAMIC_CLASS(wxQueryNewPaletteEvent
, wxEvent
)
92 IMPLEMENT_DYNAMIC_CLASS(wxWindowCreateEvent
, wxEvent
)
93 IMPLEMENT_DYNAMIC_CLASS(wxWindowDestroyEvent
, wxEvent
)
94 IMPLEMENT_DYNAMIC_CLASS(wxHelpEvent
, wxCommandEvent
)
95 IMPLEMENT_DYNAMIC_CLASS(wxContextMenuEvent
, wxCommandEvent
)
96 IMPLEMENT_DYNAMIC_CLASS(wxMouseCaptureChangedEvent
, wxEvent
)
101 const wxEventTable
*wxEvtHandler::GetEventTable() const
102 { return &wxEvtHandler::sm_eventTable
; }
104 const wxEventTable
wxEvtHandler::sm_eventTable
=
105 { (const wxEventTable
*)NULL
, &wxEvtHandler::sm_eventTableEntries
[0] };
107 const wxEventTableEntry
wxEvtHandler::sm_eventTableEntries
[] =
108 { DECLARE_EVENT_TABLE_ENTRY(wxEVT_NULL
, 0, 0, (wxObjectEventFunction
)NULL
, NULL
) };
110 // ----------------------------------------------------------------------------
112 // ----------------------------------------------------------------------------
114 // To put pending event handlers
115 wxList
*wxPendingEvents
= (wxList
*)NULL
;
118 // protects wxPendingEvents list
119 wxCriticalSection
*wxPendingEventsLocker
= (wxCriticalSection
*)NULL
;
122 #if !WXWIN_COMPATIBILITY_EVENT_TYPES
124 // common event types are defined here, other event types are defined by the
125 // components which use them
127 const wxEventType wxEVT_FIRST
= 10000;
128 const wxEventType wxEVT_USER_FIRST
= wxEVT_FIRST
+ 2000;
130 DEFINE_EVENT_TYPE(wxEVT_NULL
)
131 DEFINE_EVENT_TYPE(wxEVT_IDLE
)
132 DEFINE_EVENT_TYPE(wxEVT_SOCKET
)
134 #endif // !WXWIN_COMPATIBILITY_EVENT_TYPES
140 #if !WXWIN_COMPATIBILITY_EVENT_TYPES
142 DEFINE_EVENT_TYPE(wxEVT_COMMAND_BUTTON_CLICKED
)
143 DEFINE_EVENT_TYPE(wxEVT_COMMAND_CHECKBOX_CLICKED
)
144 DEFINE_EVENT_TYPE(wxEVT_COMMAND_CHOICE_SELECTED
)
145 DEFINE_EVENT_TYPE(wxEVT_COMMAND_LISTBOX_SELECTED
)
146 DEFINE_EVENT_TYPE(wxEVT_COMMAND_LISTBOX_DOUBLECLICKED
)
147 DEFINE_EVENT_TYPE(wxEVT_COMMAND_CHECKLISTBOX_TOGGLED
)
148 DEFINE_EVENT_TYPE(wxEVT_COMMAND_MENU_SELECTED
)
149 DEFINE_EVENT_TYPE(wxEVT_COMMAND_SLIDER_UPDATED
)
150 DEFINE_EVENT_TYPE(wxEVT_COMMAND_RADIOBOX_SELECTED
)
151 DEFINE_EVENT_TYPE(wxEVT_COMMAND_RADIOBUTTON_SELECTED
)
152 DEFINE_EVENT_TYPE(wxEVT_COMMAND_SCROLLBAR_UPDATED
)
153 DEFINE_EVENT_TYPE(wxEVT_COMMAND_VLBOX_SELECTED
)
154 DEFINE_EVENT_TYPE(wxEVT_COMMAND_COMBOBOX_SELECTED
)
155 DEFINE_EVENT_TYPE(wxEVT_COMMAND_TOOL_RCLICKED
)
156 DEFINE_EVENT_TYPE(wxEVT_COMMAND_TOOL_ENTER
)
157 DEFINE_EVENT_TYPE(wxEVT_COMMAND_SPINCTRL_UPDATED
)
159 // Sockets and timers send events, too
160 DEFINE_EVENT_TYPE(wxEVT_TIMER
)
163 DEFINE_EVENT_TYPE(wxEVT_LEFT_DOWN
)
164 DEFINE_EVENT_TYPE(wxEVT_LEFT_UP
)
165 DEFINE_EVENT_TYPE(wxEVT_MIDDLE_DOWN
)
166 DEFINE_EVENT_TYPE(wxEVT_MIDDLE_UP
)
167 DEFINE_EVENT_TYPE(wxEVT_RIGHT_DOWN
)
168 DEFINE_EVENT_TYPE(wxEVT_RIGHT_UP
)
169 DEFINE_EVENT_TYPE(wxEVT_MOTION
)
170 DEFINE_EVENT_TYPE(wxEVT_ENTER_WINDOW
)
171 DEFINE_EVENT_TYPE(wxEVT_LEAVE_WINDOW
)
172 DEFINE_EVENT_TYPE(wxEVT_LEFT_DCLICK
)
173 DEFINE_EVENT_TYPE(wxEVT_MIDDLE_DCLICK
)
174 DEFINE_EVENT_TYPE(wxEVT_RIGHT_DCLICK
)
175 DEFINE_EVENT_TYPE(wxEVT_SET_FOCUS
)
176 DEFINE_EVENT_TYPE(wxEVT_KILL_FOCUS
)
177 DEFINE_EVENT_TYPE(wxEVT_CHILD_FOCUS
)
178 DEFINE_EVENT_TYPE(wxEVT_MOUSEWHEEL
)
180 // Non-client mouse events
181 DEFINE_EVENT_TYPE(wxEVT_NC_LEFT_DOWN
)
182 DEFINE_EVENT_TYPE(wxEVT_NC_LEFT_UP
)
183 DEFINE_EVENT_TYPE(wxEVT_NC_MIDDLE_DOWN
)
184 DEFINE_EVENT_TYPE(wxEVT_NC_MIDDLE_UP
)
185 DEFINE_EVENT_TYPE(wxEVT_NC_RIGHT_DOWN
)
186 DEFINE_EVENT_TYPE(wxEVT_NC_RIGHT_UP
)
187 DEFINE_EVENT_TYPE(wxEVT_NC_MOTION
)
188 DEFINE_EVENT_TYPE(wxEVT_NC_ENTER_WINDOW
)
189 DEFINE_EVENT_TYPE(wxEVT_NC_LEAVE_WINDOW
)
190 DEFINE_EVENT_TYPE(wxEVT_NC_LEFT_DCLICK
)
191 DEFINE_EVENT_TYPE(wxEVT_NC_MIDDLE_DCLICK
)
192 DEFINE_EVENT_TYPE(wxEVT_NC_RIGHT_DCLICK
)
194 // Character input event type
195 DEFINE_EVENT_TYPE(wxEVT_CHAR
)
196 DEFINE_EVENT_TYPE(wxEVT_CHAR_HOOK
)
197 DEFINE_EVENT_TYPE(wxEVT_NAVIGATION_KEY
)
198 DEFINE_EVENT_TYPE(wxEVT_KEY_DOWN
)
199 DEFINE_EVENT_TYPE(wxEVT_KEY_UP
)
201 DEFINE_EVENT_TYPE(wxEVT_HOTKEY
)
205 DEFINE_EVENT_TYPE(wxEVT_SET_CURSOR
)
207 // wxScrollbar and wxSlider event identifiers
208 DEFINE_EVENT_TYPE(wxEVT_SCROLL_TOP
)
209 DEFINE_EVENT_TYPE(wxEVT_SCROLL_BOTTOM
)
210 DEFINE_EVENT_TYPE(wxEVT_SCROLL_LINEUP
)
211 DEFINE_EVENT_TYPE(wxEVT_SCROLL_LINEDOWN
)
212 DEFINE_EVENT_TYPE(wxEVT_SCROLL_PAGEUP
)
213 DEFINE_EVENT_TYPE(wxEVT_SCROLL_PAGEDOWN
)
214 DEFINE_EVENT_TYPE(wxEVT_SCROLL_THUMBTRACK
)
215 DEFINE_EVENT_TYPE(wxEVT_SCROLL_THUMBRELEASE
)
216 DEFINE_EVENT_TYPE(wxEVT_SCROLL_ENDSCROLL
)
218 // Scroll events from wxWindow
219 DEFINE_EVENT_TYPE(wxEVT_SCROLLWIN_TOP
)
220 DEFINE_EVENT_TYPE(wxEVT_SCROLLWIN_BOTTOM
)
221 DEFINE_EVENT_TYPE(wxEVT_SCROLLWIN_LINEUP
)
222 DEFINE_EVENT_TYPE(wxEVT_SCROLLWIN_LINEDOWN
)
223 DEFINE_EVENT_TYPE(wxEVT_SCROLLWIN_PAGEUP
)
224 DEFINE_EVENT_TYPE(wxEVT_SCROLLWIN_PAGEDOWN
)
225 DEFINE_EVENT_TYPE(wxEVT_SCROLLWIN_THUMBTRACK
)
226 DEFINE_EVENT_TYPE(wxEVT_SCROLLWIN_THUMBRELEASE
)
229 DEFINE_EVENT_TYPE(wxEVT_SIZE
)
230 DEFINE_EVENT_TYPE(wxEVT_SIZING
)
231 DEFINE_EVENT_TYPE(wxEVT_MOVE
)
232 DEFINE_EVENT_TYPE(wxEVT_MOVING
)
233 DEFINE_EVENT_TYPE(wxEVT_CLOSE_WINDOW
)
234 DEFINE_EVENT_TYPE(wxEVT_END_SESSION
)
235 DEFINE_EVENT_TYPE(wxEVT_QUERY_END_SESSION
)
236 DEFINE_EVENT_TYPE(wxEVT_ACTIVATE_APP
)
237 DEFINE_EVENT_TYPE(wxEVT_POWER
)
238 DEFINE_EVENT_TYPE(wxEVT_ACTIVATE
)
239 DEFINE_EVENT_TYPE(wxEVT_CREATE
)
240 DEFINE_EVENT_TYPE(wxEVT_DESTROY
)
241 DEFINE_EVENT_TYPE(wxEVT_SHOW
)
242 DEFINE_EVENT_TYPE(wxEVT_ICONIZE
)
243 DEFINE_EVENT_TYPE(wxEVT_MAXIMIZE
)
244 DEFINE_EVENT_TYPE(wxEVT_MOUSE_CAPTURE_CHANGED
)
245 DEFINE_EVENT_TYPE(wxEVT_PAINT
)
246 DEFINE_EVENT_TYPE(wxEVT_ERASE_BACKGROUND
)
247 DEFINE_EVENT_TYPE(wxEVT_NC_PAINT
)
248 DEFINE_EVENT_TYPE(wxEVT_PAINT_ICON
)
249 DEFINE_EVENT_TYPE(wxEVT_MENU_OPEN
)
250 DEFINE_EVENT_TYPE(wxEVT_MENU_CLOSE
)
251 DEFINE_EVENT_TYPE(wxEVT_MENU_HIGHLIGHT
)
252 DEFINE_EVENT_TYPE(wxEVT_CONTEXT_MENU
)
253 DEFINE_EVENT_TYPE(wxEVT_SYS_COLOUR_CHANGED
)
254 DEFINE_EVENT_TYPE(wxEVT_DISPLAY_CHANGED
)
255 DEFINE_EVENT_TYPE(wxEVT_SETTING_CHANGED
)
256 DEFINE_EVENT_TYPE(wxEVT_QUERY_NEW_PALETTE
)
257 DEFINE_EVENT_TYPE(wxEVT_PALETTE_CHANGED
)
258 DEFINE_EVENT_TYPE(wxEVT_JOY_BUTTON_DOWN
)
259 DEFINE_EVENT_TYPE(wxEVT_JOY_BUTTON_UP
)
260 DEFINE_EVENT_TYPE(wxEVT_JOY_MOVE
)
261 DEFINE_EVENT_TYPE(wxEVT_JOY_ZMOVE
)
262 DEFINE_EVENT_TYPE(wxEVT_DROP_FILES
)
263 DEFINE_EVENT_TYPE(wxEVT_DRAW_ITEM
)
264 DEFINE_EVENT_TYPE(wxEVT_MEASURE_ITEM
)
265 DEFINE_EVENT_TYPE(wxEVT_COMPARE_ITEM
)
266 DEFINE_EVENT_TYPE(wxEVT_INIT_DIALOG
)
267 DEFINE_EVENT_TYPE(wxEVT_UPDATE_UI
)
269 // Generic command events
270 // Note: a click is a higher-level event than button down/up
271 DEFINE_EVENT_TYPE(wxEVT_COMMAND_LEFT_CLICK
)
272 DEFINE_EVENT_TYPE(wxEVT_COMMAND_LEFT_DCLICK
)
273 DEFINE_EVENT_TYPE(wxEVT_COMMAND_RIGHT_CLICK
)
274 DEFINE_EVENT_TYPE(wxEVT_COMMAND_RIGHT_DCLICK
)
275 DEFINE_EVENT_TYPE(wxEVT_COMMAND_SET_FOCUS
)
276 DEFINE_EVENT_TYPE(wxEVT_COMMAND_KILL_FOCUS
)
277 DEFINE_EVENT_TYPE(wxEVT_COMMAND_ENTER
)
280 DEFINE_EVENT_TYPE(wxEVT_HELP
)
281 DEFINE_EVENT_TYPE(wxEVT_DETAILED_HELP
)
283 #endif // !WXWIN_COMPATIBILITY_EVENT_TYPES
289 // ============================================================================
291 // ============================================================================
293 // ----------------------------------------------------------------------------
294 // event initialization
295 // ----------------------------------------------------------------------------
300 static int s_lastUsedEventType
= wxEVT_FIRST
;
302 #if WXWIN_COMPATIBILITY_2
303 // check that we don't overlap with the user-defined types: if it does
304 // happen, the best solution is probably to update the existing code to
305 // use wxNewEventType() instead of wxEVT_USER_FIRST
307 // due to the uncertainty
308 wxASSERT_MSG( s_lastUsedEventType
< wxEVT_USER_FIRST
- 1,
309 _T("possible event type conflict") );
310 #endif // WXWIN_COMPATIBILITY_2
312 return s_lastUsedEventType
++;
315 // ----------------------------------------------------------------------------
317 // ----------------------------------------------------------------------------
320 * General wxWindows events, covering
321 * all interesting things that might happen (button clicking, resizing,
322 * setting text in widgets, etc.).
324 * For each completely new event type, derive a new event class.
328 wxEvent::wxEvent(int theId
, wxEventType commandType
)
330 m_eventType
= commandType
;
331 m_eventObject
= (wxObject
*) NULL
;
335 m_callbackUserData
= (wxObject
*) NULL
;
336 m_isCommandEvent
= FALSE
;
339 wxEvent::wxEvent(const wxEvent
&src
)
341 , m_eventObject(src
.m_eventObject
)
342 , m_eventType(src
.m_eventType
)
343 , m_timeStamp(src
.m_timeStamp
)
345 , m_callbackUserData(src
.m_callbackUserData
)
346 , m_skipped(src
.m_skipped
)
347 , m_isCommandEvent(src
.m_isCommandEvent
)
360 wxCommandEvent::wxCommandEvent(wxEventType commandType
, int theId
)
361 : wxEvent(theId
, commandType
)
363 m_clientData
= (char *) NULL
;
364 m_clientObject
= (wxClientData
*) NULL
;
367 m_commandString
= wxEmptyString
;
368 m_isCommandEvent
= TRUE
;
376 wxLongLong
wxUpdateUIEvent::sm_lastUpdate
= 0;
379 long wxUpdateUIEvent::sm_updateInterval
= 0;
381 wxUpdateUIMode
wxUpdateUIEvent::sm_updateMode
= wxUPDATE_UI_PROCESS_ALL
;
384 bool wxUpdateUIEvent::CanUpdate(wxWindow
* win
)
386 // Don't update if we've switched global updating off
387 // and this window doesn't support updates.
389 (GetMode() == wxUPDATE_UI_PROCESS_SPECIFIED
&&
390 ((win
->GetExtraStyle() & wxWS_EX_PROCESS_UI_UPDATES
) == 0)))
393 if (sm_updateInterval
== -1)
395 else if (sm_updateInterval
== 0)
399 #if wxUSE_STOPWATCH && wxUSE_LONGLONG
400 wxLongLong now
= wxGetLocalTimeMillis();
401 if (now
> (sm_lastUpdate
+ sm_updateInterval
))
406 // If we don't have wxStopWatch or wxLongLong, we
407 // should err on the safe side and update now anyway.
414 // Reset the update time to provide a delay until the next
415 // time we should update
416 void wxUpdateUIEvent::ResetUpdateTime()
418 #if wxUSE_STOPWATCH && wxUSE_LONGLONG
419 if (sm_updateInterval
> 0)
421 wxLongLong now
= wxGetLocalTimeMillis();
422 if (now
> (sm_lastUpdate
+ sm_updateInterval
))
434 wxIdleMode
wxIdleEvent::sm_idleMode
= wxIDLE_PROCESS_ALL
;
436 // Can we send an idle event?
437 bool wxIdleEvent::CanSend(wxWindow
* win
)
439 // Don't update if we've switched global updating off
440 // and this window doesn't support updates.
442 (GetMode() == wxIDLE_PROCESS_SPECIFIED
&&
443 ((win
->GetExtraStyle() & wxWS_EX_PROCESS_IDLE
) == 0)))
453 wxScrollEvent::wxScrollEvent(wxEventType commandType
,
457 : wxCommandEvent(commandType
, id
)
459 m_extraLong
= orient
;
467 wxScrollWinEvent::wxScrollWinEvent(wxEventType commandType
,
471 m_eventType
= commandType
;
472 m_extraLong
= orient
;
481 wxMouseEvent::wxMouseEvent(wxEventType commandType
)
483 m_eventType
= commandType
;
486 m_controlDown
= FALSE
;
490 m_middleDown
= FALSE
;
495 m_linesPerAction
= 0;
498 void wxMouseEvent::Assign(const wxMouseEvent
& event
)
500 m_eventType
= event
.m_eventType
;
505 m_leftDown
= event
.m_leftDown
;
506 m_middleDown
= event
.m_middleDown
;
507 m_rightDown
= event
.m_rightDown
;
509 m_controlDown
= event
.m_controlDown
;
510 m_shiftDown
= event
.m_shiftDown
;
511 m_altDown
= event
.m_altDown
;
512 m_metaDown
= event
.m_metaDown
;
514 m_wheelRotation
= event
.m_wheelRotation
;
515 m_wheelDelta
= event
.m_wheelDelta
;
516 m_linesPerAction
= event
.m_linesPerAction
;
519 // True if was a button dclick event (1 = left, 2 = middle, 3 = right)
520 // or any button dclick event (but = -1)
521 bool wxMouseEvent::ButtonDClick(int but
) const
526 return (LeftDClick() || MiddleDClick() || RightDClick());
530 return MiddleDClick();
532 return RightDClick();
534 wxFAIL_MSG(wxT("invalid parameter in wxMouseEvent::ButtonDClick"));
540 // True if was a button down event (1 = left, 2 = middle, 3 = right)
541 // or any button down event (but = -1)
542 bool wxMouseEvent::ButtonDown(int but
) const
547 return (LeftDown() || MiddleDown() || RightDown());
555 wxFAIL_MSG(wxT("invalid parameter in wxMouseEvent::ButtonDown"));
561 // True if was a button up event (1 = left, 2 = middle, 3 = right)
562 // or any button up event (but = -1)
563 bool wxMouseEvent::ButtonUp(int but
) const
568 return (LeftUp() || MiddleUp() || RightUp());
576 wxFAIL_MSG(wxT("invalid parameter in wxMouseEvent::ButtonUp"));
582 // True if the given button is currently changing state
583 bool wxMouseEvent::Button(int but
) const
588 return (ButtonUp(-1) || ButtonDown(-1) || ButtonDClick(-1));
590 return (LeftDown() || LeftUp() || LeftDClick());
592 return (MiddleDown() || MiddleUp() || MiddleDClick());
594 return (RightDown() || RightUp() || RightDClick());
596 wxFAIL_MSG(wxT("invalid parameter in wxMouseEvent::Button"));
602 bool wxMouseEvent::ButtonIsDown(int but
) const
607 return (LeftIsDown() || MiddleIsDown() || RightIsDown());
611 return MiddleIsDown();
613 return RightIsDown();
615 wxFAIL_MSG(wxT("invalid parameter in wxMouseEvent::ButtonIsDown"));
621 int wxMouseEvent::GetButton() const
623 for ( int i
= 1; i
<= 3; i
++ )
634 // Find the logical position of the event given the DC
635 wxPoint
wxMouseEvent::GetLogicalPosition(const wxDC
& dc
) const
637 wxPoint
pt(dc
.DeviceToLogicalX(m_x
), dc
.DeviceToLogicalY(m_y
));
647 wxKeyEvent::wxKeyEvent(wxEventType type
)
651 m_controlDown
= FALSE
;
661 wxKeyEvent::wxKeyEvent(const wxKeyEvent
& evt
)
667 m_keyCode
= evt
.m_keyCode
;
669 m_controlDown
= evt
.m_controlDown
;
670 m_shiftDown
= evt
.m_shiftDown
;
671 m_altDown
= evt
.m_altDown
;
672 m_metaDown
= evt
.m_metaDown
;
673 m_scanCode
= evt
.m_scanCode
;
674 m_rawCode
= evt
.m_rawCode
;
675 m_rawFlags
= evt
.m_rawFlags
;
678 m_uniChar
= evt
.m_uniChar
;
682 long wxKeyEvent::KeyCode() const
687 wxWindowCreateEvent::wxWindowCreateEvent(wxWindow
*win
)
689 SetEventType(wxEVT_CREATE
);
693 wxWindowDestroyEvent::wxWindowDestroyEvent(wxWindow
*win
)
695 SetEventType(wxEVT_DESTROY
);
699 wxChildFocusEvent::wxChildFocusEvent(wxWindow
*win
)
700 : wxCommandEvent(wxEVT_CHILD_FOCUS
)
707 // ----------------------------------------------------------------------------
709 // ----------------------------------------------------------------------------
717 wxEvtHandler::wxEvtHandler()
719 m_nextHandler
= (wxEvtHandler
*) NULL
;
720 m_previousHandler
= (wxEvtHandler
*) NULL
;
722 m_dynamicEvents
= (wxList
*) NULL
;
723 m_pendingEvents
= (wxList
*) NULL
;
725 # if !defined(__VISAGECPP__)
726 m_eventsLocker
= new wxCriticalSection
;
729 // no client data (yet)
731 m_clientDataType
= wxClientData_None
;
734 wxEvtHandler::~wxEvtHandler()
736 // Takes itself out of the list of handlers
737 if (m_previousHandler
)
738 m_previousHandler
->m_nextHandler
= m_nextHandler
;
741 m_nextHandler
->m_previousHandler
= m_previousHandler
;
745 wxList::iterator it
= m_dynamicEvents
->begin(),
746 en
= m_dynamicEvents
->end();
747 for (;it
!= en
; ++it
)
749 #if WXWIN_COMPATIBILITY_EVENT_TYPES
750 wxEventTableEntry
*entry
= (wxEventTableEntry
*)*it
;
751 #else // !WXWIN_COMPATIBILITY_EVENT_TYPES
752 wxDynamicEventTableEntry
*entry
= (wxDynamicEventTableEntry
*)*it
;
753 #endif // WXWIN_COMPATIBILITY_EVENT_TYPES/!WXWIN_COMPATIBILITY_EVENT_TYPES
755 if (entry
->m_callbackUserData
)
756 delete entry
->m_callbackUserData
;
759 delete m_dynamicEvents
;
762 delete m_pendingEvents
;
765 # if !defined(__VISAGECPP__)
766 delete m_eventsLocker
;
769 // Remove us from wxPendingEvents if necessary.
770 if(wxPendingEventsLocker
)
771 wxENTER_CRIT_SECT(*wxPendingEventsLocker
);
772 if ( wxPendingEvents
) {
773 wxPendingEvents
->DeleteObject(this);
775 if(wxPendingEventsLocker
)
776 wxLEAVE_CRIT_SECT(*wxPendingEventsLocker
);
779 // we only delete object data, not untyped
780 if ( m_clientDataType
== wxClientData_Object
)
781 delete m_clientObject
;
786 bool wxEvtHandler::ProcessThreadEvent(wxEvent
& event
)
788 // check that we are really in a child thread
789 wxASSERT_MSG( !wxThread::IsMain(),
790 wxT("use ProcessEvent() in main thread") );
792 AddPendingEvent(event
);
797 #endif // wxUSE_THREADS
799 void wxEvtHandler::AddPendingEvent(wxEvent
& event
)
801 // 1) Add event to list of pending events of this event handler
803 wxEvent
*eventCopy
= event
.Clone();
805 // we must be able to copy the events here so the event class must
806 // implement Clone() properly instead of just providing a NULL stab for it
807 wxCHECK_RET( eventCopy
,
808 _T("events of this type aren't supposed to be posted") );
810 #if defined(__VISAGECPP__)
811 wxENTER_CRIT_SECT( m_eventsLocker
);
813 wxENTER_CRIT_SECT( *m_eventsLocker
);
816 if ( !m_pendingEvents
)
817 m_pendingEvents
= new wxList
;
819 m_pendingEvents
->Append(eventCopy
);
821 #if defined(__VISAGECPP__)
822 wxLEAVE_CRIT_SECT( m_eventsLocker
);
824 wxLEAVE_CRIT_SECT( *m_eventsLocker
);
827 // 2) Add this event handler to list of event handlers that
828 // have pending events.
830 wxENTER_CRIT_SECT(*wxPendingEventsLocker
);
832 if ( !wxPendingEvents
)
833 wxPendingEvents
= new wxList
;
834 wxPendingEvents
->Append(this);
836 wxLEAVE_CRIT_SECT(*wxPendingEventsLocker
);
838 // 3) Inform the system that new pending events are somwehere,
839 // and that these should be processed in idle time.
843 void wxEvtHandler::ProcessPendingEvents()
845 #if defined(__VISAGECPP__)
846 wxENTER_CRIT_SECT( m_eventsLocker
);
848 wxENTER_CRIT_SECT( *m_eventsLocker
);
851 wxList::compatibility_iterator node
= m_pendingEvents
->GetFirst();
854 wxEvent
*event
= (wxEvent
*)node
->GetData();
855 m_pendingEvents
->Erase(node
);
857 // In ProcessEvent, new events might get added and
858 // we can safely leave the crtical section here.
859 #if defined(__VISAGECPP__)
860 wxLEAVE_CRIT_SECT( m_eventsLocker
);
862 wxLEAVE_CRIT_SECT( *m_eventsLocker
);
864 ProcessEvent(*event
);
866 #if defined(__VISAGECPP__)
867 wxENTER_CRIT_SECT( m_eventsLocker
);
869 wxENTER_CRIT_SECT( *m_eventsLocker
);
872 node
= m_pendingEvents
->GetFirst();
875 #if defined(__VISAGECPP__)
876 wxLEAVE_CRIT_SECT( m_eventsLocker
);
878 wxLEAVE_CRIT_SECT( *m_eventsLocker
);
886 bool wxEvtHandler::TryParent(wxEvent
& event
)
888 if ( wxTheApp
&& (this != wxTheApp
) )
890 // Special case: don't pass wxEVT_IDLE to wxApp, since it'll always
891 // swallow it. wxEVT_IDLE is sent explicitly to wxApp so it will be
892 // processed appropriately via SearchEventTable.
893 if ( event
.GetEventType() != wxEVT_IDLE
)
895 if ( wxTheApp
->ProcessEvent(event
) )
903 bool wxEvtHandler::ProcessEvent(wxEvent
& event
)
905 // allow the application to hook into event processing
908 int rc
= wxTheApp
->FilterEvent(event
);
911 wxASSERT_MSG( rc
== 1 || rc
== 0,
912 _T("unexpected wxApp::FilterEvent return value") );
916 //else: proceed normally
919 // An event handler can be enabled or disabled
920 if ( GetEvtHandlerEnabled() )
922 // if we have a validator, it has higher priority than our own event
925 if ( TryValidator(event
) )
927 #endif // wxUSE_VALIDATORS
929 // Handle per-instance dynamic event tables first
930 if ( m_dynamicEvents
&& SearchDynamicEventTable(event
) )
933 // Then static per-class event tables (and search upwards through the
934 // inheritance hierarchy)
935 for ( const wxEventTable
*table
= GetEventTable();
937 table
= table
->baseTable
)
939 if ( SearchEventTable((wxEventTable
&)*table
, event
) )
944 // Try going down the event handler chain
945 if ( GetNextHandler() )
947 if ( GetNextHandler()->ProcessEvent(event
) )
951 // Finally propagate the event upwards the window chain and/or to the
952 // application object as necessary
953 return TryParent(event
);
956 bool wxEvtHandler::SearchEventTable(wxEventTable
& table
, wxEvent
& event
)
958 wxEventType eventType
= event
.GetEventType();
959 int eventId
= event
.GetId();
961 // BC++ doesn't like testing for m_fn without != 0
962 for ( int i
= 0; table
.entries
[i
].m_fn
!= 0; i
++ )
964 // the line using reference exposes a bug in gcc: although it _seems_
965 // to work, it leads to weird crashes later on during program
968 wxEventTableEntry entry
= table
.entries
[i
];
970 const wxEventTableEntry
& entry
= table
.entries
[i
];
973 // match only if the event type is the same and the id is either -1 in
974 // the event table (meaning "any") or the event id matches the id
975 // specified in the event table either exactly or by falling into
976 // range between first and last
977 if ( eventType
== entry
.m_eventType
)
979 int tableId1
= entry
.m_id
,
980 tableId2
= entry
.m_lastId
;
982 if ( (tableId1
== -1) ||
983 (tableId2
== -1 && eventId
== tableId1
) ||
985 (eventId
>= tableId1
&& eventId
<= tableId2
)) )
988 event
.m_callbackUserData
= entry
.m_callbackUserData
;
990 (this->*((wxEventFunction
) (entry
.m_fn
)))(event
);
992 return !event
.GetSkipped();
1000 void wxEvtHandler::Connect( int id
, int lastId
,
1002 wxObjectEventFunction func
,
1004 wxEvtHandler
* eventSink
)
1006 #if WXWIN_COMPATIBILITY_EVENT_TYPES
1007 wxEventTableEntry
*entry
= new wxEventTableEntry
;
1008 entry
->m_eventType
= eventType
;
1010 entry
->m_lastId
= lastId
;
1012 entry
->m_callbackUserData
= userData
;
1013 #else // !WXWIN_COMPATIBILITY_EVENT_TYPES
1014 wxDynamicEventTableEntry
*entry
=
1015 new wxDynamicEventTableEntry(eventType
, id
, lastId
, func
, userData
, eventSink
);
1016 #endif // WXWIN_COMPATIBILITY_EVENT_TYPES/!WXWIN_COMPATIBILITY_EVENT_TYPES
1018 if (!m_dynamicEvents
)
1019 m_dynamicEvents
= new wxList
;
1021 // Insert at the front of the list so most recent additions are found first
1022 m_dynamicEvents
->Insert( (wxObject
*) entry
);
1025 bool wxEvtHandler::Disconnect( int id
, int lastId
, wxEventType eventType
,
1026 wxObjectEventFunction func
,
1028 wxEvtHandler
* eventSink
)
1030 if (!m_dynamicEvents
)
1033 wxList::compatibility_iterator node
= m_dynamicEvents
->GetFirst();
1036 #if WXWIN_COMPATIBILITY_EVENT_TYPES
1037 wxEventTableEntry
*entry
= (wxEventTableEntry
*)node
->GetData();
1038 #else // !WXWIN_COMPATIBILITY_EVENT_TYPES
1039 wxDynamicEventTableEntry
*entry
= (wxDynamicEventTableEntry
*)node
->GetData();
1040 #endif // WXWIN_COMPATIBILITY_EVENT_TYPES/!WXWIN_COMPATIBILITY_EVENT_TYPES
1042 if ((entry
->m_id
== id
) &&
1043 ((entry
->m_lastId
== lastId
) || (lastId
== -1)) &&
1044 ((entry
->m_eventType
== eventType
) || (eventType
== wxEVT_NULL
)) &&
1045 ((entry
->m_fn
== func
) || (func
== (wxObjectEventFunction
)NULL
)) &&
1046 ((entry
->m_eventSink
== eventSink
) || (eventSink
== (wxEvtHandler
*)NULL
)) &&
1047 ((entry
->m_callbackUserData
== userData
) || (userData
== (wxObject
*)NULL
)))
1049 if (entry
->m_callbackUserData
)
1050 delete entry
->m_callbackUserData
;
1051 m_dynamicEvents
->Erase( node
);
1055 node
= node
->GetNext();
1060 bool wxEvtHandler::SearchDynamicEventTable( wxEvent
& event
)
1062 wxCHECK_MSG( m_dynamicEvents
, FALSE
,
1063 wxT("caller should check that we have dynamic events") );
1065 int commandId
= event
.GetId();
1067 wxList::compatibility_iterator node
= m_dynamicEvents
->GetFirst();
1070 #if WXWIN_COMPATIBILITY_EVENT_TYPES
1071 wxEventTableEntry
*entry
= (wxEventTableEntry
*)node
->GetData();
1072 #else // !WXWIN_COMPATIBILITY_EVENT_TYPES
1073 wxDynamicEventTableEntry
*entry
= (wxDynamicEventTableEntry
*)node
->GetData();
1074 #endif // WXWIN_COMPATIBILITY_EVENT_TYPES/!WXWIN_COMPATIBILITY_EVENT_TYPES
1078 // Match, if event spec says any id will do (id == -1)
1079 if ( (event
.GetEventType() == entry
->m_eventType
) &&
1080 (entry
->m_id
== -1 ||
1081 (entry
->m_lastId
== -1 && commandId
== entry
->m_id
) ||
1082 (entry
->m_lastId
!= -1 &&
1083 (commandId
>= entry
->m_id
&& commandId
<= entry
->m_lastId
))) )
1086 event
.m_callbackUserData
= entry
->m_callbackUserData
;
1088 #if !WXWIN_COMPATIBILITY_EVENT_TYPES
1089 if (entry
->m_eventSink
)
1090 ((entry
->m_eventSink
)->*((wxEventFunction
) (entry
->m_fn
)))(event
);
1093 (this->*((wxEventFunction
) (entry
->m_fn
)))(event
);
1095 if ( ! event
.GetSkipped() )
1099 node
= node
->GetNext();
1104 void wxEvtHandler::DoSetClientObject( wxClientData
*data
)
1106 wxASSERT_MSG( m_clientDataType
!= wxClientData_Void
,
1107 wxT("can't have both object and void client data") );
1109 if ( m_clientObject
)
1110 delete m_clientObject
;
1112 m_clientObject
= data
;
1113 m_clientDataType
= wxClientData_Object
;
1116 wxClientData
*wxEvtHandler::DoGetClientObject() const
1118 // it's not an error to call GetClientObject() on a window which doesn't
1119 // have client data at all - NULL will be returned
1120 wxASSERT_MSG( m_clientDataType
!= wxClientData_Void
,
1121 wxT("this window doesn't have object client data") );
1123 return m_clientObject
;
1126 void wxEvtHandler::DoSetClientData( void *data
)
1128 wxASSERT_MSG( m_clientDataType
!= wxClientData_Object
,
1129 wxT("can't have both object and void client data") );
1131 m_clientData
= data
;
1132 m_clientDataType
= wxClientData_Void
;
1135 void *wxEvtHandler::DoGetClientData() const
1137 // it's not an error to call GetClientData() on a window which doesn't have
1138 // client data at all - NULL will be returned
1139 wxASSERT_MSG( m_clientDataType
!= wxClientData_Object
,
1140 wxT("this window doesn't have void client data") );
1142 return m_clientData
;
1146 #if WXWIN_COMPATIBILITY
1147 bool wxEvtHandler::OnClose()
1149 if (GetNextHandler())
1150 return GetNextHandler()->OnClose();
1154 #endif // WXWIN_COMPATIBILITY
1156 #endif // wxUSE_BASE
1160 // Find a window with the focus, that is also a descendant of the given window.
1161 // This is used to determine the window to initially send commands to.
1162 wxWindow
* wxFindFocusDescendant(wxWindow
* ancestor
)
1164 // Process events starting with the window with the focus, if any.
1165 wxWindow
* focusWin
= wxWindow::FindFocus();
1166 wxWindow
* win
= focusWin
;
1168 // Check if this is a descendant of this frame.
1169 // If not, win will be set to NULL.
1172 if (win
== ancestor
)
1175 win
= win
->GetParent();
1177 if (win
== (wxWindow
*) NULL
)
1178 focusWin
= (wxWindow
*) NULL
;