1 /////////////////////////////////////////////////////////////////////////////
3 // Purpose: Event classes
4 // Author: Julian Smart
8 // Copyright: (c) Julian Smart and Markus Holzem
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"
49 // ----------------------------------------------------------------------------
51 // ----------------------------------------------------------------------------
53 IMPLEMENT_DYNAMIC_CLASS(wxEvtHandler
, wxObject
)
54 IMPLEMENT_ABSTRACT_CLASS(wxEvent
, wxObject
)
57 IMPLEMENT_DYNAMIC_CLASS(wxIdleEvent
, wxEvent
)
58 IMPLEMENT_DYNAMIC_CLASS(wxCommandEvent
, wxEvent
)
59 IMPLEMENT_DYNAMIC_CLASS(wxNotifyEvent
, wxCommandEvent
)
60 IMPLEMENT_DYNAMIC_CLASS(wxScrollEvent
, wxCommandEvent
)
61 IMPLEMENT_DYNAMIC_CLASS(wxScrollWinEvent
, wxEvent
)
62 IMPLEMENT_DYNAMIC_CLASS(wxMouseEvent
, wxEvent
)
63 IMPLEMENT_DYNAMIC_CLASS(wxKeyEvent
, wxEvent
)
64 IMPLEMENT_DYNAMIC_CLASS(wxSizeEvent
, wxEvent
)
65 IMPLEMENT_DYNAMIC_CLASS(wxPaintEvent
, wxEvent
)
66 IMPLEMENT_DYNAMIC_CLASS(wxNcPaintEvent
, wxEvent
)
67 IMPLEMENT_DYNAMIC_CLASS(wxEraseEvent
, wxEvent
)
68 IMPLEMENT_DYNAMIC_CLASS(wxMoveEvent
, wxEvent
)
69 IMPLEMENT_DYNAMIC_CLASS(wxFocusEvent
, wxEvent
)
70 IMPLEMENT_DYNAMIC_CLASS(wxChildFocusEvent
, wxCommandEvent
)
71 IMPLEMENT_DYNAMIC_CLASS(wxCloseEvent
, wxEvent
)
72 IMPLEMENT_DYNAMIC_CLASS(wxShowEvent
, wxEvent
)
73 IMPLEMENT_DYNAMIC_CLASS(wxMaximizeEvent
, wxEvent
)
74 IMPLEMENT_DYNAMIC_CLASS(wxIconizeEvent
, wxEvent
)
75 IMPLEMENT_DYNAMIC_CLASS(wxMenuEvent
, wxEvent
)
76 IMPLEMENT_DYNAMIC_CLASS(wxJoystickEvent
, wxEvent
)
77 IMPLEMENT_DYNAMIC_CLASS(wxDropFilesEvent
, wxEvent
)
78 IMPLEMENT_DYNAMIC_CLASS(wxActivateEvent
, wxEvent
)
79 IMPLEMENT_DYNAMIC_CLASS(wxInitDialogEvent
, wxEvent
)
80 IMPLEMENT_DYNAMIC_CLASS(wxSetCursorEvent
, wxEvent
)
81 IMPLEMENT_DYNAMIC_CLASS(wxSysColourChangedEvent
, wxEvent
)
82 IMPLEMENT_DYNAMIC_CLASS(wxDisplayChangedEvent
, wxEvent
)
83 IMPLEMENT_DYNAMIC_CLASS(wxUpdateUIEvent
, wxCommandEvent
)
84 IMPLEMENT_DYNAMIC_CLASS(wxNavigationKeyEvent
, wxCommandEvent
)
85 IMPLEMENT_DYNAMIC_CLASS(wxPaletteChangedEvent
, wxEvent
)
86 IMPLEMENT_DYNAMIC_CLASS(wxQueryNewPaletteEvent
, wxEvent
)
87 IMPLEMENT_DYNAMIC_CLASS(wxWindowCreateEvent
, wxEvent
)
88 IMPLEMENT_DYNAMIC_CLASS(wxWindowDestroyEvent
, wxEvent
)
89 IMPLEMENT_DYNAMIC_CLASS(wxHelpEvent
, wxCommandEvent
)
90 IMPLEMENT_DYNAMIC_CLASS(wxContextMenuEvent
, wxCommandEvent
)
93 const wxEventTable
*wxEvtHandler::GetEventTable() const
94 { return &wxEvtHandler::sm_eventTable
; }
96 const wxEventTable
wxEvtHandler::sm_eventTable
=
97 { (const wxEventTable
*)NULL
, &wxEvtHandler::sm_eventTableEntries
[0] };
99 const wxEventTableEntry
wxEvtHandler::sm_eventTableEntries
[] =
100 { DECLARE_EVENT_TABLE_ENTRY(wxEVT_NULL
, 0, 0, (wxObjectEventFunction
)NULL
, NULL
) };
102 // ----------------------------------------------------------------------------
104 // ----------------------------------------------------------------------------
106 // To put pending event handlers
107 wxList
*wxPendingEvents
= (wxList
*)NULL
;
110 // protects wxPendingEvents list
111 wxCriticalSection
*wxPendingEventsLocker
= (wxCriticalSection
*)NULL
;
114 #if !WXWIN_COMPATIBILITY_EVENT_TYPES
116 // common event types are defined here, other event types are defined by the
117 // components which use them
119 DEFINE_EVENT_TYPE(wxEVT_NULL
)
120 DEFINE_EVENT_TYPE(wxEVT_COMMAND_BUTTON_CLICKED
)
121 DEFINE_EVENT_TYPE(wxEVT_COMMAND_CHECKBOX_CLICKED
)
122 DEFINE_EVENT_TYPE(wxEVT_COMMAND_CHOICE_SELECTED
)
123 DEFINE_EVENT_TYPE(wxEVT_COMMAND_LISTBOX_SELECTED
)
124 DEFINE_EVENT_TYPE(wxEVT_COMMAND_LISTBOX_DOUBLECLICKED
)
125 DEFINE_EVENT_TYPE(wxEVT_COMMAND_CHECKLISTBOX_TOGGLED
)
126 DEFINE_EVENT_TYPE(wxEVT_COMMAND_MENU_SELECTED
)
127 DEFINE_EVENT_TYPE(wxEVT_COMMAND_SLIDER_UPDATED
)
128 DEFINE_EVENT_TYPE(wxEVT_COMMAND_RADIOBOX_SELECTED
)
129 DEFINE_EVENT_TYPE(wxEVT_COMMAND_RADIOBUTTON_SELECTED
)
130 DEFINE_EVENT_TYPE(wxEVT_COMMAND_SCROLLBAR_UPDATED
)
131 DEFINE_EVENT_TYPE(wxEVT_COMMAND_VLBOX_SELECTED
)
132 DEFINE_EVENT_TYPE(wxEVT_COMMAND_COMBOBOX_SELECTED
)
133 DEFINE_EVENT_TYPE(wxEVT_COMMAND_TOOL_RCLICKED
)
134 DEFINE_EVENT_TYPE(wxEVT_COMMAND_TOOL_ENTER
)
135 DEFINE_EVENT_TYPE(wxEVT_COMMAND_SPINCTRL_UPDATED
)
137 // Sockets and timers send events, too
138 DEFINE_EVENT_TYPE(wxEVT_SOCKET
)
139 DEFINE_EVENT_TYPE(wxEVT_TIMER
)
142 DEFINE_EVENT_TYPE(wxEVT_LEFT_DOWN
)
143 DEFINE_EVENT_TYPE(wxEVT_LEFT_UP
)
144 DEFINE_EVENT_TYPE(wxEVT_MIDDLE_DOWN
)
145 DEFINE_EVENT_TYPE(wxEVT_MIDDLE_UP
)
146 DEFINE_EVENT_TYPE(wxEVT_RIGHT_DOWN
)
147 DEFINE_EVENT_TYPE(wxEVT_RIGHT_UP
)
148 DEFINE_EVENT_TYPE(wxEVT_MOTION
)
149 DEFINE_EVENT_TYPE(wxEVT_ENTER_WINDOW
)
150 DEFINE_EVENT_TYPE(wxEVT_LEAVE_WINDOW
)
151 DEFINE_EVENT_TYPE(wxEVT_LEFT_DCLICK
)
152 DEFINE_EVENT_TYPE(wxEVT_MIDDLE_DCLICK
)
153 DEFINE_EVENT_TYPE(wxEVT_RIGHT_DCLICK
)
154 DEFINE_EVENT_TYPE(wxEVT_SET_FOCUS
)
155 DEFINE_EVENT_TYPE(wxEVT_KILL_FOCUS
)
156 DEFINE_EVENT_TYPE(wxEVT_CHILD_FOCUS
)
157 DEFINE_EVENT_TYPE(wxEVT_MOUSEWHEEL
)
159 // Non-client mouse events
160 DEFINE_EVENT_TYPE(wxEVT_NC_LEFT_DOWN
)
161 DEFINE_EVENT_TYPE(wxEVT_NC_LEFT_UP
)
162 DEFINE_EVENT_TYPE(wxEVT_NC_MIDDLE_DOWN
)
163 DEFINE_EVENT_TYPE(wxEVT_NC_MIDDLE_UP
)
164 DEFINE_EVENT_TYPE(wxEVT_NC_RIGHT_DOWN
)
165 DEFINE_EVENT_TYPE(wxEVT_NC_RIGHT_UP
)
166 DEFINE_EVENT_TYPE(wxEVT_NC_MOTION
)
167 DEFINE_EVENT_TYPE(wxEVT_NC_ENTER_WINDOW
)
168 DEFINE_EVENT_TYPE(wxEVT_NC_LEAVE_WINDOW
)
169 DEFINE_EVENT_TYPE(wxEVT_NC_LEFT_DCLICK
)
170 DEFINE_EVENT_TYPE(wxEVT_NC_MIDDLE_DCLICK
)
171 DEFINE_EVENT_TYPE(wxEVT_NC_RIGHT_DCLICK
)
173 // Character input event type
174 DEFINE_EVENT_TYPE(wxEVT_CHAR
)
175 DEFINE_EVENT_TYPE(wxEVT_CHAR_HOOK
)
176 DEFINE_EVENT_TYPE(wxEVT_NAVIGATION_KEY
)
177 DEFINE_EVENT_TYPE(wxEVT_KEY_DOWN
)
178 DEFINE_EVENT_TYPE(wxEVT_KEY_UP
)
181 DEFINE_EVENT_TYPE(wxEVT_SET_CURSOR
)
183 // wxScrollbar and wxSlider event identifiers
184 DEFINE_EVENT_TYPE(wxEVT_SCROLL_TOP
)
185 DEFINE_EVENT_TYPE(wxEVT_SCROLL_BOTTOM
)
186 DEFINE_EVENT_TYPE(wxEVT_SCROLL_LINEUP
)
187 DEFINE_EVENT_TYPE(wxEVT_SCROLL_LINEDOWN
)
188 DEFINE_EVENT_TYPE(wxEVT_SCROLL_PAGEUP
)
189 DEFINE_EVENT_TYPE(wxEVT_SCROLL_PAGEDOWN
)
190 DEFINE_EVENT_TYPE(wxEVT_SCROLL_THUMBTRACK
)
191 DEFINE_EVENT_TYPE(wxEVT_SCROLL_THUMBRELEASE
)
193 // Scroll events from wxWindow
194 DEFINE_EVENT_TYPE(wxEVT_SCROLLWIN_TOP
)
195 DEFINE_EVENT_TYPE(wxEVT_SCROLLWIN_BOTTOM
)
196 DEFINE_EVENT_TYPE(wxEVT_SCROLLWIN_LINEUP
)
197 DEFINE_EVENT_TYPE(wxEVT_SCROLLWIN_LINEDOWN
)
198 DEFINE_EVENT_TYPE(wxEVT_SCROLLWIN_PAGEUP
)
199 DEFINE_EVENT_TYPE(wxEVT_SCROLLWIN_PAGEDOWN
)
200 DEFINE_EVENT_TYPE(wxEVT_SCROLLWIN_THUMBTRACK
)
201 DEFINE_EVENT_TYPE(wxEVT_SCROLLWIN_THUMBRELEASE
)
204 DEFINE_EVENT_TYPE(wxEVT_SIZE
)
205 DEFINE_EVENT_TYPE(wxEVT_MOVE
)
206 DEFINE_EVENT_TYPE(wxEVT_CLOSE_WINDOW
)
207 DEFINE_EVENT_TYPE(wxEVT_END_SESSION
)
208 DEFINE_EVENT_TYPE(wxEVT_QUERY_END_SESSION
)
209 DEFINE_EVENT_TYPE(wxEVT_ACTIVATE_APP
)
210 DEFINE_EVENT_TYPE(wxEVT_POWER
)
211 DEFINE_EVENT_TYPE(wxEVT_ACTIVATE
)
212 DEFINE_EVENT_TYPE(wxEVT_CREATE
)
213 DEFINE_EVENT_TYPE(wxEVT_DESTROY
)
214 DEFINE_EVENT_TYPE(wxEVT_SHOW
)
215 DEFINE_EVENT_TYPE(wxEVT_ICONIZE
)
216 DEFINE_EVENT_TYPE(wxEVT_MAXIMIZE
)
217 DEFINE_EVENT_TYPE(wxEVT_MOUSE_CAPTURE_CHANGED
)
218 DEFINE_EVENT_TYPE(wxEVT_PAINT
)
219 DEFINE_EVENT_TYPE(wxEVT_ERASE_BACKGROUND
)
220 DEFINE_EVENT_TYPE(wxEVT_NC_PAINT
)
221 DEFINE_EVENT_TYPE(wxEVT_PAINT_ICON
)
222 DEFINE_EVENT_TYPE(wxEVT_MENU_OPEN
)
223 DEFINE_EVENT_TYPE(wxEVT_MENU_CLOSE
)
224 DEFINE_EVENT_TYPE(wxEVT_MENU_HIGHLIGHT
)
225 DEFINE_EVENT_TYPE(wxEVT_CONTEXT_MENU
)
226 DEFINE_EVENT_TYPE(wxEVT_SYS_COLOUR_CHANGED
)
227 DEFINE_EVENT_TYPE(wxEVT_DISPLAY_CHANGED
)
228 DEFINE_EVENT_TYPE(wxEVT_SETTING_CHANGED
)
229 DEFINE_EVENT_TYPE(wxEVT_QUERY_NEW_PALETTE
)
230 DEFINE_EVENT_TYPE(wxEVT_PALETTE_CHANGED
)
231 DEFINE_EVENT_TYPE(wxEVT_JOY_BUTTON_DOWN
)
232 DEFINE_EVENT_TYPE(wxEVT_JOY_BUTTON_UP
)
233 DEFINE_EVENT_TYPE(wxEVT_JOY_MOVE
)
234 DEFINE_EVENT_TYPE(wxEVT_JOY_ZMOVE
)
235 DEFINE_EVENT_TYPE(wxEVT_DROP_FILES
)
236 DEFINE_EVENT_TYPE(wxEVT_DRAW_ITEM
)
237 DEFINE_EVENT_TYPE(wxEVT_MEASURE_ITEM
)
238 DEFINE_EVENT_TYPE(wxEVT_COMPARE_ITEM
)
239 DEFINE_EVENT_TYPE(wxEVT_INIT_DIALOG
)
240 DEFINE_EVENT_TYPE(wxEVT_IDLE
)
241 DEFINE_EVENT_TYPE(wxEVT_UPDATE_UI
)
243 // Generic command events
244 // Note: a click is a higher-level event than button down/up
245 DEFINE_EVENT_TYPE(wxEVT_COMMAND_LEFT_CLICK
)
246 DEFINE_EVENT_TYPE(wxEVT_COMMAND_LEFT_DCLICK
)
247 DEFINE_EVENT_TYPE(wxEVT_COMMAND_RIGHT_CLICK
)
248 DEFINE_EVENT_TYPE(wxEVT_COMMAND_RIGHT_DCLICK
)
249 DEFINE_EVENT_TYPE(wxEVT_COMMAND_SET_FOCUS
)
250 DEFINE_EVENT_TYPE(wxEVT_COMMAND_KILL_FOCUS
)
251 DEFINE_EVENT_TYPE(wxEVT_COMMAND_ENTER
)
254 DEFINE_EVENT_TYPE(wxEVT_HELP
)
255 DEFINE_EVENT_TYPE(wxEVT_DETAILED_HELP
)
257 #endif // !WXWIN_COMPATIBILITY_EVENT_TYPES
259 // ============================================================================
261 // ============================================================================
263 // ----------------------------------------------------------------------------
264 // event initialization
265 // ----------------------------------------------------------------------------
270 static int s_lastUsedEventType
= wxEVT_FIRST
;
272 #if WXWIN_COMPATIBILITY_2
273 // check that we don't overlap with the user-defined types: if it does
274 // happen, the best solution is probably to update the existing code to
275 // use wxNewEventType() instead of wxEVT_USER_FIRST
277 // due to the uncertainty
278 wxASSERT_MSG( s_lastUsedEventType
< wxEVT_USER_FIRST
- 1,
279 _T("possible event type conflict") );
280 #endif // WXWIN_COMPATIBILITY_2
282 return s_lastUsedEventType
++;
285 // ----------------------------------------------------------------------------
287 // ----------------------------------------------------------------------------
290 * General wxWindows events, covering
291 * all interesting things that might happen (button clicking, resizing,
292 * setting text in widgets, etc.).
294 * For each completely new event type, derive a new event class.
298 wxEvent::wxEvent(int theId
, wxEventType commandType
)
300 m_eventType
= commandType
;
301 m_eventObject
= (wxObject
*) NULL
;
305 m_callbackUserData
= (wxObject
*) NULL
;
306 m_isCommandEvent
= FALSE
;
309 wxEvent::wxEvent(const wxEvent
&src
)
311 m_eventType
= src
.m_eventType
;
312 m_eventObject
= src
.m_eventObject
;
313 m_timeStamp
= src
.m_timeStamp
;
315 m_skipped
= src
.m_skipped
;
316 m_callbackUserData
= src
.m_callbackUserData
;
317 m_isCommandEvent
= src
.m_isCommandEvent
;
327 wxCommandEvent::wxCommandEvent(wxEventType commandType
, int theId
)
328 : wxEvent( theId
, commandType
)
330 m_clientData
= (char *) NULL
;
331 m_clientObject
= (wxClientData
*) NULL
;
334 m_commandString
= wxEmptyString
;
335 m_isCommandEvent
= TRUE
;
342 wxScrollEvent::wxScrollEvent(wxEventType commandType
,
346 : wxCommandEvent(commandType
, id
)
348 m_extraLong
= orient
;
356 wxScrollWinEvent::wxScrollWinEvent(wxEventType commandType
,
360 m_eventType
= commandType
;
361 m_extraLong
= orient
;
370 wxMouseEvent::wxMouseEvent(wxEventType commandType
)
372 m_eventType
= commandType
;
375 m_controlDown
= FALSE
;
379 m_middleDown
= FALSE
;
384 m_linesPerAction
= 0;
387 // True if was a button dclick event (1 = left, 2 = middle, 3 = right)
388 // or any button dclick event (but = -1)
389 bool wxMouseEvent::ButtonDClick(int but
) const
394 return (LeftDClick() || MiddleDClick() || RightDClick());
398 return MiddleDClick();
400 return RightDClick();
402 wxFAIL_MSG(wxT("invalid parameter in wxMouseEvent::ButtonDClick"));
408 // True if was a button down event (1 = left, 2 = middle, 3 = right)
409 // or any button down event (but = -1)
410 bool wxMouseEvent::ButtonDown(int but
) const
415 return (LeftDown() || MiddleDown() || RightDown());
423 wxFAIL_MSG(wxT("invalid parameter in wxMouseEvent::ButtonDown"));
429 // True if was a button up event (1 = left, 2 = middle, 3 = right)
430 // or any button up event (but = -1)
431 bool wxMouseEvent::ButtonUp(int but
) const
436 return (LeftUp() || MiddleUp() || RightUp());
444 wxFAIL_MSG(wxT("invalid parameter in wxMouseEvent::ButtonUp"));
450 // True if the given button is currently changing state
451 bool wxMouseEvent::Button(int but
) const
456 return (ButtonUp(-1) || ButtonDown(-1) || ButtonDClick(-1));
458 return (LeftDown() || LeftUp() || LeftDClick());
460 return (MiddleDown() || MiddleUp() || MiddleDClick());
462 return (RightDown() || RightUp() || RightDClick());
464 wxFAIL_MSG(wxT("invalid parameter in wxMouseEvent::Button"));
470 bool wxMouseEvent::ButtonIsDown(int but
) const
475 return (LeftIsDown() || MiddleIsDown() || RightIsDown());
479 return MiddleIsDown();
481 return RightIsDown();
483 wxFAIL_MSG(wxT("invalid parameter in wxMouseEvent::ButtonIsDown"));
489 int wxMouseEvent::GetButton() const
491 for ( int i
= 1; i
<= 3; i
++ )
502 // Find the logical position of the event given the DC
503 wxPoint
wxMouseEvent::GetLogicalPosition(const wxDC
& dc
) const
505 wxPoint
pt(dc
.DeviceToLogicalX(m_x
), dc
.DeviceToLogicalY(m_y
));
515 wxKeyEvent::wxKeyEvent(wxEventType type
)
519 m_controlDown
= FALSE
;
527 wxWindowCreateEvent::wxWindowCreateEvent(wxWindow
*win
)
529 SetEventType(wxEVT_CREATE
);
533 wxWindowDestroyEvent::wxWindowDestroyEvent(wxWindow
*win
)
535 SetEventType(wxEVT_DESTROY
);
539 wxChildFocusEvent::wxChildFocusEvent(wxWindow
*win
)
540 : wxCommandEvent(wxEVT_CHILD_FOCUS
)
547 // ----------------------------------------------------------------------------
549 // ----------------------------------------------------------------------------
555 wxEvtHandler::wxEvtHandler()
557 m_nextHandler
= (wxEvtHandler
*) NULL
;
558 m_previousHandler
= (wxEvtHandler
*) NULL
;
560 m_dynamicEvents
= (wxList
*) NULL
;
562 m_pendingEvents
= (wxList
*) NULL
;
564 # if !defined(__VISAGECPP__)
565 m_eventsLocker
= new wxCriticalSection
;
568 // no client data (yet)
570 m_clientDataType
= wxClientData_None
;
573 wxEvtHandler::~wxEvtHandler()
575 // Takes itself out of the list of handlers
576 if (m_previousHandler
)
577 m_previousHandler
->m_nextHandler
= m_nextHandler
;
580 m_nextHandler
->m_previousHandler
= m_previousHandler
;
584 wxNode
*node
= m_dynamicEvents
->First();
587 #if WXWIN_COMPATIBILITY_EVENT_TYPES
588 wxEventTableEntry
*entry
= (wxEventTableEntry
*)node
->Data();
589 #else // !WXWIN_COMPATIBILITY_EVENT_TYPES
590 wxDynamicEventTableEntry
*entry
= (wxDynamicEventTableEntry
*)node
->Data();
591 #endif // WXWIN_COMPATIBILITY_EVENT_TYPES/!WXWIN_COMPATIBILITY_EVENT_TYPES
593 if (entry
->m_callbackUserData
)
594 delete entry
->m_callbackUserData
;
598 delete m_dynamicEvents
;
601 delete m_pendingEvents
;
604 # if !defined(__VISAGECPP__)
605 delete m_eventsLocker
;
609 // we only delete object data, not untyped
610 if ( m_clientDataType
== wxClientData_Object
)
611 delete m_clientObject
;
616 bool wxEvtHandler::ProcessThreadEvent(wxEvent
& event
)
618 // check that we are really in a child thread
619 wxASSERT_MSG( !wxThread::IsMain(),
620 wxT("use ProcessEvent() in main thread") );
622 AddPendingEvent(event
);
627 #endif // wxUSE_THREADS
629 void wxEvtHandler::AddPendingEvent(wxEvent
& event
)
631 // 1) Add event to list of pending events of this event handler
633 wxEvent
*eventCopy
= event
.Clone();
635 // we must be able to copy the events here so the event class must
636 // implement Clone() properly instead of just providing a NULL stab for it
637 wxCHECK_RET( eventCopy
,
638 _T("events of this type aren't supposed to be posted") );
640 #if defined(__VISAGECPP__)
641 wxENTER_CRIT_SECT( m_eventsLocker
);
643 wxENTER_CRIT_SECT( *m_eventsLocker
);
646 if ( !m_pendingEvents
)
647 m_pendingEvents
= new wxList
;
649 m_pendingEvents
->Append(eventCopy
);
651 #if defined(__VISAGECPP__)
652 wxLEAVE_CRIT_SECT( m_eventsLocker
);
654 wxLEAVE_CRIT_SECT( *m_eventsLocker
);
657 // 2) Add this event handler to list of event handlers that
658 // have pending events.
660 wxENTER_CRIT_SECT(*wxPendingEventsLocker
);
662 if ( !wxPendingEvents
)
663 wxPendingEvents
= new wxList
;
664 wxPendingEvents
->Append(this);
666 wxLEAVE_CRIT_SECT(*wxPendingEventsLocker
);
668 // 3) Inform the system that new pending events are somwehere,
669 // and that these should be processed in idle time.
673 void wxEvtHandler::ProcessPendingEvents()
675 #if defined(__VISAGECPP__)
676 wxENTER_CRIT_SECT( m_eventsLocker
);
678 wxENTER_CRIT_SECT( *m_eventsLocker
);
681 wxNode
*node
= m_pendingEvents
->First();
684 wxEvent
*event
= (wxEvent
*)node
->Data();
687 // In ProcessEvent, new events might get added and
688 // we can safely leave the crtical section here.
689 #if defined(__VISAGECPP__)
690 wxLEAVE_CRIT_SECT( m_eventsLocker
);
692 wxLEAVE_CRIT_SECT( *m_eventsLocker
);
694 ProcessEvent(*event
);
696 #if defined(__VISAGECPP__)
697 wxENTER_CRIT_SECT( m_eventsLocker
);
699 wxENTER_CRIT_SECT( *m_eventsLocker
);
702 node
= m_pendingEvents
->First();
705 #if defined(__VISAGECPP__)
706 wxLEAVE_CRIT_SECT( m_eventsLocker
);
708 wxLEAVE_CRIT_SECT( *m_eventsLocker
);
716 bool wxEvtHandler::ProcessEvent(wxEvent
& event
)
720 // We have to use the actual window or processing events from
721 // wxWindowNative destructor won't work (we don't see the wxWindow class)
723 // check that our flag corresponds to reality
724 wxClassInfo
* info
= NULL
;
725 #ifdef __WXUNIVERSAL__
726 # if defined(__WXMSW__)
727 info
= CLASSINFO(wxWindowMSW
);
728 # elif defined(__WXGTK__)
729 info
= CLASSINFO(wxWindowGTK
);
730 # elif defined(__WXX11__)
731 info
= CLASSINFO(wxWindowX11
);
732 # elif defined(__WXMGL__)
733 info
= CLASSINFO(wxWindowMGL
);
734 # elif defined(__WXPM__)
735 info
= CLASSINFO(wxWindowOS2
);
736 # elif defined(__WXMAC__)
737 info
= CLASSINFO(wxWindowMac
);
738 # elif defined(__WXMOTIF__)
739 info
= CLASSINFO(wxWindowMotif
);
742 info
= CLASSINFO(wxWindow
);
745 wxASSERT_MSG( m_isWindow
== IsKindOf(info
),
746 wxString(GetClassInfo()->GetClassName()) + _T(" should [not] be a window but it is [not]") );
751 // An event handler can be enabled or disabled
752 if ( GetEvtHandlerEnabled() )
757 What is this? When using GUI threads, a non main
758 threads can send an event and process it itself.
759 This breaks GTK's GUI threads, so please explain.
762 // Check whether we are in a child thread.
763 if ( !wxThread::IsMain() )
764 return ProcessThreadEvent(event
);
767 // Handle per-instance dynamic event tables first
768 if ( m_dynamicEvents
&& SearchDynamicEventTable(event
) )
771 // Then static per-class event tables
772 const wxEventTable
*table
= GetEventTable();
774 #if wxUSE_GUI && wxUSE_VALIDATORS
775 // Try the associated validator first, if this is a window.
776 // Problem: if the event handler of the window has been replaced,
777 // this wxEvtHandler may no longer be a window.
778 // Therefore validators won't be processed if the handler
779 // has been replaced with SetEventHandler.
780 // THIS CAN BE CURED if PushEventHandler is used instead of
781 // SetEventHandler, and then processing will be passed down the
782 // chain of event handlers.
785 wxWindow
*win
= (wxWindow
*)this;
787 // Can only use the validator of the window which
788 // is receiving the event
789 if ( win
== event
.GetEventObject() )
791 wxValidator
*validator
= win
->GetValidator();
792 if ( validator
&& validator
->ProcessEvent(event
) )
800 // Search upwards through the inheritance hierarchy
803 if ( SearchEventTable((wxEventTable
&)*table
, event
) )
805 table
= table
->baseTable
;
809 // Try going down the event handler chain
810 if ( GetNextHandler() )
812 if ( GetNextHandler()->ProcessEvent(event
) )
817 // Carry on up the parent-child hierarchy, but only if event is a command
818 // event: it wouldn't make sense for a parent to receive a child's size
819 // event, for example
820 if ( m_isWindow
&& event
.IsCommandEvent() )
822 wxWindow
*win
= (wxWindow
*)this;
824 // honour the requests to stop propagation at this window: this is
825 // used by the dialogs, for example, to prevent processing the events
826 // from the dialog controls in the parent frame which rarely, if ever,
828 if ( !(win
->GetExtraStyle() & wxWS_EX_BLOCK_EVENTS
) )
830 wxWindow
*parent
= win
->GetParent();
831 if ( parent
&& !parent
->IsBeingDeleted() )
832 return parent
->GetEventHandler()->ProcessEvent(event
);
837 // Last try - application object.
838 if ( wxTheApp
&& (this != wxTheApp
) )
840 // Special case: don't pass wxEVT_IDLE to wxApp, since it'll always
841 // swallow it. wxEVT_IDLE is sent explicitly to wxApp so it will be
842 // processed appropriately via SearchEventTable.
843 if ( event
.GetEventType() != wxEVT_IDLE
)
845 if ( wxTheApp
->ProcessEvent(event
) )
853 bool wxEvtHandler::SearchEventTable(wxEventTable
& table
, wxEvent
& event
)
855 wxEventType eventType
= event
.GetEventType();
856 int eventId
= event
.GetId();
858 // BC++ doesn't like testing for m_fn without != 0
859 for ( int i
= 0; table
.entries
[i
].m_fn
!= 0; i
++ )
861 // the line using reference exposes a bug in gcc: although it _seems_
862 // to work, it leads to weird crashes later on during program
865 wxEventTableEntry entry
= table
.entries
[i
];
867 const wxEventTableEntry
& entry
= table
.entries
[i
];
870 // match only if the event type is the same and the id is either -1 in
871 // the event table (meaning "any") or the event id matches the id
872 // specified in the event table either exactly or by falling into
873 // range between first and last
874 if ( eventType
== entry
.m_eventType
)
876 int tableId1
= entry
.m_id
,
877 tableId2
= entry
.m_lastId
;
879 if ( (tableId1
== -1) ||
880 (tableId2
== -1 && eventId
== tableId1
) ||
882 (eventId
>= tableId1
&& eventId
<= tableId2
)) )
885 event
.m_callbackUserData
= entry
.m_callbackUserData
;
887 (this->*((wxEventFunction
) (entry
.m_fn
)))(event
);
889 return !event
.GetSkipped();
897 void wxEvtHandler::Connect( int id
, int lastId
,
899 wxObjectEventFunction func
,
902 #if WXWIN_COMPATIBILITY_EVENT_TYPES
903 wxEventTableEntry
*entry
= new wxEventTableEntry
;
904 entry
->m_eventType
= eventType
;
906 entry
->m_lastId
= lastId
;
908 entry
->m_callbackUserData
= userData
;
909 #else // !WXWIN_COMPATIBILITY_EVENT_TYPES
910 wxDynamicEventTableEntry
*entry
=
911 new wxDynamicEventTableEntry(eventType
, id
, lastId
, func
, userData
);
912 #endif // WXWIN_COMPATIBILITY_EVENT_TYPES/!WXWIN_COMPATIBILITY_EVENT_TYPES
914 if (!m_dynamicEvents
)
915 m_dynamicEvents
= new wxList
;
917 m_dynamicEvents
->Append( (wxObject
*) entry
);
920 bool wxEvtHandler::Disconnect( int id
, int lastId
, wxEventType eventType
,
921 wxObjectEventFunction func
,
924 if (!m_dynamicEvents
)
927 wxNode
*node
= m_dynamicEvents
->First();
930 #if WXWIN_COMPATIBILITY_EVENT_TYPES
931 wxEventTableEntry
*entry
= (wxEventTableEntry
*)node
->Data();
932 #else // !WXWIN_COMPATIBILITY_EVENT_TYPES
933 wxDynamicEventTableEntry
*entry
= (wxDynamicEventTableEntry
*)node
->Data();
934 #endif // WXWIN_COMPATIBILITY_EVENT_TYPES/!WXWIN_COMPATIBILITY_EVENT_TYPES
936 if ((entry
->m_id
== id
) &&
937 ((entry
->m_lastId
== lastId
) || (lastId
== -1)) &&
938 ((entry
->m_eventType
== eventType
) || (eventType
== wxEVT_NULL
)) &&
939 ((entry
->m_fn
== func
) || (func
== (wxObjectEventFunction
)NULL
)) &&
940 ((entry
->m_callbackUserData
== userData
) || (userData
== (wxObject
*)NULL
)))
942 if (entry
->m_callbackUserData
)
943 delete entry
->m_callbackUserData
;
944 m_dynamicEvents
->DeleteNode( node
);
953 bool wxEvtHandler::SearchDynamicEventTable( wxEvent
& event
)
955 wxCHECK_MSG( m_dynamicEvents
, FALSE
,
956 wxT("caller should check that we have dynamic events") );
958 int commandId
= event
.GetId();
960 wxNode
*node
= m_dynamicEvents
->First();
963 #if WXWIN_COMPATIBILITY_EVENT_TYPES
964 wxEventTableEntry
*entry
= (wxEventTableEntry
*)node
->Data();
965 #else // !WXWIN_COMPATIBILITY_EVENT_TYPES
966 wxDynamicEventTableEntry
*entry
= (wxDynamicEventTableEntry
*)node
->Data();
967 #endif // WXWIN_COMPATIBILITY_EVENT_TYPES/!WXWIN_COMPATIBILITY_EVENT_TYPES
971 // Match, if event spec says any id will do (id == -1)
972 if ( (event
.GetEventType() == entry
->m_eventType
) &&
973 (entry
->m_id
== -1 ||
974 (entry
->m_lastId
== -1 && commandId
== entry
->m_id
) ||
975 (entry
->m_lastId
!= -1 &&
976 (commandId
>= entry
->m_id
&& commandId
<= entry
->m_lastId
))) )
979 event
.m_callbackUserData
= entry
->m_callbackUserData
;
981 (this->*((wxEventFunction
) (entry
->m_fn
)))(event
);
983 if (event
.GetSkipped())
994 void wxEvtHandler::DoSetClientObject( wxClientData
*data
)
996 wxASSERT_MSG( m_clientDataType
!= wxClientData_Void
,
997 wxT("can't have both object and void client data") );
999 if ( m_clientObject
)
1000 delete m_clientObject
;
1002 m_clientObject
= data
;
1003 m_clientDataType
= wxClientData_Object
;
1006 wxClientData
*wxEvtHandler::DoGetClientObject() const
1008 // it's not an error to call GetClientObject() on a window which doesn't
1009 // have client data at all - NULL will be returned
1010 wxASSERT_MSG( m_clientDataType
!= wxClientData_Void
,
1011 wxT("this window doesn't have object client data") );
1013 return m_clientObject
;
1016 void wxEvtHandler::DoSetClientData( void *data
)
1018 wxASSERT_MSG( m_clientDataType
!= wxClientData_Object
,
1019 wxT("can't have both object and void client data") );
1021 m_clientData
= data
;
1022 m_clientDataType
= wxClientData_Void
;
1025 void *wxEvtHandler::DoGetClientData() const
1027 // it's not an error to call GetClientData() on a window which doesn't have
1028 // client data at all - NULL will be returned
1029 wxASSERT_MSG( m_clientDataType
!= wxClientData_Object
,
1030 wxT("this window doesn't have void client data") );
1032 return m_clientData
;
1036 #if WXWIN_COMPATIBILITY
1037 bool wxEvtHandler::OnClose()
1039 if (GetNextHandler())
1040 return GetNextHandler()->OnClose();
1044 #endif // WXWIN_COMPATIBILITY
1048 // Find a window with the focus, that is also a descendant of the given window.
1049 // This is used to determine the window to initially send commands to.
1050 wxWindow
* wxFindFocusDescendant(wxWindow
* ancestor
)
1052 // Process events starting with the window with the focus, if any.
1053 wxWindow
* focusWin
= wxWindow::FindFocus();
1054 wxWindow
* win
= focusWin
;
1056 // Check if this is a descendant of this frame.
1057 // If not, win will be set to NULL.
1060 if (win
== ancestor
)
1063 win
= win
->GetParent();
1065 if (win
== (wxWindow
*) NULL
)
1066 focusWin
= (wxWindow
*) NULL
;