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
)
55 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(wxEraseEvent
, wxEvent
)
67 IMPLEMENT_DYNAMIC_CLASS(wxMoveEvent
, wxEvent
)
68 IMPLEMENT_DYNAMIC_CLASS(wxFocusEvent
, wxEvent
)
69 IMPLEMENT_DYNAMIC_CLASS(wxCloseEvent
, wxEvent
)
70 IMPLEMENT_DYNAMIC_CLASS(wxShowEvent
, wxEvent
)
71 IMPLEMENT_DYNAMIC_CLASS(wxMaximizeEvent
, wxEvent
)
72 IMPLEMENT_DYNAMIC_CLASS(wxIconizeEvent
, wxEvent
)
73 IMPLEMENT_DYNAMIC_CLASS(wxMenuEvent
, wxEvent
)
74 IMPLEMENT_DYNAMIC_CLASS(wxJoystickEvent
, wxEvent
)
75 IMPLEMENT_DYNAMIC_CLASS(wxDropFilesEvent
, wxEvent
)
76 IMPLEMENT_DYNAMIC_CLASS(wxActivateEvent
, wxEvent
)
77 IMPLEMENT_DYNAMIC_CLASS(wxInitDialogEvent
, wxEvent
)
78 IMPLEMENT_DYNAMIC_CLASS(wxSysColourChangedEvent
, wxEvent
)
79 IMPLEMENT_DYNAMIC_CLASS(wxUpdateUIEvent
, wxCommandEvent
)
80 IMPLEMENT_DYNAMIC_CLASS(wxNavigationKeyEvent
, wxCommandEvent
)
81 IMPLEMENT_DYNAMIC_CLASS(wxPaletteChangedEvent
, wxEvent
)
82 IMPLEMENT_DYNAMIC_CLASS(wxQueryNewPaletteEvent
, wxEvent
)
83 IMPLEMENT_DYNAMIC_CLASS(wxWindowCreateEvent
, wxEvent
)
84 IMPLEMENT_DYNAMIC_CLASS(wxWindowDestroyEvent
, wxEvent
)
87 const wxEventTable
*wxEvtHandler::GetEventTable() const
88 { return &wxEvtHandler::sm_eventTable
; }
90 const wxEventTable
wxEvtHandler::sm_eventTable
=
91 { (const wxEventTable
*)NULL
, &wxEvtHandler::sm_eventTableEntries
[0] };
93 const wxEventTableEntry
wxEvtHandler::sm_eventTableEntries
[] =
94 { { 0, 0, 0, (wxObjectEventFunction
) NULL
, (wxObject
*) NULL
} };
97 // ----------------------------------------------------------------------------
99 // ----------------------------------------------------------------------------
101 // To put pending event handlers
102 wxList
*wxPendingEvents
= (wxList
*)NULL
;
105 // protects wxPendingEvents list
106 wxCriticalSection
*wxPendingEventsLocker
= (wxCriticalSection
*)NULL
;
109 // ============================================================================
111 // ============================================================================
113 // ----------------------------------------------------------------------------
115 // ----------------------------------------------------------------------------
118 * General wxWindows events, covering
119 * all interesting things that might happen (button clicking, resizing,
120 * setting text in widgets, etc.).
122 * For each completely new event type, derive a new event class.
126 wxEvent::wxEvent(int theId
)
128 m_eventType
= wxEVT_NULL
;
129 m_eventObject
= (wxObject
*) NULL
;
133 m_callbackUserData
= (wxObject
*) NULL
;
134 m_isCommandEvent
= FALSE
;
137 void wxEvent::CopyObject(wxObject
& object_dest
) const
139 wxEvent
*obj
= (wxEvent
*)&object_dest
;
140 wxObject::CopyObject(object_dest
);
142 obj
->m_eventType
= m_eventType
;
143 obj
->m_eventObject
= m_eventObject
;
144 obj
->m_timeStamp
= m_timeStamp
;
146 obj
->m_skipped
= m_skipped
;
147 obj
->m_callbackUserData
= m_callbackUserData
;
148 obj
->m_isCommandEvent
= m_isCommandEvent
;
158 wxCommandEvent::wxCommandEvent(wxEventType commandType
, int theId
)
160 m_eventType
= commandType
;
161 m_clientData
= (char *) NULL
;
162 m_clientObject
= (wxClientData
*) NULL
;
166 m_commandString
= wxEmptyString
;
167 m_isCommandEvent
= TRUE
;
170 void wxCommandEvent::CopyObject(wxObject
& obj_d
) const
172 wxCommandEvent
*obj
= (wxCommandEvent
*)&obj_d
;
174 wxEvent::CopyObject(obj_d
);
176 obj
->m_clientData
= m_clientData
;
177 obj
->m_clientObject
= m_clientObject
;
178 obj
->m_extraLong
= m_extraLong
;
179 obj
->m_commandInt
= m_commandInt
;
180 obj
->m_commandString
= m_commandString
;
187 void wxNotifyEvent::CopyObject(wxObject
& obj_d
) const
189 wxNotifyEvent
*obj
= (wxNotifyEvent
*)&obj_d
;
191 wxEvent::CopyObject(obj_d
);
193 if (!m_bAllow
) obj
->Veto();
200 wxScrollEvent::wxScrollEvent(wxEventType commandType
,
204 : wxCommandEvent(commandType
, id
)
206 m_extraLong
= orient
;
214 wxScrollWinEvent::wxScrollWinEvent(wxEventType commandType
,
218 m_eventType
= commandType
;
219 m_extraLong
= orient
;
223 void wxScrollWinEvent::CopyObject(wxObject
& obj_d
) const
225 wxScrollWinEvent
*obj
= (wxScrollWinEvent
*)&obj_d
;
227 wxEvent::CopyObject(obj_d
);
229 obj
->m_extraLong
= m_extraLong
;
230 obj
->m_commandInt
= m_commandInt
;
238 wxMouseEvent::wxMouseEvent(wxEventType commandType
)
240 m_eventType
= commandType
;
243 m_controlDown
= FALSE
;
247 m_middleDown
= FALSE
;
252 void wxMouseEvent::CopyObject(wxObject
& obj_d
) const
254 wxMouseEvent
*obj
= (wxMouseEvent
*)&obj_d
;
256 wxEvent::CopyObject(obj_d
);
258 obj
->m_metaDown
= m_metaDown
;
259 obj
->m_altDown
= m_altDown
;
260 obj
->m_controlDown
= m_controlDown
;
261 obj
->m_shiftDown
= m_shiftDown
;
262 obj
->m_leftDown
= m_leftDown
;
263 obj
->m_rightDown
= m_rightDown
;
264 obj
->m_middleDown
= m_middleDown
;
269 // True if was a button dclick event (1 = left, 2 = middle, 3 = right)
270 // or any button dclick event (but = -1)
271 bool wxMouseEvent::ButtonDClick(int but
) const
276 return (LeftDClick() || MiddleDClick() || RightDClick());
280 return MiddleDClick();
282 return RightDClick();
284 wxFAIL_MSG(wxT("invalid parameter in wxMouseEvent::ButtonDClick"));
290 // True if was a button down event (1 = left, 2 = middle, 3 = right)
291 // or any button down event (but = -1)
292 bool wxMouseEvent::ButtonDown(int but
) const
297 return (LeftDown() || MiddleDown() || RightDown());
305 wxFAIL_MSG(wxT("invalid parameter in wxMouseEvent::ButtonDown"));
311 // True if was a button up event (1 = left, 2 = middle, 3 = right)
312 // or any button up event (but = -1)
313 bool wxMouseEvent::ButtonUp(int but
) const
317 return (LeftUp() || MiddleUp() || RightUp());
325 wxFAIL_MSG(wxT("invalid parameter in wxMouseEvent::ButtonUp"));
331 // True if the given button is currently changing state
332 bool wxMouseEvent::Button(int but
) const
336 return (ButtonUp(-1) || ButtonDown(-1) || ButtonDClick(-1));
338 return (LeftDown() || LeftUp() || LeftDClick());
340 return (MiddleDown() || MiddleUp() || MiddleDClick());
342 return (RightDown() || RightUp() || RightDClick());
344 wxFAIL_MSG(wxT("invalid parameter in wxMouseEvent::Button"));
350 bool wxMouseEvent::ButtonIsDown(int but
) const
354 return (LeftIsDown() || MiddleIsDown() || RightIsDown());
358 return MiddleIsDown();
360 return RightIsDown();
362 wxFAIL_MSG(wxT("invalid parameter in wxMouseEvent::ButtonIsDown"));
368 // Find the logical position of the event given the DC
369 wxPoint
wxMouseEvent::GetLogicalPosition(const wxDC
& dc
) const
371 wxPoint
pt(dc
.DeviceToLogicalX(m_x
), dc
.DeviceToLogicalY(m_y
));
381 wxKeyEvent::wxKeyEvent(wxEventType type
)
385 m_controlDown
= FALSE
;
392 void wxKeyEvent::CopyObject(wxObject
& obj_d
) const
394 wxKeyEvent
*obj
= (wxKeyEvent
*)&obj_d
;
395 wxEvent::CopyObject(obj_d
);
399 obj
->m_keyCode
= m_keyCode
;
401 obj
->m_shiftDown
= m_shiftDown
;
402 obj
->m_controlDown
= m_controlDown
;
403 obj
->m_metaDown
= m_metaDown
;
404 obj
->m_altDown
= m_altDown
;
405 obj
->m_keyCode
= m_keyCode
;
413 void wxSizeEvent::CopyObject(wxObject
& obj_d
) const
415 wxSizeEvent
*obj
= (wxSizeEvent
*)&obj_d
;
416 wxEvent::CopyObject(obj_d
);
418 obj
->m_size
= m_size
;
421 void wxMoveEvent::CopyObject(wxObject
& obj_d
) const
423 wxMoveEvent
*obj
= (wxMoveEvent
*)&obj_d
;
424 wxEvent::CopyObject(obj_d
);
429 void wxEraseEvent::CopyObject(wxObject
& obj_d
) const
431 wxEraseEvent
*obj
= (wxEraseEvent
*)&obj_d
;
432 wxEvent::CopyObject(obj_d
);
437 void wxActivateEvent::CopyObject(wxObject
& obj_d
) const
439 wxActivateEvent
*obj
= (wxActivateEvent
*)&obj_d
;
440 wxEvent::CopyObject(obj_d
);
442 obj
->m_active
= m_active
;
445 void wxMenuEvent::CopyObject(wxObject
& obj_d
) const
447 wxMenuEvent
*obj
= (wxMenuEvent
*)&obj_d
;
448 wxEvent::CopyObject(obj_d
);
450 obj
->m_menuId
= m_menuId
;
453 void wxCloseEvent::CopyObject(wxObject
& obj_d
) const
455 wxCloseEvent
*obj
= (wxCloseEvent
*)&obj_d
;
456 wxEvent::CopyObject(obj_d
);
458 obj
->m_loggingOff
= m_loggingOff
;
459 obj
->m_veto
= m_veto
;
460 #if WXWIN_COMPATIBILITY
461 obj
->m_force
= m_force
;
463 obj
->m_canVeto
= m_canVeto
;
466 void wxShowEvent::CopyObject(wxObject
& obj_d
) const
468 wxShowEvent
*obj
= (wxShowEvent
*)&obj_d
;
469 wxEvent::CopyObject(obj_d
);
471 obj
->m_show
= m_show
;
474 void wxJoystickEvent::CopyObject(wxObject
& obj_d
) const
476 wxJoystickEvent
*obj
= (wxJoystickEvent
*)&obj_d
;
477 wxEvent::CopyObject(obj_d
);
480 obj
->m_zPosition
= m_zPosition
;
481 obj
->m_buttonChange
= m_buttonChange
;
482 obj
->m_buttonState
= m_buttonState
;
483 obj
->m_joyStick
= m_joyStick
;
486 void wxDropFilesEvent::CopyObject(wxObject
& obj_d
) const
488 wxDropFilesEvent
*obj
= (wxDropFilesEvent
*)&obj_d
;
489 wxEvent::CopyObject(obj_d
);
491 obj
->m_noFiles
= m_noFiles
;
493 // TODO: Problem with obj->m_files. It should be deallocated by the
494 // destructor of the event.
497 void wxUpdateUIEvent::CopyObject(wxObject
&obj_d
) const
499 wxUpdateUIEvent
*obj
= (wxUpdateUIEvent
*)&obj_d
;
500 wxEvent::CopyObject(obj_d
);
502 obj
->m_checked
= m_checked
;
503 obj
->m_enabled
= m_enabled
;
504 obj
->m_text
= m_text
;
505 obj
->m_setText
= m_setText
;
506 obj
->m_setChecked
= m_setChecked
;
507 obj
->m_setEnabled
= m_setEnabled
;
510 void wxPaletteChangedEvent::CopyObject(wxObject
&obj_d
) const
512 wxPaletteChangedEvent
*obj
= (wxPaletteChangedEvent
*)&obj_d
;
513 wxEvent::CopyObject(obj_d
);
515 obj
->m_changedWindow
= m_changedWindow
;
518 void wxQueryNewPaletteEvent::CopyObject(wxObject
& obj_d
) const
520 wxQueryNewPaletteEvent
*obj
= (wxQueryNewPaletteEvent
*)&obj_d
;
521 wxEvent::CopyObject(obj_d
);
523 obj
->m_paletteRealized
= m_paletteRealized
;
526 wxWindowCreateEvent::wxWindowCreateEvent(wxWindow
*win
)
528 SetEventType(wxEVT_CREATE
);
532 wxWindowDestroyEvent::wxWindowDestroyEvent(wxWindow
*win
)
534 SetEventType(wxEVT_DESTROY
);
540 void wxIdleEvent::CopyObject(wxObject
& obj_d
) const
542 wxIdleEvent
*obj
= (wxIdleEvent
*)&obj_d
;
543 wxEvent::CopyObject(obj_d
);
545 obj
->m_requestMore
= m_requestMore
;
552 wxEvtHandler::wxEvtHandler()
554 m_nextHandler
= (wxEvtHandler
*) NULL
;
555 m_previousHandler
= (wxEvtHandler
*) NULL
;
557 m_dynamicEvents
= (wxList
*) NULL
;
559 m_pendingEvents
= (wxList
*) NULL
;
561 # if !defined(__VISAGECPP__)
562 m_eventsLocker
= new wxCriticalSection
;
567 wxEvtHandler::~wxEvtHandler()
569 // Takes itself out of the list of handlers
570 if (m_previousHandler
)
571 m_previousHandler
->m_nextHandler
= m_nextHandler
;
574 m_nextHandler
->m_previousHandler
= m_previousHandler
;
578 wxNode
*node
= m_dynamicEvents
->First();
581 wxEventTableEntry
*entry
= (wxEventTableEntry
*)node
->Data();
582 if (entry
->m_callbackUserData
) delete entry
->m_callbackUserData
;
586 delete m_dynamicEvents
;
589 delete m_pendingEvents
;
592 # if !defined(__VISAGECPP__)
593 delete m_eventsLocker
;
600 bool wxEvtHandler::ProcessThreadEvent(wxEvent
& event
)
602 // check that we are really in a child thread
603 wxASSERT_MSG( !wxThread::IsMain(),
604 wxT("use ProcessEvent() in main thread") );
606 AddPendingEvent(event
);
611 #endif // wxUSE_THREADS
613 void wxEvtHandler::AddPendingEvent(wxEvent
& event
)
615 // 1) Add event to list of pending events of this event handler
617 #if defined(__VISAGECPP__)
618 wxENTER_CRIT_SECT( m_eventsLocker
);
620 wxENTER_CRIT_SECT( *m_eventsLocker
);
623 if ( !m_pendingEvents
)
624 m_pendingEvents
= new wxList
;
626 wxEvent
*event2
= (wxEvent
*)event
.Clone();
628 m_pendingEvents
->Append(event2
);
630 #if defined(__VISAGECPP__)
631 wxLEAVE_CRIT_SECT( m_eventsLocker
);
633 wxLEAVE_CRIT_SECT( *m_eventsLocker
);
636 // 2) Add this event handler to list of event handlers that
637 // have pending events.
639 wxENTER_CRIT_SECT(*wxPendingEventsLocker
);
641 if ( !wxPendingEvents
)
642 wxPendingEvents
= new wxList
;
643 wxPendingEvents
->Append(this);
645 wxLEAVE_CRIT_SECT(*wxPendingEventsLocker
);
647 // 3) Inform the system that new pending events are somwehere,
648 // and that these should be processed in idle time.
652 void wxEvtHandler::ProcessPendingEvents()
654 #if defined(__VISAGECPP__)
655 wxENTER_CRIT_SECT( m_eventsLocker
);
657 wxENTER_CRIT_SECT( *m_eventsLocker
);
660 wxNode
*node
= m_pendingEvents
->First();
663 wxEvent
*event
= (wxEvent
*)node
->Data();
666 // In ProcessEvent, new events might get added and
667 // we can safely leave the crtical section here.
668 #if defined(__VISAGECPP__)
669 wxLEAVE_CRIT_SECT( m_eventsLocker
);
671 wxLEAVE_CRIT_SECT( *m_eventsLocker
);
673 ProcessEvent(*event
);
675 #if defined(__VISAGECPP__)
676 wxENTER_CRIT_SECT( m_eventsLocker
);
678 wxENTER_CRIT_SECT( *m_eventsLocker
);
681 node
= m_pendingEvents
->First();
684 #if defined(__VISAGECPP__)
685 wxLEAVE_CRIT_SECT( m_eventsLocker
);
687 wxLEAVE_CRIT_SECT( *m_eventsLocker
);
695 bool wxEvtHandler::ProcessEvent(wxEvent
& event
)
698 // check that our flag corresponds to reality
699 wxASSERT( m_isWindow
== IsKindOf(CLASSINFO(wxWindow
)) );
702 // An event handler can be enabled or disabled
703 if ( GetEvtHandlerEnabled() )
708 What is this? When using GUI threads, a non main
709 threads can send an event and process it itself.
710 This breaks GTK's GUI threads, so please explain.
713 // Check whether we are in a child thread.
714 if ( !wxThread::IsMain() )
715 return ProcessThreadEvent(event
);
718 // Handle per-instance dynamic event tables first
719 if ( m_dynamicEvents
&& SearchDynamicEventTable(event
) )
722 // Then static per-class event tables
723 const wxEventTable
*table
= GetEventTable();
725 #if wxUSE_GUI && wxUSE_VALIDATORS
726 // Try the associated validator first, if this is a window.
727 // Problem: if the event handler of the window has been replaced,
728 // this wxEvtHandler may no longer be a window.
729 // Therefore validators won't be processed if the handler
730 // has been replaced with SetEventHandler.
731 // THIS CAN BE CURED if PushEventHandler is used instead of
732 // SetEventHandler, and then processing will be passed down the
733 // chain of event handlers.
736 wxWindow
*win
= (wxWindow
*)this;
738 // Can only use the validator of the window which
739 // is receiving the event
740 if ( win
== event
.GetEventObject() )
742 wxValidator
*validator
= win
->GetValidator();
743 if ( validator
&& validator
->ProcessEvent(event
) )
751 // Search upwards through the inheritance hierarchy
754 if ( SearchEventTable((wxEventTable
&)*table
, event
) )
756 table
= table
->baseTable
;
760 // Try going down the event handler chain
761 if ( GetNextHandler() )
763 if ( GetNextHandler()->ProcessEvent(event
) )
768 // Carry on up the parent-child hierarchy,
769 // but only if event is a command event: it wouldn't
770 // make sense for a parent to receive a child's size event, for example
771 if ( m_isWindow
&& event
.IsCommandEvent() )
773 wxWindow
*win
= (wxWindow
*)this;
774 wxWindow
*parent
= win
->GetParent();
775 if (parent
&& !parent
->IsBeingDeleted())
776 return parent
->GetEventHandler()->ProcessEvent(event
);
780 // Last try - application object.
781 if ( wxTheApp
&& (this != wxTheApp
) )
783 // Special case: don't pass wxEVT_IDLE to wxApp, since it'll always
784 // swallow it. wxEVT_IDLE is sent explicitly to wxApp so it will be
785 // processed appropriately via SearchEventTable.
786 if ( event
.GetEventType() != wxEVT_IDLE
)
788 if ( wxTheApp
->ProcessEvent(event
) )
796 bool wxEvtHandler::SearchEventTable(wxEventTable
& table
, wxEvent
& event
)
798 wxEventType eventType
= event
.GetEventType();
799 int eventId
= event
.GetId();
801 // BC++ doesn't like testing for m_fn without != 0
802 for ( int i
= 0; table
.entries
[i
].m_fn
!= 0; i
++ )
804 // the line using reference exposes a bug in gcc: although it _seems_
805 // to work, it leads to weird crashes later on during program
808 wxEventTableEntry entry
= table
.entries
[i
];
810 const wxEventTableEntry
& entry
= table
.entries
[i
];
813 // match only if the event type is the same and the id is either -1 in
814 // the event table (meaning "any") or the event id matches the id
815 // specified in the event table either exactly or by falling into
816 // range between first and last
817 if ( eventType
== entry
.m_eventType
)
819 int tableId1
= entry
.m_id
,
820 tableId2
= entry
.m_lastId
;
822 if ( (tableId1
== -1) ||
823 (tableId2
== -1 && eventId
== tableId1
) ||
825 (eventId
>= tableId1
&& eventId
<= tableId2
)) )
828 event
.m_callbackUserData
= entry
.m_callbackUserData
;
830 (this->*((wxEventFunction
) (entry
.m_fn
)))(event
);
832 return !event
.GetSkipped();
840 void wxEvtHandler::Connect( int id
, int lastId
,
841 wxEventType eventType
,
842 wxObjectEventFunction func
,
845 wxEventTableEntry
*entry
= new wxEventTableEntry
;
847 entry
->m_lastId
= lastId
;
848 entry
->m_eventType
= eventType
;
850 entry
->m_callbackUserData
= userData
;
852 if (!m_dynamicEvents
)
853 m_dynamicEvents
= new wxList
;
855 m_dynamicEvents
->Append( (wxObject
*) entry
);
858 bool wxEvtHandler::Disconnect( int id
, int lastId
, wxEventType eventType
,
859 wxObjectEventFunction func
,
862 if (!m_dynamicEvents
)
865 wxNode
*node
= m_dynamicEvents
->First();
868 wxEventTableEntry
*entry
= (wxEventTableEntry
*)node
->Data();
869 if ((entry
->m_id
== id
) &&
870 ((entry
->m_lastId
== lastId
) || (lastId
== -1)) &&
871 ((entry
->m_eventType
== eventType
) || (eventType
== wxEVT_NULL
)) &&
872 ((entry
->m_fn
== func
) || (func
== (wxObjectEventFunction
)NULL
)) &&
873 ((entry
->m_callbackUserData
== userData
) || (userData
== (wxObject
*)NULL
)))
875 if (entry
->m_callbackUserData
) delete entry
->m_callbackUserData
;
876 m_dynamicEvents
->DeleteNode( node
);
885 bool wxEvtHandler::SearchDynamicEventTable( wxEvent
& event
)
887 wxCHECK_MSG( m_dynamicEvents
, FALSE
,
888 wxT("caller should check that we have dynamic events") );
890 int commandId
= event
.GetId();
892 wxNode
*node
= m_dynamicEvents
->First();
895 wxEventTableEntry
*entry
= (wxEventTableEntry
*)node
->Data();
899 // Match, if event spec says any id will do (id == -1)
900 if ( (event
.GetEventType() == entry
->m_eventType
) &&
901 (entry
->m_id
== -1 ||
902 (entry
->m_lastId
== -1 && commandId
== entry
->m_id
) ||
903 (entry
->m_lastId
!= -1 &&
904 (commandId
>= entry
->m_id
&& commandId
<= entry
->m_lastId
))) )
907 event
.m_callbackUserData
= entry
->m_callbackUserData
;
909 (this->*((wxEventFunction
) (entry
->m_fn
)))(event
);
911 if (event
.GetSkipped())
922 #if WXWIN_COMPATIBILITY
923 bool wxEvtHandler::OnClose()
925 if (GetNextHandler())
926 return GetNextHandler()->OnClose();
930 #endif // WXWIN_COMPATIBILITY
934 // Find a window with the focus, that is also a descendant of the given window.
935 // This is used to determine the window to initially send commands to.
936 wxWindow
* wxFindFocusDescendant(wxWindow
* ancestor
)
938 // Process events starting with the window with the focus, if any.
939 wxWindow
* focusWin
= wxWindow::FindFocus();
940 wxWindow
* win
= focusWin
;
942 // Check if this is a descendant of this frame.
943 // If not, win will be set to NULL.
949 win
= win
->GetParent();
951 if (win
== (wxWindow
*) NULL
)
952 focusWin
= (wxWindow
*) NULL
;