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 #if !USE_SHARED_LIBRARY
54 IMPLEMENT_DYNAMIC_CLASS(wxEvtHandler
, wxObject
)
55 IMPLEMENT_ABSTRACT_CLASS(wxEvent
, wxObject
)
56 IMPLEMENT_DYNAMIC_CLASS(wxIdleEvent
, wxEvent
)
59 IMPLEMENT_DYNAMIC_CLASS(wxCommandEvent
, wxEvent
)
60 IMPLEMENT_DYNAMIC_CLASS(wxNotifyEvent
, wxCommandEvent
)
61 IMPLEMENT_DYNAMIC_CLASS(wxScrollEvent
, wxCommandEvent
)
62 IMPLEMENT_DYNAMIC_CLASS(wxScrollWinEvent
, wxEvent
)
63 IMPLEMENT_DYNAMIC_CLASS(wxMouseEvent
, wxEvent
)
64 IMPLEMENT_DYNAMIC_CLASS(wxKeyEvent
, wxEvent
)
65 IMPLEMENT_DYNAMIC_CLASS(wxSizeEvent
, wxEvent
)
66 IMPLEMENT_DYNAMIC_CLASS(wxPaintEvent
, wxEvent
)
67 IMPLEMENT_DYNAMIC_CLASS(wxEraseEvent
, wxEvent
)
68 IMPLEMENT_DYNAMIC_CLASS(wxMoveEvent
, wxEvent
)
69 IMPLEMENT_DYNAMIC_CLASS(wxFocusEvent
, wxEvent
)
70 IMPLEMENT_DYNAMIC_CLASS(wxCloseEvent
, wxEvent
)
71 IMPLEMENT_DYNAMIC_CLASS(wxShowEvent
, wxEvent
)
72 IMPLEMENT_DYNAMIC_CLASS(wxMaximizeEvent
, wxEvent
)
73 IMPLEMENT_DYNAMIC_CLASS(wxIconizeEvent
, wxEvent
)
74 IMPLEMENT_DYNAMIC_CLASS(wxMenuEvent
, wxEvent
)
75 IMPLEMENT_DYNAMIC_CLASS(wxJoystickEvent
, wxEvent
)
76 IMPLEMENT_DYNAMIC_CLASS(wxDropFilesEvent
, wxEvent
)
77 IMPLEMENT_DYNAMIC_CLASS(wxActivateEvent
, wxEvent
)
78 IMPLEMENT_DYNAMIC_CLASS(wxInitDialogEvent
, wxEvent
)
79 IMPLEMENT_DYNAMIC_CLASS(wxSysColourChangedEvent
, wxEvent
)
80 IMPLEMENT_DYNAMIC_CLASS(wxUpdateUIEvent
, wxCommandEvent
)
81 IMPLEMENT_DYNAMIC_CLASS(wxNavigationKeyEvent
, wxCommandEvent
)
82 IMPLEMENT_DYNAMIC_CLASS(wxPaletteChangedEvent
, wxEvent
)
83 IMPLEMENT_DYNAMIC_CLASS(wxQueryNewPaletteEvent
, wxEvent
)
84 IMPLEMENT_DYNAMIC_CLASS(wxWindowCreateEvent
, wxEvent
)
85 IMPLEMENT_DYNAMIC_CLASS(wxWindowDestroyEvent
, wxEvent
)
88 const wxEventTable
*wxEvtHandler::GetEventTable() const
89 { return &wxEvtHandler::sm_eventTable
; }
91 const wxEventTable
wxEvtHandler::sm_eventTable
=
92 { (const wxEventTable
*)NULL
, &wxEvtHandler::sm_eventTableEntries
[0] };
94 const wxEventTableEntry
wxEvtHandler::sm_eventTableEntries
[] =
95 { { 0, 0, 0, (wxObjectEventFunction
) NULL
, (wxObject
*) NULL
} };
97 #endif // !USE_SHARED_LIBRARY
99 // ----------------------------------------------------------------------------
101 // ----------------------------------------------------------------------------
103 // To put pending event handlers
104 wxList
*wxPendingEvents
= (wxList
*)NULL
;
107 // protects wxPendingEvents list
108 wxCriticalSection
*wxPendingEventsLocker
= (wxCriticalSection
*)NULL
;
111 // ============================================================================
113 // ============================================================================
115 // ----------------------------------------------------------------------------
117 // ----------------------------------------------------------------------------
120 * General wxWindows events, covering
121 * all interesting things that might happen (button clicking, resizing,
122 * setting text in widgets, etc.).
124 * For each completely new event type, derive a new event class.
128 wxEvent::wxEvent(int theId
)
130 m_eventType
= wxEVT_NULL
;
131 m_eventObject
= (wxObject
*) NULL
;
135 m_callbackUserData
= (wxObject
*) NULL
;
136 m_isCommandEvent
= FALSE
;
139 void wxEvent::CopyObject(wxObject
& object_dest
) const
141 wxEvent
*obj
= (wxEvent
*)&object_dest
;
142 wxObject::CopyObject(object_dest
);
144 obj
->m_eventType
= m_eventType
;
145 obj
->m_eventObject
= m_eventObject
;
146 obj
->m_timeStamp
= m_timeStamp
;
148 obj
->m_skipped
= m_skipped
;
149 obj
->m_callbackUserData
= m_callbackUserData
;
150 obj
->m_isCommandEvent
= m_isCommandEvent
;
160 wxCommandEvent::wxCommandEvent(wxEventType commandType
, int theId
)
162 m_eventType
= commandType
;
163 m_clientData
= (char *) NULL
;
164 m_clientObject
= (wxClientData
*) NULL
;
168 m_commandString
= wxEmptyString
;
169 m_isCommandEvent
= TRUE
;
172 void wxCommandEvent::CopyObject(wxObject
& obj_d
) const
174 wxCommandEvent
*obj
= (wxCommandEvent
*)&obj_d
;
176 wxEvent::CopyObject(obj_d
);
178 obj
->m_clientData
= m_clientData
;
179 obj
->m_clientObject
= m_clientObject
;
180 obj
->m_extraLong
= m_extraLong
;
181 obj
->m_commandInt
= m_commandInt
;
188 wxScrollEvent::wxScrollEvent(wxEventType commandType
,
192 : wxCommandEvent(commandType
, id
)
194 m_extraLong
= orient
;
202 wxScrollWinEvent::wxScrollWinEvent(wxEventType commandType
,
206 m_eventType
= commandType
;
207 m_extraLong
= orient
;
211 void wxScrollWinEvent::CopyObject(wxObject
& obj_d
) const
213 wxScrollWinEvent
*obj
= (wxScrollWinEvent
*)&obj_d
;
215 wxEvent::CopyObject(obj_d
);
217 obj
->m_extraLong
= m_extraLong
;
218 obj
->m_commandInt
= m_commandInt
;
226 wxMouseEvent::wxMouseEvent(wxEventType commandType
)
228 m_eventType
= commandType
;
231 m_controlDown
= FALSE
;
235 m_middleDown
= FALSE
;
240 void wxMouseEvent::CopyObject(wxObject
& obj_d
) const
242 wxMouseEvent
*obj
= (wxMouseEvent
*)&obj_d
;
244 wxEvent::CopyObject(obj_d
);
246 obj
->m_metaDown
= m_metaDown
;
247 obj
->m_altDown
= m_altDown
;
248 obj
->m_controlDown
= m_controlDown
;
249 obj
->m_shiftDown
= m_shiftDown
;
250 obj
->m_leftDown
= m_leftDown
;
251 obj
->m_rightDown
= m_rightDown
;
252 obj
->m_middleDown
= m_middleDown
;
257 // True if was a button dclick event (1 = left, 2 = middle, 3 = right)
258 // or any button dclick event (but = -1)
259 bool wxMouseEvent::ButtonDClick(int but
) const
264 return (LeftDClick() || MiddleDClick() || RightDClick());
268 return MiddleDClick();
270 return RightDClick();
272 wxFAIL_MSG(wxT("invalid parameter in wxMouseEvent::ButtonDClick"));
278 // True if was a button down event (1 = left, 2 = middle, 3 = right)
279 // or any button down event (but = -1)
280 bool wxMouseEvent::ButtonDown(int but
) const
285 return (LeftDown() || MiddleDown() || RightDown());
293 wxFAIL_MSG(wxT("invalid parameter in wxMouseEvent::ButtonDown"));
299 // True if was a button up event (1 = left, 2 = middle, 3 = right)
300 // or any button up event (but = -1)
301 bool wxMouseEvent::ButtonUp(int but
) const
305 return (LeftUp() || MiddleUp() || RightUp());
313 wxFAIL_MSG(wxT("invalid parameter in wxMouseEvent::ButtonUp"));
319 // True if the given button is currently changing state
320 bool wxMouseEvent::Button(int but
) const
324 return (ButtonUp(-1) || ButtonDown(-1) || ButtonDClick(-1));
326 return (LeftDown() || LeftUp() || LeftDClick());
328 return (MiddleDown() || MiddleUp() || MiddleDClick());
330 return (RightDown() || RightUp() || RightDClick());
332 wxFAIL_MSG(wxT("invalid parameter in wxMouseEvent::Button"));
338 bool wxMouseEvent::ButtonIsDown(int but
) const
342 return (LeftIsDown() || MiddleIsDown() || RightIsDown());
346 return MiddleIsDown();
348 return RightIsDown();
350 wxFAIL_MSG(wxT("invalid parameter in wxMouseEvent::ButtonIsDown"));
356 // Find the logical position of the event given the DC
357 wxPoint
wxMouseEvent::GetLogicalPosition(const wxDC
& dc
) const
359 wxPoint
pt(dc
.DeviceToLogicalX(m_x
), dc
.DeviceToLogicalY(m_y
));
369 wxKeyEvent::wxKeyEvent(wxEventType type
)
373 m_controlDown
= FALSE
;
380 void wxKeyEvent::CopyObject(wxObject
& obj_d
) const
382 wxKeyEvent
*obj
= (wxKeyEvent
*)&obj_d
;
383 wxEvent::CopyObject(obj_d
);
385 obj
->m_shiftDown
= m_shiftDown
;
386 obj
->m_controlDown
= m_controlDown
;
387 obj
->m_metaDown
= m_metaDown
;
388 obj
->m_altDown
= m_altDown
;
389 obj
->m_keyCode
= m_keyCode
;
397 void wxSizeEvent::CopyObject(wxObject
& obj_d
) const
399 wxSizeEvent
*obj
= (wxSizeEvent
*)&obj_d
;
400 wxEvent::CopyObject(obj_d
);
402 obj
->m_size
= m_size
;
405 void wxMoveEvent::CopyObject(wxObject
& obj_d
) const
407 wxMoveEvent
*obj
= (wxMoveEvent
*)&obj_d
;
408 wxEvent::CopyObject(obj_d
);
413 void wxEraseEvent::CopyObject(wxObject
& obj_d
) const
415 wxEraseEvent
*obj
= (wxEraseEvent
*)&obj_d
;
416 wxEvent::CopyObject(obj_d
);
421 void wxActivateEvent::CopyObject(wxObject
& obj_d
) const
423 wxActivateEvent
*obj
= (wxActivateEvent
*)&obj_d
;
424 wxEvent::CopyObject(obj_d
);
426 obj
->m_active
= m_active
;
429 void wxMenuEvent::CopyObject(wxObject
& obj_d
) const
431 wxMenuEvent
*obj
= (wxMenuEvent
*)&obj_d
;
432 wxEvent::CopyObject(obj_d
);
434 obj
->m_menuId
= m_menuId
;
437 void wxCloseEvent::CopyObject(wxObject
& obj_d
) const
439 wxCloseEvent
*obj
= (wxCloseEvent
*)&obj_d
;
440 wxEvent::CopyObject(obj_d
);
442 obj
->m_loggingOff
= m_loggingOff
;
443 obj
->m_veto
= m_veto
;
444 #if WXWIN_COMPATIBILITY
445 obj
->m_force
= m_force
;
447 obj
->m_canVeto
= m_canVeto
;
450 void wxShowEvent::CopyObject(wxObject
& obj_d
) const
452 wxShowEvent
*obj
= (wxShowEvent
*)&obj_d
;
453 wxEvent::CopyObject(obj_d
);
455 obj
->m_show
= m_show
;
458 void wxJoystickEvent::CopyObject(wxObject
& obj_d
) const
460 wxJoystickEvent
*obj
= (wxJoystickEvent
*)&obj_d
;
461 wxEvent::CopyObject(obj_d
);
464 obj
->m_zPosition
= m_zPosition
;
465 obj
->m_buttonChange
= m_buttonChange
;
466 obj
->m_buttonState
= m_buttonState
;
467 obj
->m_joyStick
= m_joyStick
;
470 void wxDropFilesEvent::CopyObject(wxObject
& obj_d
) const
472 wxDropFilesEvent
*obj
= (wxDropFilesEvent
*)&obj_d
;
473 wxEvent::CopyObject(obj_d
);
475 obj
->m_noFiles
= m_noFiles
;
477 // TODO: Problem with obj->m_files. It should be deallocated by the
478 // destructor of the event.
481 void wxUpdateUIEvent::CopyObject(wxObject
&obj_d
) const
483 wxUpdateUIEvent
*obj
= (wxUpdateUIEvent
*)&obj_d
;
484 wxEvent::CopyObject(obj_d
);
486 obj
->m_checked
= m_checked
;
487 obj
->m_enabled
= m_enabled
;
488 obj
->m_text
= m_text
;
489 obj
->m_setText
= m_setText
;
490 obj
->m_setChecked
= m_setChecked
;
491 obj
->m_setEnabled
= m_setEnabled
;
494 void wxPaletteChangedEvent::CopyObject(wxObject
&obj_d
) const
496 wxPaletteChangedEvent
*obj
= (wxPaletteChangedEvent
*)&obj_d
;
497 wxEvent::CopyObject(obj_d
);
499 obj
->m_changedWindow
= m_changedWindow
;
502 void wxQueryNewPaletteEvent::CopyObject(wxObject
& obj_d
) const
504 wxQueryNewPaletteEvent
*obj
= (wxQueryNewPaletteEvent
*)&obj_d
;
505 wxEvent::CopyObject(obj_d
);
507 obj
->m_paletteRealized
= m_paletteRealized
;
510 wxWindowCreateEvent::wxWindowCreateEvent(wxWindow
*win
)
511 : wxEvent(wxEVT_CREATE
)
516 wxWindowDestroyEvent::wxWindowDestroyEvent(wxWindow
*win
)
517 : wxEvent(wxEVT_DESTROY
)
524 void wxIdleEvent::CopyObject(wxObject
& obj_d
) const
526 wxIdleEvent
*obj
= (wxIdleEvent
*)&obj_d
;
527 wxEvent::CopyObject(obj_d
);
529 obj
->m_requestMore
= m_requestMore
;
536 wxEvtHandler::wxEvtHandler()
538 m_nextHandler
= (wxEvtHandler
*) NULL
;
539 m_previousHandler
= (wxEvtHandler
*) NULL
;
541 m_dynamicEvents
= (wxList
*) NULL
;
543 m_pendingEvents
= (wxList
*) NULL
;
545 m_eventsLocker
= new wxCriticalSection
;
549 wxEvtHandler::~wxEvtHandler()
551 // Takes itself out of the list of handlers
552 if (m_previousHandler
)
553 m_previousHandler
->m_nextHandler
= m_nextHandler
;
556 m_nextHandler
->m_previousHandler
= m_previousHandler
;
560 wxNode
*node
= m_dynamicEvents
->First();
563 wxEventTableEntry
*entry
= (wxEventTableEntry
*)node
->Data();
564 if (entry
->m_callbackUserData
) delete entry
->m_callbackUserData
;
568 delete m_dynamicEvents
;
571 delete m_pendingEvents
;
574 delete m_eventsLocker
;
580 bool wxEvtHandler::ProcessThreadEvent(wxEvent
& event
)
582 wxCriticalSectionLocker
locker(*m_eventsLocker
);
584 // check that we are really in a child thread
585 wxASSERT_MSG( !wxThread::IsMain(),
586 wxT("use ProcessEvent() in main thread") );
588 AddPendingEvent(event
);
593 #endif // wxUSE_THREADS
595 void wxEvtHandler::AddPendingEvent(wxEvent
& event
)
597 if ( !m_pendingEvents
)
598 m_pendingEvents
= new wxList
;
600 wxEvent
*event2
= (wxEvent
*)event
.Clone();
602 m_pendingEvents
->Append(event2
);
604 wxENTER_CRIT_SECT(wxPendingEventsLocker
);
606 if ( !wxPendingEvents
)
607 wxPendingEvents
= new wxList
;
608 wxPendingEvents
->Append(this);
610 wxLEAVE_CRIT_SECT(wxPendingEventsLocker
);
612 // TODO: Wake up idle handler for the other platforms.
614 extern bool g_isIdle
;
615 extern void wxapp_install_idle_handler();
617 wxapp_install_idle_handler();
618 #elif wxUSE_GUI // this works for wxMSW, but may be for others too?
619 // might also send a dummy message to the top level window, this would
620 // probably be cleaner?
621 wxIdleEvent eventIdle
;
622 wxTheApp
->OnIdle(eventIdle
);
626 void wxEvtHandler::ProcessPendingEvents()
628 wxCRIT_SECT_LOCKER(locker
, m_eventsLocker
);
630 wxNode
*node
= m_pendingEvents
->First();
635 event
= (wxEvent
*)node
->Data();
636 ProcessEvent(*event
);
638 node
= m_pendingEvents
->First();
646 bool wxEvtHandler::ProcessEvent(wxEvent
& event
)
649 // check that our flag corresponds to reality
650 wxASSERT( m_isWindow
== IsKindOf(CLASSINFO(wxWindow
)) );
653 // An event handler can be enabled or disabled
654 if ( GetEvtHandlerEnabled() )
657 // Check whether we are in a child thread.
658 if ( !wxThread::IsMain() )
659 return ProcessThreadEvent(event
);
660 #endif // wxUSE_THREADS
662 // Handle per-instance dynamic event tables first
663 if ( m_dynamicEvents
&& SearchDynamicEventTable(event
) )
666 // Then static per-class event tables
667 const wxEventTable
*table
= GetEventTable();
669 #if wxUSE_GUI && wxUSE_VALIDATORS
670 // Try the associated validator first, if this is a window.
671 // Problem: if the event handler of the window has been replaced,
672 // this wxEvtHandler may no longer be a window.
673 // Therefore validators won't be processed if the handler
674 // has been replaced with SetEventHandler.
675 // THIS CAN BE CURED if PushEventHandler is used instead of
676 // SetEventHandler, and then processing will be passed down the
677 // chain of event handlers.
680 wxWindow
*win
= (wxWindow
*)this;
682 // Can only use the validator of the window which
683 // is receiving the event
684 if ( win
== event
.GetEventObject() )
686 wxValidator
*validator
= win
->GetValidator();
687 if ( validator
&& validator
->ProcessEvent(event
) )
695 // Search upwards through the inheritance hierarchy
698 if ( SearchEventTable((wxEventTable
&)*table
, event
) )
700 table
= table
->baseTable
;
704 // Try going down the event handler chain
705 if ( GetNextHandler() )
707 if ( GetNextHandler()->ProcessEvent(event
) )
712 // Carry on up the parent-child hierarchy,
713 // but only if event is a command event: it wouldn't
714 // make sense for a parent to receive a child's size event, for example
715 if ( m_isWindow
&& event
.IsCommandEvent() )
717 wxWindow
*win
= (wxWindow
*)this;
718 wxWindow
*parent
= win
->GetParent();
719 if (parent
&& !parent
->IsBeingDeleted())
720 return parent
->GetEventHandler()->ProcessEvent(event
);
724 // Last try - application object.
725 if ( wxTheApp
&& (this != wxTheApp
) )
727 // Special case: don't pass wxEVT_IDLE to wxApp, since it'll always
728 // swallow it. wxEVT_IDLE is sent explicitly to wxApp so it will be
729 // processed appropriately via SearchEventTable.
730 if ( event
.GetEventType() != wxEVT_IDLE
)
732 if ( wxTheApp
->ProcessEvent(event
) )
740 bool wxEvtHandler::SearchEventTable(wxEventTable
& table
, wxEvent
& event
)
743 int commandId
= event
.GetId();
745 // BC++ doesn't like while (table.entries[i].m_fn)
748 while (table
.entries
[i
].m_fn
!= 0)
750 while (table
.entries
[i
].m_fn
!= 0L)
753 if ((event
.GetEventType() == table
.entries
[i
].m_eventType
) &&
754 (table
.entries
[i
].m_id
== -1 || // Match, if event spec says any id will do (id == -1)
755 (table
.entries
[i
].m_lastId
== -1 && commandId
== table
.entries
[i
].m_id
) ||
756 (table
.entries
[i
].m_lastId
!= -1 &&
757 (commandId
>= table
.entries
[i
].m_id
&& commandId
<= table
.entries
[i
].m_lastId
))))
760 event
.m_callbackUserData
= table
.entries
[i
].m_callbackUserData
;
762 (this->*((wxEventFunction
) (table
.entries
[i
].m_fn
)))(event
);
764 if ( event
.GetSkipped() )
773 void wxEvtHandler::Connect( int id
, int lastId
,
774 wxEventType eventType
,
775 wxObjectEventFunction func
,
778 wxEventTableEntry
*entry
= new wxEventTableEntry
;
780 entry
->m_lastId
= lastId
;
781 entry
->m_eventType
= eventType
;
783 entry
->m_callbackUserData
= userData
;
785 if (!m_dynamicEvents
)
786 m_dynamicEvents
= new wxList
;
788 m_dynamicEvents
->Append( (wxObject
*) entry
);
791 bool wxEvtHandler::SearchDynamicEventTable( wxEvent
& event
)
793 wxCHECK_MSG( m_dynamicEvents
, FALSE
,
794 wxT("caller should check that we have dynamic events") );
796 int commandId
= event
.GetId();
798 wxNode
*node
= m_dynamicEvents
->First();
801 wxEventTableEntry
*entry
= (wxEventTableEntry
*)node
->Data();
805 // Match, if event spec says any id will do (id == -1)
806 if ( (event
.GetEventType() == entry
->m_eventType
) &&
807 (entry
->m_id
== -1 ||
808 (entry
->m_lastId
== -1 && commandId
== entry
->m_id
) ||
809 (entry
->m_lastId
!= -1 &&
810 (commandId
>= entry
->m_id
&& commandId
<= entry
->m_lastId
))) )
813 event
.m_callbackUserData
= entry
->m_callbackUserData
;
815 (this->*((wxEventFunction
) (entry
->m_fn
)))(event
);
817 if (event
.GetSkipped())
828 #if WXWIN_COMPATIBILITY
829 bool wxEvtHandler::OnClose()
831 if (GetNextHandler())
832 return GetNextHandler()->OnClose();
836 #endif // WXWIN_COMPATIBILITY
840 // Find a window with the focus, that is also a descendant of the given window.
841 // This is used to determine the window to initially send commands to.
842 wxWindow
* wxFindFocusDescendant(wxWindow
* ancestor
)
844 // Process events starting with the window with the focus, if any.
845 wxWindow
* focusWin
= wxWindow::FindFocus();
846 wxWindow
* win
= focusWin
;
848 // Check if this is a descendant of this frame.
849 // If not, win will be set to NULL.
855 win
= win
->GetParent();
857 if (win
== (wxWindow
*) NULL
)
858 focusWin
= (wxWindow
*) NULL
;