]> git.saurik.com Git - wxWidgets.git/blame - src/common/event.cpp
Add a helper wxApp::GetValidTraits() method.
[wxWidgets.git] / src / common / event.cpp
CommitLineData
c801d85f 1/////////////////////////////////////////////////////////////////////////////
c54de5ae 2// Name: src/common/event.cpp
c801d85f
KB
3// Purpose: Event classes
4// Author: Julian Smart
5// Modified by:
6// Created: 01/02/97
7// RCS-ID: $Id$
55d99c7a 8// Copyright: (c) Julian Smart
65571936 9// Licence: wxWindows licence
c801d85f
KB
10/////////////////////////////////////////////////////////////////////////////
11
8e193f38
VZ
12// ============================================================================
13// declarations
14// ============================================================================
15
16// ----------------------------------------------------------------------------
17// headers
18// ----------------------------------------------------------------------------
19
c801d85f
KB
20// For compilers that support precompilation, includes "wx.h".
21#include "wx/wxprec.h"
22
23#ifdef __BORLANDC__
0b746ba8 24 #pragma hdrstop
c801d85f
KB
25#endif
26
d5da0ce7 27#include "wx/event.h"
58cc1587 28#include "wx/eventfilter.h"
937013e0 29#include "wx/evtloop.h"
d5da0ce7 30
c801d85f 31#ifndef WX_PRECOMP
e90c1d2a 32 #include "wx/list.h"
8bd9fa33 33 #include "wx/log.h"
8ecff181 34 #include "wx/app.h"
de6185e2 35 #include "wx/utils.h"
bb90a3e6 36 #include "wx/stopwatch.h"
02761f6c 37 #include "wx/module.h"
e90c1d2a
VZ
38
39 #if wxUSE_GUI
a8ff046b 40 #include "wx/window.h"
e90c1d2a 41 #include "wx/control.h"
e90c1d2a 42 #include "wx/dc.h"
dca94103 43 #include "wx/spinbutt.h"
75a29298 44 #include "wx/textctrl.h"
264cb7f5 45 #include "wx/validate.h"
e90c1d2a 46 #endif // wxUSE_GUI
c801d85f
KB
47#endif
48
204abcd4 49#include "wx/thread.h"
47b6fabc 50
d102b02a 51#if wxUSE_BASE
664e1314 52 #include "wx/scopedptr.h"
d102b02a
VZ
53
54 wxDECLARE_SCOPED_PTR(wxEvent, wxEventPtr)
55 wxDEFINE_SCOPED_PTR(wxEvent, wxEventPtr)
56#endif // wxUSE_BASE
204abcd4 57
8e193f38
VZ
58// ----------------------------------------------------------------------------
59// wxWin macros
60// ----------------------------------------------------------------------------
61
3ed2104c
VZ
62#if wxUSE_BASE
63 IMPLEMENT_DYNAMIC_CLASS(wxEvtHandler, wxObject)
64 IMPLEMENT_ABSTRACT_CLASS(wxEvent, wxObject)
b46b1d59 65 IMPLEMENT_DYNAMIC_CLASS(wxIdleEvent, wxEvent)
c1b293bb 66 IMPLEMENT_DYNAMIC_CLASS(wxThreadEvent, wxEvent)
3ed2104c 67#endif // wxUSE_BASE
e90c1d2a 68
23f681ec
VZ
69#if wxUSE_GUI
70 IMPLEMENT_DYNAMIC_CLASS(wxCommandEvent, wxEvent)
71 IMPLEMENT_DYNAMIC_CLASS(wxNotifyEvent, wxCommandEvent)
72 IMPLEMENT_DYNAMIC_CLASS(wxScrollEvent, wxCommandEvent)
73 IMPLEMENT_DYNAMIC_CLASS(wxScrollWinEvent, wxEvent)
74 IMPLEMENT_DYNAMIC_CLASS(wxMouseEvent, wxEvent)
75 IMPLEMENT_DYNAMIC_CLASS(wxKeyEvent, wxEvent)
76 IMPLEMENT_DYNAMIC_CLASS(wxSizeEvent, wxEvent)
77 IMPLEMENT_DYNAMIC_CLASS(wxPaintEvent, wxEvent)
1e6feb95 78 IMPLEMENT_DYNAMIC_CLASS(wxNcPaintEvent, wxEvent)
23f681ec
VZ
79 IMPLEMENT_DYNAMIC_CLASS(wxEraseEvent, wxEvent)
80 IMPLEMENT_DYNAMIC_CLASS(wxMoveEvent, wxEvent)
81 IMPLEMENT_DYNAMIC_CLASS(wxFocusEvent, wxEvent)
456bc6d9 82 IMPLEMENT_DYNAMIC_CLASS(wxChildFocusEvent, wxCommandEvent)
23f681ec
VZ
83 IMPLEMENT_DYNAMIC_CLASS(wxCloseEvent, wxEvent)
84 IMPLEMENT_DYNAMIC_CLASS(wxShowEvent, wxEvent)
85 IMPLEMENT_DYNAMIC_CLASS(wxMaximizeEvent, wxEvent)
86 IMPLEMENT_DYNAMIC_CLASS(wxIconizeEvent, wxEvent)
87 IMPLEMENT_DYNAMIC_CLASS(wxMenuEvent, wxEvent)
88 IMPLEMENT_DYNAMIC_CLASS(wxJoystickEvent, wxEvent)
89 IMPLEMENT_DYNAMIC_CLASS(wxDropFilesEvent, wxEvent)
90 IMPLEMENT_DYNAMIC_CLASS(wxActivateEvent, wxEvent)
91 IMPLEMENT_DYNAMIC_CLASS(wxInitDialogEvent, wxEvent)
8e72b8b5 92 IMPLEMENT_DYNAMIC_CLASS(wxSetCursorEvent, wxEvent)
23f681ec 93 IMPLEMENT_DYNAMIC_CLASS(wxSysColourChangedEvent, wxEvent)
574c939e 94 IMPLEMENT_DYNAMIC_CLASS(wxDisplayChangedEvent, wxEvent)
23f681ec 95 IMPLEMENT_DYNAMIC_CLASS(wxUpdateUIEvent, wxCommandEvent)
75299490 96 IMPLEMENT_DYNAMIC_CLASS(wxNavigationKeyEvent, wxEvent)
23f681ec
VZ
97 IMPLEMENT_DYNAMIC_CLASS(wxPaletteChangedEvent, wxEvent)
98 IMPLEMENT_DYNAMIC_CLASS(wxQueryNewPaletteEvent, wxEvent)
99 IMPLEMENT_DYNAMIC_CLASS(wxWindowCreateEvent, wxEvent)
100 IMPLEMENT_DYNAMIC_CLASS(wxWindowDestroyEvent, wxEvent)
b96340e6 101 IMPLEMENT_DYNAMIC_CLASS(wxHelpEvent, wxCommandEvent)
69231000 102 IMPLEMENT_DYNAMIC_CLASS(wxContextMenuEvent, wxCommandEvent)
a5e84126 103 IMPLEMENT_DYNAMIC_CLASS(wxMouseCaptureChangedEvent, wxEvent)
63e819f2 104 IMPLEMENT_DYNAMIC_CLASS(wxMouseCaptureLostEvent, wxEvent)
78c91815 105 IMPLEMENT_DYNAMIC_CLASS(wxClipboardTextEvent, wxCommandEvent)
23f681ec 106#endif // wxUSE_GUI
0b746ba8 107
3ed2104c
VZ
108#if wxUSE_BASE
109
23f681ec
VZ
110const wxEventTable *wxEvtHandler::GetEventTable() const
111 { return &wxEvtHandler::sm_eventTable; }
0b746ba8 112
23f681ec
VZ
113const wxEventTable wxEvtHandler::sm_eventTable =
114 { (const wxEventTable *)NULL, &wxEvtHandler::sm_eventTableEntries[0] };
0b746ba8 115
b5a98acd
VZ
116wxEventHashTable &wxEvtHandler::GetEventHashTable() const
117 { return wxEvtHandler::sm_eventHashTable; }
118
119wxEventHashTable wxEvtHandler::sm_eventHashTable(wxEvtHandler::sm_eventTable);
120
23f681ec 121const wxEventTableEntry wxEvtHandler::sm_eventTableEntries[] =
a0e9a5df 122 { wxDECLARE_EVENT_TABLE_TERMINATOR() };
c801d85f 123
1a18887b 124
a0826b11
VZ
125// wxUSE_MEMORY_TRACING considers memory freed from the static objects dtors
126// leaked, so we need to manually clean up all event tables before checking for
127// the memory leaks when using it, however this breaks re-initializing the
128// library (i.e. repeated calls to wxInitialize/wxUninitialize) because the
129// event tables won't be rebuilt the next time, so disable this by default
657a8a35 130#if wxUSE_MEMORY_TRACING
a0826b11 131
afa039f9
JS
132class wxEventTableEntryModule: public wxModule
133{
afa039f9 134public:
a0826b11
VZ
135 wxEventTableEntryModule() { }
136 virtual bool OnInit() { return true; }
137 virtual void OnExit() { wxEventHashTable::ClearAll(); }
138
139 DECLARE_DYNAMIC_CLASS(wxEventTableEntryModule)
afa039f9 140};
a0826b11 141
afa039f9 142IMPLEMENT_DYNAMIC_CLASS(wxEventTableEntryModule, wxModule)
a0826b11 143
657a8a35 144#endif // wxUSE_MEMORY_TRACING
1a18887b 145
8e193f38
VZ
146// ----------------------------------------------------------------------------
147// global variables
148// ----------------------------------------------------------------------------
149
2e4df4bf
VZ
150// common event types are defined here, other event types are defined by the
151// components which use them
b5a98acd 152
c15d9c85
VS
153const wxEventType wxEVT_FIRST = 10000;
154const wxEventType wxEVT_USER_FIRST = wxEVT_FIRST + 2000;
a0e9a5df 155const wxEventType wxEVT_NULL = wxNewEventType();
2e4df4bf 156
9b11752c 157wxDEFINE_EVENT( wxEVT_IDLE, wxIdleEvent );
886dd7d2 158
cf222762 159// Thread and asynchronous call events
c1b293bb 160wxDEFINE_EVENT( wxEVT_THREAD, wxThreadEvent );
cf222762 161wxDEFINE_EVENT( wxEVT_ASYNC_METHOD_CALL, wxAsyncMethodCallEvent );
c1b293bb 162
886dd7d2
VZ
163#endif // wxUSE_BASE
164
165#if wxUSE_GUI
166
ce7fe42e
VZ
167wxDEFINE_EVENT( wxEVT_BUTTON, wxCommandEvent );
168wxDEFINE_EVENT( wxEVT_CHECKBOX, wxCommandEvent );
169wxDEFINE_EVENT( wxEVT_CHOICE, wxCommandEvent );
170wxDEFINE_EVENT( wxEVT_LISTBOX, wxCommandEvent );
171wxDEFINE_EVENT( wxEVT_LISTBOX_DCLICK, wxCommandEvent );
172wxDEFINE_EVENT( wxEVT_CHECKLISTBOX, wxCommandEvent );
173wxDEFINE_EVENT( wxEVT_MENU, wxCommandEvent );
174wxDEFINE_EVENT( wxEVT_SLIDER, wxCommandEvent );
175wxDEFINE_EVENT( wxEVT_RADIOBOX, wxCommandEvent );
176wxDEFINE_EVENT( wxEVT_RADIOBUTTON, wxCommandEvent );
177wxDEFINE_EVENT( wxEVT_SCROLLBAR, wxCommandEvent );
178wxDEFINE_EVENT( wxEVT_VLBOX, wxCommandEvent );
179wxDEFINE_EVENT( wxEVT_COMBOBOX, wxCommandEvent );
180wxDEFINE_EVENT( wxEVT_TOOL_RCLICKED, wxCommandEvent );
181wxDEFINE_EVENT( wxEVT_TOOL_ENTER, wxCommandEvent );
182wxDEFINE_EVENT( wxEVT_SPINCTRL, wxCommandEvent );
183wxDEFINE_EVENT( wxEVT_SPINCTRLDOUBLE, wxCommandEvent );
184wxDEFINE_EVENT( wxEVT_TOOL_DROPDOWN, wxCommandEvent );
185wxDEFINE_EVENT( wxEVT_COMBOBOX_DROPDOWN, wxCommandEvent);
186wxDEFINE_EVENT( wxEVT_COMBOBOX_CLOSEUP, wxCommandEvent);
0b5eceb6 187
0b5eceb6 188// Mouse event types
9b11752c
VZ
189wxDEFINE_EVENT( wxEVT_LEFT_DOWN, wxMouseEvent );
190wxDEFINE_EVENT( wxEVT_LEFT_UP, wxMouseEvent );
191wxDEFINE_EVENT( wxEVT_MIDDLE_DOWN, wxMouseEvent );
192wxDEFINE_EVENT( wxEVT_MIDDLE_UP, wxMouseEvent );
193wxDEFINE_EVENT( wxEVT_RIGHT_DOWN, wxMouseEvent );
194wxDEFINE_EVENT( wxEVT_RIGHT_UP, wxMouseEvent );
195wxDEFINE_EVENT( wxEVT_MOTION, wxMouseEvent );
196wxDEFINE_EVENT( wxEVT_ENTER_WINDOW, wxMouseEvent );
197wxDEFINE_EVENT( wxEVT_LEAVE_WINDOW, wxMouseEvent );
198wxDEFINE_EVENT( wxEVT_LEFT_DCLICK, wxMouseEvent );
199wxDEFINE_EVENT( wxEVT_MIDDLE_DCLICK, wxMouseEvent );
200wxDEFINE_EVENT( wxEVT_RIGHT_DCLICK, wxMouseEvent );
201wxDEFINE_EVENT( wxEVT_SET_FOCUS, wxFocusEvent );
202wxDEFINE_EVENT( wxEVT_KILL_FOCUS, wxFocusEvent );
203wxDEFINE_EVENT( wxEVT_CHILD_FOCUS, wxChildFocusEvent );
204wxDEFINE_EVENT( wxEVT_MOUSEWHEEL, wxMouseEvent );
205wxDEFINE_EVENT( wxEVT_AUX1_DOWN, wxMouseEvent );
206wxDEFINE_EVENT( wxEVT_AUX1_UP, wxMouseEvent );
207wxDEFINE_EVENT( wxEVT_AUX1_DCLICK, wxMouseEvent );
208wxDEFINE_EVENT( wxEVT_AUX2_DOWN, wxMouseEvent );
209wxDEFINE_EVENT( wxEVT_AUX2_UP, wxMouseEvent );
210wxDEFINE_EVENT( wxEVT_AUX2_DCLICK, wxMouseEvent );
0b5eceb6
VZ
211
212// Character input event type
9b11752c 213wxDEFINE_EVENT( wxEVT_CHAR, wxKeyEvent );
1afe4f9b 214wxDEFINE_EVENT( wxEVT_AFTER_CHAR, wxKeyEvent );
9b11752c
VZ
215wxDEFINE_EVENT( wxEVT_CHAR_HOOK, wxKeyEvent );
216wxDEFINE_EVENT( wxEVT_NAVIGATION_KEY, wxNavigationKeyEvent );
217wxDEFINE_EVENT( wxEVT_KEY_DOWN, wxKeyEvent );
218wxDEFINE_EVENT( wxEVT_KEY_UP, wxKeyEvent );
5048c832 219#if wxUSE_HOTKEY
9b11752c 220wxDEFINE_EVENT( wxEVT_HOTKEY, wxKeyEvent );
5048c832 221#endif
0b5eceb6
VZ
222
223// Set cursor event
9b11752c 224wxDEFINE_EVENT( wxEVT_SET_CURSOR, wxSetCursorEvent );
0b5eceb6
VZ
225
226// wxScrollbar and wxSlider event identifiers
9b11752c
VZ
227wxDEFINE_EVENT( wxEVT_SCROLL_TOP, wxScrollEvent );
228wxDEFINE_EVENT( wxEVT_SCROLL_BOTTOM, wxScrollEvent );
229wxDEFINE_EVENT( wxEVT_SCROLL_LINEUP, wxScrollEvent );
230wxDEFINE_EVENT( wxEVT_SCROLL_LINEDOWN, wxScrollEvent );
231wxDEFINE_EVENT( wxEVT_SCROLL_PAGEUP, wxScrollEvent );
232wxDEFINE_EVENT( wxEVT_SCROLL_PAGEDOWN, wxScrollEvent );
233wxDEFINE_EVENT( wxEVT_SCROLL_THUMBTRACK, wxScrollEvent );
234wxDEFINE_EVENT( wxEVT_SCROLL_THUMBRELEASE, wxScrollEvent );
235wxDEFINE_EVENT( wxEVT_SCROLL_CHANGED, wxScrollEvent );
0b5eceb6 236
dca94103
VZ
237// Due to a bug in older wx versions, wxSpinEvents were being sent with type of
238// wxEVT_SCROLL_LINEUP, wxEVT_SCROLL_LINEDOWN and wxEVT_SCROLL_THUMBTRACK. But
239// with the type-safe events in place, these event types are associated with
240// wxScrollEvent. To allow handling of spin events, new event types have been
241// defined in spinbutt.h/spinnbuttcmn.cpp. To maintain backward compatibility
242// the spin event types are being initialized with the scroll event types.
243
244#if wxUSE_SPINBTN
245
9b11752c
VZ
246wxDEFINE_EVENT_ALIAS( wxEVT_SPIN_UP, wxSpinEvent, wxEVT_SCROLL_LINEUP );
247wxDEFINE_EVENT_ALIAS( wxEVT_SPIN_DOWN, wxSpinEvent, wxEVT_SCROLL_LINEDOWN );
248wxDEFINE_EVENT_ALIAS( wxEVT_SPIN, wxSpinEvent, wxEVT_SCROLL_THUMBTRACK );
dca94103
VZ
249
250#endif // wxUSE_SPINBTN
251
0b5eceb6 252// Scroll events from wxWindow
9b11752c
VZ
253wxDEFINE_EVENT( wxEVT_SCROLLWIN_TOP, wxScrollWinEvent );
254wxDEFINE_EVENT( wxEVT_SCROLLWIN_BOTTOM, wxScrollWinEvent );
255wxDEFINE_EVENT( wxEVT_SCROLLWIN_LINEUP, wxScrollWinEvent );
256wxDEFINE_EVENT( wxEVT_SCROLLWIN_LINEDOWN, wxScrollWinEvent );
257wxDEFINE_EVENT( wxEVT_SCROLLWIN_PAGEUP, wxScrollWinEvent );
258wxDEFINE_EVENT( wxEVT_SCROLLWIN_PAGEDOWN, wxScrollWinEvent );
259wxDEFINE_EVENT( wxEVT_SCROLLWIN_THUMBTRACK, wxScrollWinEvent );
260wxDEFINE_EVENT( wxEVT_SCROLLWIN_THUMBRELEASE, wxScrollWinEvent );
0b5eceb6
VZ
261
262// System events
9b11752c
VZ
263wxDEFINE_EVENT( wxEVT_SIZE, wxSizeEvent );
264wxDEFINE_EVENT( wxEVT_SIZING, wxSizeEvent );
265wxDEFINE_EVENT( wxEVT_MOVE, wxMoveEvent );
266wxDEFINE_EVENT( wxEVT_MOVING, wxMoveEvent );
267wxDEFINE_EVENT( wxEVT_MOVE_START, wxMoveEvent );
268wxDEFINE_EVENT( wxEVT_MOVE_END, wxMoveEvent );
269wxDEFINE_EVENT( wxEVT_CLOSE_WINDOW, wxCloseEvent );
270wxDEFINE_EVENT( wxEVT_END_SESSION, wxCloseEvent );
271wxDEFINE_EVENT( wxEVT_QUERY_END_SESSION, wxCloseEvent );
272wxDEFINE_EVENT( wxEVT_HIBERNATE, wxActivateEvent );
273wxDEFINE_EVENT( wxEVT_ACTIVATE_APP, wxActivateEvent );
274wxDEFINE_EVENT( wxEVT_ACTIVATE, wxActivateEvent );
275wxDEFINE_EVENT( wxEVT_CREATE, wxWindowCreateEvent );
276wxDEFINE_EVENT( wxEVT_DESTROY, wxWindowDestroyEvent );
277wxDEFINE_EVENT( wxEVT_SHOW, wxShowEvent );
278wxDEFINE_EVENT( wxEVT_ICONIZE, wxIconizeEvent );
279wxDEFINE_EVENT( wxEVT_MAXIMIZE, wxMaximizeEvent );
280wxDEFINE_EVENT( wxEVT_MOUSE_CAPTURE_CHANGED, wxMouseCaptureChangedEvent );
281wxDEFINE_EVENT( wxEVT_MOUSE_CAPTURE_LOST, wxMouseCaptureLostEvent );
282wxDEFINE_EVENT( wxEVT_PAINT, wxPaintEvent );
283wxDEFINE_EVENT( wxEVT_ERASE_BACKGROUND, wxEraseEvent );
284wxDEFINE_EVENT( wxEVT_NC_PAINT, wxNcPaintEvent );
285wxDEFINE_EVENT( wxEVT_MENU_OPEN, wxMenuEvent );
286wxDEFINE_EVENT( wxEVT_MENU_CLOSE, wxMenuEvent );
287wxDEFINE_EVENT( wxEVT_MENU_HIGHLIGHT, wxMenuEvent );
288wxDEFINE_EVENT( wxEVT_CONTEXT_MENU, wxContextMenuEvent );
289wxDEFINE_EVENT( wxEVT_SYS_COLOUR_CHANGED, wxSysColourChangedEvent );
290wxDEFINE_EVENT( wxEVT_DISPLAY_CHANGED, wxDisplayChangedEvent );
291wxDEFINE_EVENT( wxEVT_QUERY_NEW_PALETTE, wxQueryNewPaletteEvent );
292wxDEFINE_EVENT( wxEVT_PALETTE_CHANGED, wxPaletteChangedEvent );
293wxDEFINE_EVENT( wxEVT_JOY_BUTTON_DOWN, wxJoystickEvent );
294wxDEFINE_EVENT( wxEVT_JOY_BUTTON_UP, wxJoystickEvent );
295wxDEFINE_EVENT( wxEVT_JOY_MOVE, wxJoystickEvent );
296wxDEFINE_EVENT( wxEVT_JOY_ZMOVE, wxJoystickEvent );
297wxDEFINE_EVENT( wxEVT_DROP_FILES, wxDropFilesEvent );
298wxDEFINE_EVENT( wxEVT_INIT_DIALOG, wxInitDialogEvent );
299wxDEFINE_EVENT( wxEVT_UPDATE_UI, wxUpdateUIEvent );
0b5eceb6 300
78c91815 301// Clipboard events
ce7fe42e
VZ
302wxDEFINE_EVENT( wxEVT_TEXT_COPY, wxClipboardTextEvent );
303wxDEFINE_EVENT( wxEVT_TEXT_CUT, wxClipboardTextEvent );
304wxDEFINE_EVENT( wxEVT_TEXT_PASTE, wxClipboardTextEvent );
78c91815 305
0b5eceb6
VZ
306// Generic command events
307// Note: a click is a higher-level event than button down/up
9b11752c
VZ
308wxDEFINE_EVENT( wxEVT_COMMAND_LEFT_CLICK, wxCommandEvent );
309wxDEFINE_EVENT( wxEVT_COMMAND_LEFT_DCLICK, wxCommandEvent );
310wxDEFINE_EVENT( wxEVT_COMMAND_RIGHT_CLICK, wxCommandEvent );
311wxDEFINE_EVENT( wxEVT_COMMAND_RIGHT_DCLICK, wxCommandEvent );
312wxDEFINE_EVENT( wxEVT_COMMAND_SET_FOCUS, wxCommandEvent );
313wxDEFINE_EVENT( wxEVT_COMMAND_KILL_FOCUS, wxCommandEvent );
314wxDEFINE_EVENT( wxEVT_COMMAND_ENTER, wxCommandEvent );
0b5eceb6
VZ
315
316// Help events
9b11752c
VZ
317wxDEFINE_EVENT( wxEVT_HELP, wxHelpEvent );
318wxDEFINE_EVENT( wxEVT_DETAILED_HELP, wxHelpEvent );
6164f93c 319
886dd7d2
VZ
320#endif // wxUSE_GUI
321
322#if wxUSE_BASE
323
b46b1d59
VZ
324wxIdleMode wxIdleEvent::sm_idleMode = wxIDLE_PROCESS_ALL;
325
6164f93c
VZ
326// ============================================================================
327// implementation
328// ============================================================================
0b5eceb6 329
0b5eceb6
VZ
330// ----------------------------------------------------------------------------
331// event initialization
332// ----------------------------------------------------------------------------
333
334int wxNewEventType()
335{
336 // MT-FIXME
337 static int s_lastUsedEventType = wxEVT_FIRST;
338
339 return s_lastUsedEventType++;
340}
3c778901
VZ
341// ----------------------------------------------------------------------------
342// wxEventFunctor
343// ----------------------------------------------------------------------------
344
345wxEventFunctor::~wxEventFunctor()
346{
347}
0b5eceb6 348
8e193f38
VZ
349// ----------------------------------------------------------------------------
350// wxEvent
351// ----------------------------------------------------------------------------
352
c801d85f 353/*
d48b06bd
FM
354 * General wxWidgets events, covering all interesting things that might happen
355 * (button clicking, resizing, setting text in widgets, etc.).
c801d85f
KB
356 *
357 * For each completely new event type, derive a new event class.
358 *
359 */
360
d48b06bd 361wxEvent::wxEvent(int theId, wxEventType commandType)
c801d85f 362{
8e72b8b5 363 m_eventType = commandType;
3c778901 364 m_eventObject = NULL;
0b746ba8
VZ
365 m_timeStamp = 0;
366 m_id = theId;
1c624631 367 m_skipped = false;
3c778901 368 m_callbackUserData = NULL;
bbdee10d 369 m_handlerToProcessOnlyIn = NULL;
1c624631 370 m_isCommandEvent = false;
1648d51b 371 m_propagationLevel = wxEVENT_PROPAGATE_NONE;
29de6f40 372 m_wasProcessed = false;
3bad8c39 373 m_willBeProcessedAgain = false;
c801d85f
KB
374}
375
0e097789 376wxEvent::wxEvent(const wxEvent& src)
a34ef99b 377 : wxObject(src)
e6a6feba
GD
378 , m_eventObject(src.m_eventObject)
379 , m_eventType(src.m_eventType)
380 , m_timeStamp(src.m_timeStamp)
381 , m_id(src.m_id)
382 , m_callbackUserData(src.m_callbackUserData)
bbdee10d 383 , m_handlerToProcessOnlyIn(NULL)
6fd5903a 384 , m_propagationLevel(src.m_propagationLevel)
e6a6feba
GD
385 , m_skipped(src.m_skipped)
386 , m_isCommandEvent(src.m_isCommandEvent)
29de6f40 387 , m_wasProcessed(false)
3bad8c39 388 , m_willBeProcessedAgain(false)
a737331d 389{
a737331d
GL
390}
391
0e097789
VZ
392wxEvent& wxEvent::operator=(const wxEvent& src)
393{
394 wxObject::operator=(src);
395
396 m_eventObject = src.m_eventObject;
397 m_eventType = src.m_eventType;
398 m_timeStamp = src.m_timeStamp;
399 m_id = src.m_id;
400 m_callbackUserData = src.m_callbackUserData;
bbdee10d 401 m_handlerToProcessOnlyIn = NULL;
0e097789
VZ
402 m_propagationLevel = src.m_propagationLevel;
403 m_skipped = src.m_skipped;
404 m_isCommandEvent = src.m_isCommandEvent;
405
bbdee10d 406 // don't change m_wasProcessed
29de6f40 407
3bad8c39
VZ
408 // While the original again could be passed to another handler, this one
409 // isn't going to be processed anywhere else by default.
410 m_willBeProcessedAgain = false;
411
0e097789
VZ
412 return *this;
413}
414
3ed2104c
VZ
415#endif // wxUSE_BASE
416
e90c1d2a
VZ
417#if wxUSE_GUI
418
8e40ed85
FM
419// ----------------------------------------------------------------------------
420// wxCommandEvent
421// ----------------------------------------------------------------------------
c801d85f 422
7798a18e 423wxCommandEvent::wxCommandEvent(wxEventType commandType, int theId)
b5a98acd 424 : wxEvent(theId, commandType)
c801d85f 425{
3c778901
VZ
426 m_clientData = NULL;
427 m_clientObject = NULL;
1c624631 428 m_isCommandEvent = true;
1648d51b
VZ
429
430 // the command events are propagated upwards by default
431 m_propagationLevel = wxEVENT_PROPAGATE_MAX;
c801d85f
KB
432}
433
ab1931f9
KH
434wxString wxCommandEvent::GetString() const
435{
ce7fe42e 436 if (m_eventType != wxEVT_TEXT || !m_eventObject)
cc6ceca7 437 {
ab1931f9 438 return m_cmdString;
cc6ceca7 439 }
ab1931f9
KH
440 else
441 {
89438177 442#if wxUSE_TEXTCTRL
ab1931f9 443 wxTextCtrl *txt = wxDynamicCast(m_eventObject, wxTextCtrl);
cc6ceca7 444 if ( txt )
ab1931f9
KH
445 return txt->GetValue();
446 else
89438177 447#endif // wxUSE_TEXTCTRL
ab1931f9
KH
448 return m_cmdString;
449 }
450}
451
8e40ed85
FM
452// ----------------------------------------------------------------------------
453// wxUpdateUIEvent
454// ----------------------------------------------------------------------------
0b30bb0b
JS
455
456#if wxUSE_LONGLONG
e39af974 457wxLongLong wxUpdateUIEvent::sm_lastUpdate = 0;
0b30bb0b
JS
458#endif
459
e39af974
JS
460long wxUpdateUIEvent::sm_updateInterval = 0;
461
462wxUpdateUIMode wxUpdateUIEvent::sm_updateMode = wxUPDATE_UI_PROCESS_ALL;
0b30bb0b
JS
463
464// Can we update?
a7bc03c9 465bool wxUpdateUIEvent::CanUpdate(wxWindowBase *win)
0b30bb0b 466{
e39af974
JS
467 // Don't update if we've switched global updating off
468 // and this window doesn't support updates.
469 if (win &&
470 (GetMode() == wxUPDATE_UI_PROCESS_SPECIFIED &&
471 ((win->GetExtraStyle() & wxWS_EX_PROCESS_UI_UPDATES) == 0)))
1c624631 472 return false;
6d075845
VZ
473
474 // Don't update children of the hidden windows: this is useless as any
475 // change to their state won't be seen by the user anyhow. Notice that this
476 // argument doesn't apply to the hidden windows (with visible parent)
477 // themselves as they could be shown by their EVT_UPDATE_UI handler.
478 if ( win->GetParent() && !win->GetParent()->IsShownOnScreen() )
479 return false;
b5a98acd 480
e39af974 481 if (sm_updateInterval == -1)
1c624631 482 return false;
534b127c
WS
483
484 if (sm_updateInterval == 0)
1c624631 485 return true;
534b127c 486
0b30bb0b 487#if wxUSE_STOPWATCH && wxUSE_LONGLONG
534b127c
WS
488 wxLongLong now = wxGetLocalTimeMillis();
489 if (now > (sm_lastUpdate + sm_updateInterval))
490 {
1c624631 491 return true;
0b30bb0b 492 }
534b127c 493
1c624631 494 return false;
534b127c
WS
495#else
496 // If we don't have wxStopWatch or wxLongLong, we
497 // should err on the safe side and update now anyway.
498 return true;
499#endif
0b30bb0b
JS
500}
501
502// Reset the update time to provide a delay until the next
503// time we should update
504void wxUpdateUIEvent::ResetUpdateTime()
505{
506#if wxUSE_STOPWATCH && wxUSE_LONGLONG
e39af974 507 if (sm_updateInterval > 0)
0b30bb0b
JS
508 {
509 wxLongLong now = wxGetLocalTimeMillis();
e39af974 510 if (now > (sm_lastUpdate + sm_updateInterval))
0b30bb0b 511 {
e39af974 512 sm_lastUpdate = now;
0b30bb0b
JS
513 }
514 }
515#endif
516}
517
8e40ed85
FM
518// ----------------------------------------------------------------------------
519// wxScrollEvent
520// ----------------------------------------------------------------------------
c801d85f 521
0b746ba8
VZ
522wxScrollEvent::wxScrollEvent(wxEventType commandType,
523 int id,
524 int pos,
525 int orient)
e6a6feba 526 : wxCommandEvent(commandType, id)
c801d85f 527{
0b746ba8
VZ
528 m_extraLong = orient;
529 m_commandInt = pos;
c801d85f
KB
530}
531
8e40ed85
FM
532// ----------------------------------------------------------------------------
533// wxScrollWinEvent
534// ----------------------------------------------------------------------------
d1367c3d
RR
535
536wxScrollWinEvent::wxScrollWinEvent(wxEventType commandType,
537 int pos,
538 int orient)
d1367c3d 539{
c5b42c87 540 m_eventType = commandType;
d1367c3d
RR
541 m_extraLong = orient;
542 m_commandInt = pos;
543}
544
8e40ed85
FM
545// ----------------------------------------------------------------------------
546// wxMouseEvent
547// ----------------------------------------------------------------------------
c801d85f 548
7798a18e 549wxMouseEvent::wxMouseEvent(wxEventType commandType)
c801d85f 550{
0b746ba8 551 m_eventType = commandType;
8866abbb
VZ
552
553 m_x = 0;
554 m_y = 0;
555
1c624631 556 m_leftDown = false;
1c624631 557 m_middleDown = false;
8866abbb 558 m_rightDown = false;
01101e2d
VZ
559 m_aux1Down = false;
560 m_aux2Down = false;
8866abbb 561
8866abbb
VZ
562 m_clickCount = -1;
563
41469c9e 564 m_wheelAxis = wxMOUSE_WHEEL_VERTICAL;
d2c52078
RD
565 m_wheelRotation = 0;
566 m_wheelDelta = 0;
567 m_linesPerAction = 0;
5833988c 568 m_columnsPerAction = 0;
c801d85f
KB
569}
570
abcbaea7
VZ
571void wxMouseEvent::Assign(const wxMouseEvent& event)
572{
0e097789 573 wxEvent::operator=(event);
3232da9d
VZ
574
575 // Borland C++ 5.82 doesn't compile an explicit call to an implicitly
576 // defined operator=() so need to do it this way:
577 *static_cast<wxMouseState *>(this) = event;
92309201 578
abcbaea7
VZ
579 m_x = event.m_x;
580 m_y = event.m_y;
581
582 m_leftDown = event.m_leftDown;
583 m_middleDown = event.m_middleDown;
584 m_rightDown = event.m_rightDown;
01101e2d
VZ
585 m_aux1Down = event.m_aux1Down;
586 m_aux2Down = event.m_aux2Down;
abcbaea7 587
abcbaea7
VZ
588 m_wheelRotation = event.m_wheelRotation;
589 m_wheelDelta = event.m_wheelDelta;
590 m_linesPerAction = event.m_linesPerAction;
5833988c 591 m_columnsPerAction = event.m_columnsPerAction;
aea37008 592 m_wheelAxis = event.m_wheelAxis;
abcbaea7
VZ
593}
594
3e89999c 595// return true if was a button dclick event
c801d85f
KB
596bool wxMouseEvent::ButtonDClick(int but) const
597{
0b746ba8
VZ
598 switch (but)
599 {
3e89999c
VZ
600 default:
601 wxFAIL_MSG(wxT("invalid parameter in wxMouseEvent::ButtonDClick"));
602 // fall through
603
604 case wxMOUSE_BTN_ANY:
01101e2d
VZ
605 return (LeftDClick() || MiddleDClick() || RightDClick() ||
606 Aux1DClick() || Aux2DClick());
3e89999c
VZ
607
608 case wxMOUSE_BTN_LEFT:
0b746ba8 609 return LeftDClick();
3e89999c
VZ
610
611 case wxMOUSE_BTN_MIDDLE:
0b746ba8 612 return MiddleDClick();
3e89999c
VZ
613
614 case wxMOUSE_BTN_RIGHT:
0b746ba8 615 return RightDClick();
01101e2d
VZ
616
617 case wxMOUSE_BTN_AUX1:
618 return Aux1DClick();
619
620 case wxMOUSE_BTN_AUX2:
621 return Aux2DClick();
0b746ba8 622 }
c801d85f
KB
623}
624
3e89999c 625// return true if was a button down event
c801d85f
KB
626bool wxMouseEvent::ButtonDown(int but) const
627{
0b746ba8
VZ
628 switch (but)
629 {
3e89999c
VZ
630 default:
631 wxFAIL_MSG(wxT("invalid parameter in wxMouseEvent::ButtonDown"));
632 // fall through
633
634 case wxMOUSE_BTN_ANY:
01101e2d
VZ
635 return (LeftDown() || MiddleDown() || RightDown() ||
636 Aux1Down() || Aux2Down());
3e89999c
VZ
637
638 case wxMOUSE_BTN_LEFT:
0b746ba8 639 return LeftDown();
3e89999c
VZ
640
641 case wxMOUSE_BTN_MIDDLE:
0b746ba8 642 return MiddleDown();
3e89999c
VZ
643
644 case wxMOUSE_BTN_RIGHT:
0b746ba8 645 return RightDown();
01101e2d
VZ
646
647 case wxMOUSE_BTN_AUX1:
648 return Aux1Down();
649
650 case wxMOUSE_BTN_AUX2:
651 return Aux2Down();
0b746ba8 652 }
c801d85f
KB
653}
654
3e89999c 655// return true if was a button up event
c801d85f
KB
656bool wxMouseEvent::ButtonUp(int but) const
657{
1e6feb95
VZ
658 switch (but)
659 {
3e89999c
VZ
660 default:
661 wxFAIL_MSG(wxT("invalid parameter in wxMouseEvent::ButtonUp"));
662 // fall through
663
664 case wxMOUSE_BTN_ANY:
01101e2d
VZ
665 return (LeftUp() || MiddleUp() || RightUp() ||
666 Aux1Up() || Aux2Up());
3e89999c
VZ
667
668 case wxMOUSE_BTN_LEFT:
0b746ba8 669 return LeftUp();
3e89999c
VZ
670
671 case wxMOUSE_BTN_MIDDLE:
0b746ba8 672 return MiddleUp();
3e89999c
VZ
673
674 case wxMOUSE_BTN_RIGHT:
0b746ba8 675 return RightUp();
01101e2d
VZ
676
677 case wxMOUSE_BTN_AUX1:
678 return Aux1Up();
679
680 case wxMOUSE_BTN_AUX2:
681 return Aux2Up();
0b746ba8 682 }
c801d85f
KB
683}
684
3e89999c 685// return true if the given button is currently changing state
c801d85f
KB
686bool wxMouseEvent::Button(int but) const
687{
1e6feb95
VZ
688 switch (but)
689 {
0b746ba8 690 default:
223d09f6 691 wxFAIL_MSG(wxT("invalid parameter in wxMouseEvent::Button"));
3e89999c
VZ
692 // fall through
693
694 case wxMOUSE_BTN_ANY:
695 return ButtonUp(wxMOUSE_BTN_ANY) ||
696 ButtonDown(wxMOUSE_BTN_ANY) ||
697 ButtonDClick(wxMOUSE_BTN_ANY);
698
699 case wxMOUSE_BTN_LEFT:
700 return LeftDown() || LeftUp() || LeftDClick();
701
702 case wxMOUSE_BTN_MIDDLE:
703 return MiddleDown() || MiddleUp() || MiddleDClick();
704
705 case wxMOUSE_BTN_RIGHT:
706 return RightDown() || RightUp() || RightDClick();
01101e2d
VZ
707
708 case wxMOUSE_BTN_AUX1:
709 return Aux1Down() || Aux1Up() || Aux1DClick();
710
711 case wxMOUSE_BTN_AUX2:
712 return Aux2Down() || Aux2Up() || Aux2DClick();
0b746ba8 713 }
c801d85f
KB
714}
715
1e6feb95
VZ
716int wxMouseEvent::GetButton() const
717{
01101e2d 718 for ( int i = 1; i < wxMOUSE_BTN_MAX; i++ )
1e6feb95
VZ
719 {
720 if ( Button(i) )
721 {
722 return i;
723 }
724 }
725
3e89999c 726 return wxMOUSE_BTN_NONE;
1e6feb95
VZ
727}
728
c801d85f
KB
729// Find the logical position of the event given the DC
730wxPoint wxMouseEvent::GetLogicalPosition(const wxDC& dc) const
731{
0757d27c
JS
732 wxPoint pt(dc.DeviceToLogicalX(m_x), dc.DeviceToLogicalY(m_y));
733 return pt;
c801d85f
KB
734}
735
8e40ed85
FM
736// ----------------------------------------------------------------------------
737// wxKeyEvent
738// ----------------------------------------------------------------------------
c801d85f 739
7798a18e 740wxKeyEvent::wxKeyEvent(wxEventType type)
c801d85f 741{
0b746ba8 742 m_eventType = type;
86408a03 743 m_keyCode = WXK_NONE;
2b5f62a0 744#if wxUSE_UNICODE
86408a03 745 m_uniChar = WXK_NONE;
2b5f62a0 746#endif
3a95f73c 747
2f7baaec
VZ
748 m_x =
749 m_y = wxDefaultCoord;
750 m_hasPosition = false;
751
3a95f73c 752 InitPropagation();
c801d85f
KB
753}
754
92309201 755wxKeyEvent::wxKeyEvent(const wxKeyEvent& evt)
0e097789
VZ
756 : wxEvent(evt),
757 wxKeyboardState(evt)
2b5f62a0 758{
dfc7216d 759 DoAssignMembers(evt);
3a95f73c
VZ
760
761 InitPropagation();
2b5f62a0 762}
12a3f227 763
e45d9090
VZ
764wxKeyEvent::wxKeyEvent(wxEventType eventType, const wxKeyEvent& evt)
765 : wxEvent(evt),
766 wxKeyboardState(evt)
767{
768 DoAssignMembers(evt);
769
770 m_eventType = eventType;
3a95f73c
VZ
771
772 InitPropagation();
e45d9090
VZ
773}
774
2f7baaec
VZ
775void wxKeyEvent::InitPositionIfNecessary() const
776{
777 if ( m_hasPosition )
778 return;
779
780 // We're const because we're called from const Get[XY]() methods but we
781 // need to update the "cached" values.
782 wxKeyEvent& self = const_cast<wxKeyEvent&>(*this);
783 self.m_hasPosition = true;
784
785 // The only position we can possibly associate with the keyboard event on
786 // the platforms where it doesn't carry it already is the mouse position.
787 wxGetMousePosition(&self.m_x, &self.m_y);
788
789 // If this event is associated with a window, the position should be in its
790 // client coordinates, but otherwise leave it in screen coordinates as what
791 // else can we use?
792 wxWindow* const win = wxDynamicCast(GetEventObject(), wxWindow);
793 if ( win )
794 win->ScreenToClient(&self.m_x, &self.m_y);
795}
796
797wxCoord wxKeyEvent::GetX() const
798{
799 InitPositionIfNecessary();
800
801 return m_x;
802}
803
804wxCoord wxKeyEvent::GetY() const
805{
806 InitPositionIfNecessary();
807
808 return m_y;
809}
810
7a34307e
VZ
811bool wxKeyEvent::IsKeyInCategory(int category) const
812{
813 switch ( GetKeyCode() )
814 {
815 case WXK_LEFT:
816 case WXK_RIGHT:
817 case WXK_UP:
818 case WXK_DOWN:
819 case WXK_NUMPAD_LEFT:
820 case WXK_NUMPAD_RIGHT:
821 case WXK_NUMPAD_UP:
822 case WXK_NUMPAD_DOWN:
823 return (category & WXK_CATEGORY_ARROW) != 0;
824
825 case WXK_PAGEDOWN:
826 case WXK_END:
827 case WXK_NUMPAD_PAGEUP:
828 case WXK_NUMPAD_PAGEDOWN:
829 return (category & WXK_CATEGORY_PAGING) != 0;
830
831 case WXK_HOME:
832 case WXK_PAGEUP:
833 case WXK_NUMPAD_HOME:
834 case WXK_NUMPAD_END:
835 return (category & WXK_CATEGORY_JUMP) != 0;
836
837 case WXK_TAB:
4f742042 838 case WXK_NUMPAD_TAB:
7a34307e
VZ
839 return (category & WXK_CATEGORY_TAB) != 0;
840
841 case WXK_BACK:
842 case WXK_DELETE:
843 case WXK_NUMPAD_DELETE:
844 return (category & WXK_CATEGORY_CUT) != 0;
845
846 default:
847 return false;
848 }
849}
850
8e40ed85
FM
851// ----------------------------------------------------------------------------
852// wxWindowCreateEvent
853// ----------------------------------------------------------------------------
854
42e69d6b 855wxWindowCreateEvent::wxWindowCreateEvent(wxWindow *win)
42e69d6b 856{
cfe17b74 857 SetEventType(wxEVT_CREATE);
42e69d6b
VZ
858 SetEventObject(win);
859}
860
8e40ed85
FM
861// ----------------------------------------------------------------------------
862// wxWindowDestroyEvent
863// ----------------------------------------------------------------------------
864
42e69d6b 865wxWindowDestroyEvent::wxWindowDestroyEvent(wxWindow *win)
42e69d6b 866{
cfe17b74 867 SetEventType(wxEVT_DESTROY);
42e69d6b
VZ
868 SetEventObject(win);
869}
870
8e40ed85
FM
871// ----------------------------------------------------------------------------
872// wxChildFocusEvent
873// ----------------------------------------------------------------------------
874
456bc6d9
VZ
875wxChildFocusEvent::wxChildFocusEvent(wxWindow *win)
876 : wxCommandEvent(wxEVT_CHILD_FOCUS)
877{
878 SetEventObject(win);
879}
880
b107e8d5
VZ
881// ----------------------------------------------------------------------------
882// wxHelpEvent
883// ----------------------------------------------------------------------------
884
885/* static */
886wxHelpEvent::Origin wxHelpEvent::GuessOrigin(Origin origin)
887{
888 if ( origin == Origin_Unknown )
889 {
890 // assume that the event comes from the help button if it's not from
891 // keyboard and that pressing F1 always results in the help event
892 origin = wxGetKeyState(WXK_F1) ? Origin_Keyboard : Origin_HelpButton;
893 }
894
895 return origin;
896}
897
dd070522
VZ
898#endif // wxUSE_GUI
899
9416681d
VS
900
901#if wxUSE_BASE
902
b5a98acd
VZ
903// ----------------------------------------------------------------------------
904// wxEventHashTable
905// ----------------------------------------------------------------------------
906
afa039f9
JS
907static const int EVENT_TYPE_TABLE_INIT_SIZE = 31; // Not too big not too small...
908
909wxEventHashTable* wxEventHashTable::sm_first = NULL;
b5a98acd
VZ
910
911wxEventHashTable::wxEventHashTable(const wxEventTable &table)
912 : m_table(table),
1c624631 913 m_rebuildHash(true)
b5a98acd
VZ
914{
915 AllocEventTypeTable(EVENT_TYPE_TABLE_INIT_SIZE);
1a18887b 916
afa039f9
JS
917 m_next = sm_first;
918 if (m_next)
919 m_next->m_previous = this;
920 sm_first = this;
b5a98acd
VZ
921}
922
923wxEventHashTable::~wxEventHashTable()
afa039f9
JS
924{
925 if (m_next)
926 m_next->m_previous = m_previous;
927 if (m_previous)
928 m_previous->m_next = m_next;
929 if (sm_first == this)
930 sm_first = m_next;
1a18887b 931
afa039f9
JS
932 Clear();
933}
934
935void wxEventHashTable::Clear()
b5a98acd 936{
a0826b11 937 for ( size_t i = 0; i < m_size; i++ )
b5a98acd
VZ
938 {
939 EventTypeTablePointer eTTnode = m_eventTypeTable[i];
a0826b11 940 delete eTTnode;
b5a98acd
VZ
941 }
942
5276b0a5 943 wxDELETEA(m_eventTypeTable);
a0826b11 944
afa039f9
JS
945 m_size = 0;
946}
947
657a8a35 948#if wxUSE_MEMORY_TRACING
a0826b11 949
afa039f9
JS
950// Clear all tables
951void wxEventHashTable::ClearAll()
952{
953 wxEventHashTable* table = sm_first;
954 while (table)
955 {
956 table->Clear();
957 table = table->m_next;
958 }
b5a98acd
VZ
959}
960
657a8a35 961#endif // wxUSE_MEMORY_TRACING
a0826b11 962
b5a98acd
VZ
963bool wxEventHashTable::HandleEvent(wxEvent &event, wxEvtHandler *self)
964{
965 if (m_rebuildHash)
966 {
967 InitHashTable();
1c624631 968 m_rebuildHash = false;
b5a98acd 969 }
1a18887b 970
afa039f9 971 if (!m_eventTypeTable)
1a18887b 972 return false;
b5a98acd
VZ
973
974 // Find all entries for the given event type.
975 wxEventType eventType = event.GetEventType();
976 const EventTypeTablePointer eTTnode = m_eventTypeTable[eventType % m_size];
977 if (eTTnode && eTTnode->eventType == eventType)
978 {
979 // Now start the search for an event handler
980 // that can handle an event with the given ID.
1c624631
VZ
981 const wxEventTableEntryPointerArray&
982 eventEntryTable = eTTnode->eventEntryTable;
b5a98acd 983
1c624631
VZ
984 const size_t count = eventEntryTable.GetCount();
985 for (size_t n = 0; n < count; n++)
b5a98acd 986 {
03f3617b
VZ
987 const wxEventTableEntry& entry = *eventEntryTable[n];
988 if ( wxEvtHandler::ProcessEventIfMatchesId(entry, self, event) )
1c624631 989 return true;
b5a98acd 990 }
b5a98acd
VZ
991 }
992
1c624631 993 return false;
b5a98acd
VZ
994}
995
996void wxEventHashTable::InitHashTable()
997{
998 // Loop over the event tables and all its base tables.
999 const wxEventTable *table = &m_table;
1000 while (table)
1001 {
1002 // Retrieve all valid event handler entries
1003 const wxEventTableEntry *entry = table->entries;
1004 while (entry->m_fn != 0)
1005 {
1006 // Add the event entry in the Hash.
1007 AddEntry(*entry);
1008
1009 entry++;
1010 }
1011
1012 table = table->baseTable;
1013 }
1014
4c51a665 1015 // Let's free some memory.
b5a98acd
VZ
1016 size_t i;
1017 for(i = 0; i < m_size; i++)
1018 {
1019 EventTypeTablePointer eTTnode = m_eventTypeTable[i];
1020 if (eTTnode)
1021 {
1022 eTTnode->eventEntryTable.Shrink();
1023 }
1024 }
1025}
1026
1027void wxEventHashTable::AddEntry(const wxEventTableEntry &entry)
1028{
afa039f9
JS
1029 // This might happen 'accidentally' as the app is exiting
1030 if (!m_eventTypeTable)
1031 return;
1a18887b 1032
b5a98acd
VZ
1033 EventTypeTablePointer *peTTnode = &m_eventTypeTable[entry.m_eventType % m_size];
1034 EventTypeTablePointer eTTnode = *peTTnode;
1035
1036 if (eTTnode)
1037 {
1038 if (eTTnode->eventType != entry.m_eventType)
1039 {
1040 // Resize the table!
1041 GrowEventTypeTable();
1042 // Try again to add it.
1043 AddEntry(entry);
1044 return;
1045 }
1046 }
1047 else
1048 {
1049 eTTnode = new EventTypeTable;
1050 eTTnode->eventType = entry.m_eventType;
1051 *peTTnode = eTTnode;
1052 }
1053
1054 // Fill all hash entries between entry.m_id and entry.m_lastId...
1055 eTTnode->eventEntryTable.Add(&entry);
1056}
1057
1058void wxEventHashTable::AllocEventTypeTable(size_t size)
1059{
1060 m_eventTypeTable = new EventTypeTablePointer[size];
1061 memset((void *)m_eventTypeTable, 0, sizeof(EventTypeTablePointer)*size);
1062 m_size = size;
1063}
1064
1065void wxEventHashTable::GrowEventTypeTable()
1066{
1067 size_t oldSize = m_size;
1068 EventTypeTablePointer *oldEventTypeTable = m_eventTypeTable;
1069
1070 // TODO: Search the most optimal grow sequence
1071 AllocEventTypeTable(/* GetNextPrime(oldSize) */oldSize*2+1);
1072
1073 for ( size_t i = 0; i < oldSize; /* */ )
1074 {
1075 EventTypeTablePointer eTToldNode = oldEventTypeTable[i];
1076 if (eTToldNode)
1077 {
1078 EventTypeTablePointer *peTTnode = &m_eventTypeTable[eTToldNode->eventType % m_size];
1079 EventTypeTablePointer eTTnode = *peTTnode;
1080
1081 // Check for collision, we don't want any.
1082 if (eTTnode)
1083 {
1084 GrowEventTypeTable();
1085 continue; // Don't increment the counter,
1086 // as we still need to add this element.
1087 }
1088 else
1089 {
1090 // Get the old value and put it in the new table.
1091 *peTTnode = oldEventTypeTable[i];
1092 }
1093 }
1094
1095 i++;
1096 }
1097
1098 delete[] oldEventTypeTable;
1099}
1100
456bc6d9
VZ
1101// ----------------------------------------------------------------------------
1102// wxEvtHandler
1103// ----------------------------------------------------------------------------
1104
0b746ba8 1105wxEvtHandler::wxEvtHandler()
c801d85f 1106{
3c778901
VZ
1107 m_nextHandler = NULL;
1108 m_previousHandler = NULL;
1c624631 1109 m_enabled = true;
3c778901
VZ
1110 m_dynamicEvents = NULL;
1111 m_pendingEvents = NULL;
aa767a45 1112
b88c44e7
RD
1113 // no client data (yet)
1114 m_clientData = NULL;
1115 m_clientDataType = wxClientData_None;
c801d85f
KB
1116}
1117
0b746ba8 1118wxEvtHandler::~wxEvtHandler()
c801d85f 1119{
7f853dd0 1120 Unlink();
0b746ba8
VZ
1121
1122 if (m_dynamicEvents)
fe71f65c 1123 {
3c448b2e
VZ
1124 for ( wxList::iterator it = m_dynamicEvents->begin(),
1125 end = m_dynamicEvents->end();
1126 it != end;
1127 ++it )
0b746ba8 1128 {
df5168c4 1129 wxDynamicEventTableEntry *entry = (wxDynamicEventTableEntry*)*it;
2e4df4bf 1130
cc6ceca7 1131 // Remove ourselves from sink destructor notifications
3c778901 1132 // (this has usually been done, in wxTrackable destructor)
f3ff831f 1133 wxEvtHandler *eventSink = entry->m_fn->GetEvtHandler();
cc6ceca7 1134 if ( eventSink )
2ef989c9 1135 {
cc6ceca7
VZ
1136 wxEventConnectionRef * const
1137 evtConnRef = FindRefInTrackerList(eventSink);
1138 if ( evtConnRef )
1139 {
1140 eventSink->RemoveNode(evtConnRef);
1141 delete evtConnRef;
1142 }
2ef989c9 1143 }
cc6ceca7 1144
3c778901 1145 delete entry->m_callbackUserData;
0b746ba8 1146 delete entry;
0b746ba8
VZ
1147 }
1148 delete m_dynamicEvents;
dde19c21 1149 }
7214297d 1150
dde19c21 1151 // Remove us from the list of the pending events if necessary.
8e40ed85
FM
1152 if (wxTheApp)
1153 wxTheApp->RemovePendingEventHandler(this);
b88c44e7 1154
cae9e7b1
FM
1155 DeletePendingEvents();
1156
b88c44e7
RD
1157 // we only delete object data, not untyped
1158 if ( m_clientDataType == wxClientData_Object )
1159 delete m_clientObject;
c801d85f
KB
1160}
1161
7f853dd0
FM
1162void wxEvtHandler::Unlink()
1163{
1164 // this event handler must take itself out of the chain of handlers:
1165
1166 if (m_previousHandler)
1167 m_previousHandler->SetNextHandler(m_nextHandler);
1168
1169 if (m_nextHandler)
1170 m_nextHandler->SetPreviousHandler(m_previousHandler);
1171
1172 m_nextHandler = NULL;
1173 m_previousHandler = NULL;
1174}
1175
1176bool wxEvtHandler::IsUnlinked() const
1177{
1178 return m_previousHandler == NULL &&
1179 m_nextHandler == NULL;
1180}
1181
58cc1587
VZ
1182wxEventFilter* wxEvtHandler::ms_filterList = NULL;
1183
1184/* static */ void wxEvtHandler::AddFilter(wxEventFilter* filter)
1185{
1186 wxCHECK_RET( filter, "NULL filter" );
1187
1188 filter->m_next = ms_filterList;
1189 ms_filterList = filter;
1190}
1191
1192/* static */ void wxEvtHandler::RemoveFilter(wxEventFilter* filter)
1193{
1194 wxEventFilter* prev = NULL;
1195 for ( wxEventFilter* f = ms_filterList; f; f = f->m_next )
1196 {
1197 if ( f == filter )
1198 {
1199 // Set the previous list element or the list head to the next
1200 // element.
1201 if ( prev )
1202 prev->m_next = f->m_next;
1203 else
1204 ms_filterList = f->m_next;
1205
1206 // Also reset the next pointer in the filter itself just to avoid
1207 // having possibly dangling pointers, even though it's not strictly
1208 // necessary.
1209 f->m_next = NULL;
1210
1211 // Skip the assert below.
1212 return;
1213 }
956b1c85
VZ
1214
1215 prev = f;
58cc1587
VZ
1216 }
1217
1218 wxFAIL_MSG( "Filter not found" );
1219}
1220
7214297d 1221#if wxUSE_THREADS
aadbdf11 1222
76bfdc9a 1223bool wxEvtHandler::ProcessThreadEvent(const wxEvent& event)
7214297d 1224{
7214297d 1225 // check that we are really in a child thread
8e193f38
VZ
1226 wxASSERT_MSG( !wxThread::IsMain(),
1227 wxT("use ProcessEvent() in main thread") );
1228
1229 AddPendingEvent(event);
7214297d 1230
1c624631 1231 return true;
8e193f38
VZ
1232}
1233
1234#endif // wxUSE_THREADS
1235
c3f94162 1236void wxEvtHandler::QueueEvent(wxEvent *event)
8e193f38 1237{
c3f94162 1238 wxCHECK_RET( event, "NULL event can't be posted" );
7a5c8ac4 1239
8e40ed85 1240 if (!wxTheApp)
dde19c21
FM
1241 {
1242 // we need an event loop which manages the list of event handlers with
1243 // pending events... cannot proceed without it!
8e40ed85 1244 wxLogDebug("No application object! Cannot queue this event!");
9f54c829
FM
1245
1246 // anyway delete the given event to avoid memory leaks
1247 delete event;
1248
dde19c21
FM
1249 return;
1250 }
1251
c3f94162 1252 // 1) Add this event to our list of pending events
8ebec7dc 1253 wxENTER_CRIT_SECT( m_pendingEventsLock );
16c1f79c 1254
8e193f38 1255 if ( !m_pendingEvents )
cae9e7b1 1256 m_pendingEvents = new wxList;
7214297d 1257
c3f94162 1258 m_pendingEvents->Append(event);
7214297d 1259
16c1f79c
RR
1260 // 2) Add this event handler to list of event handlers that
1261 // have pending events.
cfe17b74 1262
8e40ed85 1263 wxTheApp->AppendPendingEventHandler(this);
6164f93c 1264
a715b990
VZ
1265 // only release m_pendingEventsLock now because otherwise there is a race
1266 // condition as described in the ticket #9093: we could process the event
1267 // just added to m_pendingEvents in our ProcessPendingEvents() below before
079f4130 1268 // we had time to append this pointer to wxHandlersWithPendingEvents list; thus
a715b990
VZ
1269 // breaking the invariant that a handler should be in the list iff it has
1270 // any pending events to process
1271 wxLEAVE_CRIT_SECT( m_pendingEventsLock );
1272
90e572f1 1273 // 3) Inform the system that new pending events are somewhere,
16c1f79c 1274 // and that these should be processed in idle time.
bf9e3e73 1275 wxWakeUpIdle();
7214297d
GL
1276}
1277
cae9e7b1
FM
1278void wxEvtHandler::DeletePendingEvents()
1279{
1280 if (m_pendingEvents)
1281 m_pendingEvents->DeleteContents(true);
1282 wxDELETE(m_pendingEvents);
1283}
1284
7214297d
GL
1285void wxEvtHandler::ProcessPendingEvents()
1286{
8e40ed85 1287 if (!wxTheApp)
dde19c21
FM
1288 {
1289 // we need an event loop which manages the list of event handlers with
1290 // pending events... cannot proceed without it!
8e40ed85 1291 wxLogDebug("No application object! Cannot process pending events!");
dde19c21
FM
1292 return;
1293 }
1294
d48b06bd
FM
1295 // we need to process only a single pending event in this call because
1296 // each call to ProcessEvent() could result in the destruction of this
1297 // same event handler (see the comment at the end of this function)
1298
8ebec7dc 1299 wxENTER_CRIT_SECT( m_pendingEventsLock );
8e193f38 1300
7ce2fb71
VZ
1301 // this method is only called by wxApp if this handler does have
1302 // pending events
1303 wxCHECK_RET( m_pendingEvents && !m_pendingEvents->IsEmpty(),
1304 "should have pending events if called" );
5fa150e2 1305
19c4d916 1306 wxList::compatibility_iterator node = m_pendingEvents->GetFirst();
d48b06bd
FM
1307 wxEvent* pEvent = static_cast<wxEvent *>(node->GetData());
1308
1309 // find the first event which can be processed now:
dde19c21
FM
1310 wxEventLoopBase* evtLoop = wxEventLoopBase::GetActive();
1311 if (evtLoop && evtLoop->IsYielding())
d48b06bd 1312 {
dde19c21 1313 while (node && pEvent && !evtLoop->IsEventAllowedInsideYield(pEvent->GetEventCategory()))
d48b06bd
FM
1314 {
1315 node = node->GetNext();
1316 pEvent = node ? static_cast<wxEvent *>(node->GetData()) : NULL;
1317 }
1318
1319 if (!node)
1320 {
1321 // all our events are NOT processable now... signal this:
8e40ed85 1322 wxTheApp->DelayPendingEventHandler(this);
dde19c21
FM
1323
1324 // see the comment at the beginning of evtloop.h header for the
1325 // logic behind YieldFor() and behind DelayPendingEventHandler()
1326
d48b06bd
FM
1327 wxLEAVE_CRIT_SECT( m_pendingEventsLock );
1328
1329 return;
1330 }
1331 }
1332
1333 wxEventPtr event(pEvent);
5875d39c 1334
19c4d916
VZ
1335 // it's important we remove event from list before processing it, else a
1336 // nested event loop, for example from a modal dialog, might process the
1337 // same event again.
1338 m_pendingEvents->Erase(node);
7b0d5c59 1339
19c4d916 1340 if ( m_pendingEvents->IsEmpty() )
1512f0f7 1341 {
dde19c21
FM
1342 // if there are no more pending events left, we don't need to
1343 // stay in this list
8e40ed85 1344 wxTheApp->RemovePendingEventHandler(this);
1512f0f7 1345 }
5fa150e2 1346
8ebec7dc 1347 wxLEAVE_CRIT_SECT( m_pendingEventsLock );
7b0d5c59 1348
19c4d916 1349 ProcessEvent(*event);
cfe17b74 1350
19c4d916
VZ
1351 // careful: this object could have been deleted by the event handler
1352 // executed by the above ProcessEvent() call, so we can't access any fields
1353 // of this object any more
7214297d 1354}
7214297d 1355
8e40ed85
FM
1356/* static */
1357bool wxEvtHandler::ProcessEventIfMatchesId(const wxEventTableEntryBase& entry,
1358 wxEvtHandler *handler,
1359 wxEvent& event)
1c624631
VZ
1360{
1361 int tableId1 = entry.m_id,
1362 tableId2 = entry.m_lastId;
1363
1364 // match only if the event type is the same and the id is either -1 in
1365 // the event table (meaning "any") or the event id matches the id
1366 // specified in the event table either exactly or by falling into
1367 // range between first and last
1a18887b
WS
1368 if ((tableId1 == wxID_ANY) ||
1369 (tableId2 == wxID_ANY && tableId1 == event.GetId()) ||
1370 (tableId2 != wxID_ANY &&
1c624631
VZ
1371 (event.GetId() >= tableId1 && event.GetId() <= tableId2)))
1372 {
1373 event.Skip(false);
1374 event.m_callbackUserData = entry.m_callbackUserData;
1375
1376#if wxUSE_EXCEPTIONS
1377 if ( wxTheApp )
1378 {
1379 // call the handler via wxApp method which allows the user to catch
1380 // any exceptions which may be thrown by any handler in the program
1381 // in one place
3c778901 1382 wxTheApp->CallEventHandler(handler, *entry.m_fn, event);
1c624631
VZ
1383 }
1384 else
8bd2a804 1385#endif // wxUSE_EXCEPTIONS
1c624631 1386 {
3c778901 1387 (*entry.m_fn)(handler, event);
1c624631 1388 }
1c624631
VZ
1389
1390 if (!event.GetSkipped())
1391 return true;
1392 }
1393
1394 return false;
1395}
c801d85f 1396
8cc208e3 1397bool wxEvtHandler::DoTryApp(wxEvent& event)
c801d85f 1398{
4caf847c 1399 if ( wxTheApp && (this != wxTheApp) )
9154d8cf 1400 {
4caf847c
VZ
1401 // Special case: don't pass wxEVT_IDLE to wxApp, since it'll always
1402 // swallow it. wxEVT_IDLE is sent explicitly to wxApp so it will be
1403 // processed appropriately via SearchEventTable.
1404 if ( event.GetEventType() != wxEVT_IDLE )
1405 {
1406 if ( wxTheApp->ProcessEvent(event) )
1c624631 1407 return true;
4caf847c 1408 }
9154d8cf
VZ
1409 }
1410
1c624631 1411 return false;
4caf847c 1412}
0b746ba8 1413
2d8c0c2c
VZ
1414bool wxEvtHandler::TryBefore(wxEvent& event)
1415{
609483b8 1416#if WXWIN_COMPATIBILITY_2_8
2d8c0c2c
VZ
1417 // call the old virtual function to keep the code overriding it working
1418 return TryValidator(event);
1419#else
1420 wxUnusedVar(event);
1421 return false;
1422#endif
1423}
1424
1425bool wxEvtHandler::TryAfter(wxEvent& event)
1426{
3cbb9df8
VZ
1427 // We only want to pass the window to the application object once even if
1428 // there are several chained handlers. Ensure that this is what happens by
1429 // only calling DoTryApp() if there is no next handler (which would do it).
1430 //
1431 // Notice that, unlike simply calling TryAfter() on the last handler in the
1432 // chain only from ProcessEvent(), this also works with wxWindow object in
1433 // the middle of the chain: its overridden TryAfter() will still be called
1434 // and propagate the event upwards the window hierarchy even if it's not
1435 // the last one in the chain (which, admittedly, shouldn't happen often).
1436 if ( GetNextHandler() )
1437 return GetNextHandler()->TryAfter(event);
1438
3bad8c39
VZ
1439 // If this event is going to be processed in another handler next, don't
1440 // pass it to wxTheApp now, it will be done from TryAfter() of this other
1441 // handler.
1442 if ( event.WillBeProcessedAgain() )
1443 return false;
1444
609483b8 1445#if WXWIN_COMPATIBILITY_2_8
2d8c0c2c
VZ
1446 // as above, call the old virtual function for compatibility
1447 return TryParent(event);
1448#else
1449 return DoTryApp(event);
1450#endif
1451}
1452
4caf847c
VZ
1453bool wxEvtHandler::ProcessEvent(wxEvent& event)
1454{
58cc1587
VZ
1455 // The very first thing we do is to allow any registered filters to hook
1456 // into event processing in order to globally pre-process all events.
29de6f40 1457 //
3cbb9df8 1458 // Note that we should only do it if we're the first event handler called
29de6f40 1459 // to avoid calling FilterEvent() multiple times as the event goes through
3cbb9df8 1460 // the event handler chain and possibly upwards the window hierarchy.
29de6f40 1461 if ( !event.WasProcessed() )
9154d8cf 1462 {
58cc1587 1463 for ( wxEventFilter* f = ms_filterList; f; f = f->m_next )
9154d8cf 1464 {
58cc1587
VZ
1465 int rc = f->FilterEvent(event);
1466 if ( rc != wxEventFilter::Event_Skip )
29de6f40 1467 {
58cc1587
VZ
1468 wxASSERT_MSG( rc == wxEventFilter::Event_Ignore ||
1469 rc == wxEventFilter::Event_Processed,
1470 "unexpected FilterEvent() return value" );
9154d8cf 1471
58cc1587 1472 return rc != wxEventFilter::Event_Ignore;
29de6f40
VZ
1473 }
1474 //else: proceed normally
9154d8cf 1475 }
9154d8cf
VZ
1476 }
1477
3cbb9df8
VZ
1478 // Short circuit the event processing logic if we're requested to process
1479 // this event in this handler only, see DoTryChain() for more details.
bbdee10d 1480 if ( event.ShouldProcessOnlyIn(this) )
4b6d82c7 1481 return TryBeforeAndHere(event);
3cbb9df8
VZ
1482
1483
1484 // Try to process the event in this handler itself.
1485 if ( ProcessEventLocally(event) )
0ef5cba6
VZ
1486 {
1487 // It is possible that DoTryChain() called from ProcessEventLocally()
1488 // returned true but the event was not really processed: this happens
1489 // if a custom handler ignores the request to process the event in this
1490 // handler only and in this case we should skip the post processing
1491 // done in TryAfter() but still return the correct value ourselves to
1492 // indicate whether we did or did not find a handler for this event.
1493 return !event.GetSkipped();
1494 }
3cbb9df8
VZ
1495
1496 // If we still didn't find a handler, propagate the event upwards the
1497 // window chain and/or to the application object.
1498 if ( TryAfter(event) )
1499 return true;
1500
1501
1502 // No handler found anywhere, bail out.
1503 return false;
1504}
1505
1506bool wxEvtHandler::ProcessEventLocally(wxEvent& event)
1507{
4b6d82c7
VZ
1508 // Try the hooks which should be called before our own handlers and this
1509 // handler itself first. Notice that we should not call ProcessEvent() on
1510 // this one as we're already called from it, which explains why we do it
1511 // here and not in DoTryChain()
1512 return TryBeforeAndHere(event) || DoTryChain(event);
3cbb9df8 1513}
29de6f40 1514
3cbb9df8
VZ
1515bool wxEvtHandler::DoTryChain(wxEvent& event)
1516{
1517 for ( wxEvtHandler *h = GetNextHandler(); h; h = h->GetNextHandler() )
1518 {
1519 // We need to process this event at the level of this handler only
1520 // right now, the pre-/post-processing was either already done by
1521 // ProcessEvent() from which we were called or will be done by it when
1522 // we return.
1523 //
4b6d82c7 1524 // However we must call ProcessEvent() and not TryHereOnly() because the
512220b6
VZ
1525 // existing code (including some in wxWidgets itself) expects the
1526 // overridden ProcessEvent() in its custom event handlers pushed on a
1527 // window to be called.
3cbb9df8
VZ
1528 //
1529 // So we must call ProcessEvent() but it must not do what it usually
bbdee10d
VZ
1530 // does. To resolve this paradox we set up a special flag inside the
1531 // object itself to let ProcessEvent() know that it shouldn't do any
1532 // pre/post-processing for this event if it gets it. Note that this
1533 // only applies to this handler, if the event is passed to another one
1534 // by explicitly calling its ProcessEvent(), pre/post-processing should
1535 // be done as usual.
1536 //
1537 // Final complication is that if the implementation of ProcessEvent()
1538 // called wxEvent::DidntHonourProcessOnlyIn() (as the gross hack that
1539 // is wxScrollHelperEvtHandler::ProcessEvent() does) and ignored our
1540 // request to process event in this handler only, we have to compensate
1541 // for it by not processing the event further because this was already
1542 // done by that rogue event handler.
1543 wxEventProcessInHandlerOnly processInHandlerOnly(event, h);
e0520316 1544 if ( h->ProcessEvent(event) )
0ef5cba6
VZ
1545 {
1546 // Make sure "skipped" flag is not set as the event was really
1547 // processed in this case. Normally it shouldn't be set anyhow but
1548 // make sure just in case the user code does something strange.
1549 event.Skip(false);
1550
3cbb9df8 1551 return true;
0ef5cba6 1552 }
e0520316
VZ
1553
1554 if ( !event.ShouldProcessOnlyIn(h) )
0ef5cba6
VZ
1555 {
1556 // Still return true to indicate that no further processing should
1557 // be undertaken but ensure that "skipped" flag is set so that the
1558 // caller knows that the event was not really processed.
1559 event.Skip();
1560
1561 return true;
1562 }
3cbb9df8
VZ
1563 }
1564
1565 return false;
25250d33
VZ
1566}
1567
4b6d82c7 1568bool wxEvtHandler::TryHereOnly(wxEvent& event)
25250d33 1569{
29de6f40
VZ
1570 // If the event handler is disabled it doesn't process any events
1571 if ( !GetEvtHandlerEnabled() )
1572 return false;
4caf847c 1573
29de6f40
VZ
1574 // Handle per-instance dynamic event tables first
1575 if ( m_dynamicEvents && SearchDynamicEventTable(event) )
1576 return true;
c801d85f 1577
29de6f40
VZ
1578 // Then static per-class event tables
1579 if ( GetEventHashTable().HandleEvent(event, this) )
25250d33 1580 return true;
c801d85f 1581
b690a8f6 1582#ifdef wxHAS_CALL_AFTER
856cad9a 1583 // There is an implicit entry for async method calls processing in every
cf222762
VZ
1584 // event handler:
1585 if ( event.GetEventType() == wxEVT_ASYNC_METHOD_CALL &&
1586 event.GetEventObject() == this )
1587 {
1588 static_cast<wxAsyncMethodCallEvent&>(event).Execute();
1589 return true;
1590 }
b690a8f6 1591#endif // wxHAS_CALL_AFTER
cf222762 1592
25250d33
VZ
1593 // We don't have a handler for this event.
1594 return false;
c801d85f
KB
1595}
1596
937013e0
VS
1597bool wxEvtHandler::SafelyProcessEvent(wxEvent& event)
1598{
1599#if wxUSE_EXCEPTIONS
1600 try
1601 {
1602#endif
1603 return ProcessEvent(event);
1604#if wxUSE_EXCEPTIONS
1605 }
1606 catch ( ... )
1607 {
8793514e
VZ
1608 // notice that we do it in 2 steps to avoid warnings about possibly
1609 // uninitialized loop variable from some versions of g++ which are not
1610 // smart enough to figure out that GetActive() doesn't throw and so
1611 // that loop will always be initialized
1612 wxEventLoopBase *loop = NULL;
937013e0
VS
1613 try
1614 {
8793514e
VZ
1615 loop = wxEventLoopBase::GetActive();
1616
937013e0
VS
1617 if ( !wxTheApp || !wxTheApp->OnExceptionInMainLoop() )
1618 {
1619 if ( loop )
1620 loop->Exit();
1621 }
1622 //else: continue running current event loop
1623
1624 return false;
1625 }
1626 catch ( ... )
1627 {
1628 // OnExceptionInMainLoop() threw, possibly rethrowing the same
1629 // exception again: very good, but we still need Exit() to
1630 // be called
1631 if ( loop )
1632 loop->Exit();
1633 throw;
1634 }
1635 }
1636#endif // wxUSE_EXCEPTIONS
1637}
1638
c801d85f
KB
1639bool wxEvtHandler::SearchEventTable(wxEventTable& table, wxEvent& event)
1640{
1c624631 1641 const wxEventType eventType = event.GetEventType();
68662769 1642 for ( int i = 0; table.entries[i].m_fn != 0; i++ )
c801d85f 1643 {
68662769 1644 const wxEventTableEntry& entry = table.entries[i];
68662769 1645 if ( eventType == entry.m_eventType )
0b746ba8 1646 {
03f3617b 1647 if ( ProcessEventIfMatchesId(entry, this, event) )
1c624631 1648 return true;
0b746ba8 1649 }
c801d85f 1650 }
68662769 1651
1c624631 1652 return false;
c801d85f 1653}
97d7bfb8 1654
890d70eb
VZ
1655void wxEvtHandler::DoBind(int id,
1656 int lastId,
1657 wxEventType eventType,
1658 wxEventFunctor *func,
1659 wxObject *userData)
fe71f65c 1660{
0b5eceb6 1661 wxDynamicEventTableEntry *entry =
3c778901 1662 new wxDynamicEventTableEntry(eventType, id, lastId, func, userData);
0b746ba8
VZ
1663
1664 if (!m_dynamicEvents)
1665 m_dynamicEvents = new wxList;
1666
92309201
RD
1667 // Insert at the front of the list so most recent additions are found first
1668 m_dynamicEvents->Insert( (wxObject*) entry );
cc6ceca7
VZ
1669
1670 // Make sure we get to know when a sink is destroyed
f3ff831f 1671 wxEvtHandler *eventSink = func->GetEvtHandler();
886274c6 1672 if ( eventSink && eventSink != this )
2ef989c9 1673 {
cc6ceca7
VZ
1674 wxEventConnectionRef *evtConnRef = FindRefInTrackerList(eventSink);
1675 if ( evtConnRef )
1676 evtConnRef->IncRef( );
2ef989c9 1677 else
e822d1bd 1678 new wxEventConnectionRef(this, eventSink);
2ef989c9 1679 }
fe71f65c 1680}
97d7bfb8 1681
3c778901 1682bool
890d70eb
VZ
1683wxEvtHandler::DoUnbind(int id,
1684 int lastId,
1685 wxEventType eventType,
1686 const wxEventFunctor& func,
1687 wxObject *userData)
97d7bfb8
RR
1688{
1689 if (!m_dynamicEvents)
1c624631 1690 return false;
cfe17b74 1691
df5168c4 1692 wxList::compatibility_iterator node = m_dynamicEvents->GetFirst();
97d7bfb8
RR
1693 while (node)
1694 {
ad684023 1695 wxDynamicEventTableEntry *entry = (wxDynamicEventTableEntry*)node->GetData();
2e4df4bf 1696
97d7bfb8 1697 if ((entry->m_id == id) &&
1a18887b 1698 ((entry->m_lastId == lastId) || (lastId == wxID_ANY)) &&
97d7bfb8 1699 ((entry->m_eventType == eventType) || (eventType == wxEVT_NULL)) &&
890d70eb 1700 entry->m_fn->IsMatching(func) &&
3c778901 1701 ((entry->m_callbackUserData == userData) || !userData))
97d7bfb8 1702 {
75b2220e
VZ
1703 // Remove connection from tracker node (wxEventConnectionRef)
1704 wxEvtHandler *eventSink = entry->m_fn->GetEvtHandler();
1705 if ( eventSink && eventSink != this )
1706 {
1707 wxEventConnectionRef *evtConnRef = FindRefInTrackerList(eventSink);
1708 if ( evtConnRef )
1709 evtConnRef->DecRef();
1710 }
1711
3c778901 1712 delete entry->m_callbackUserData;
df5168c4 1713 m_dynamicEvents->Erase( node );
97d7bfb8 1714 delete entry;
1c624631 1715 return true;
97d7bfb8 1716 }
b1d4dd7a 1717 node = node->GetNext();
97d7bfb8 1718 }
1c624631 1719 return false;
97d7bfb8 1720}
fe71f65c
RR
1721
1722bool wxEvtHandler::SearchDynamicEventTable( wxEvent& event )
1723{
1c624631 1724 wxCHECK_MSG( m_dynamicEvents, false,
223d09f6 1725 wxT("caller should check that we have dynamic events") );
0b746ba8 1726
df5168c4 1727 wxList::compatibility_iterator node = m_dynamicEvents->GetFirst();
0b746ba8 1728 while (node)
fe71f65c 1729 {
1c624631 1730 wxDynamicEventTableEntry *entry = (wxDynamicEventTableEntry*)node->GetData();
0b746ba8 1731
7fce89b9
VZ
1732 // get next node before (maybe) calling the event handler as it could
1733 // call Disconnect() invalidating the current node
1734 node = node->GetNext();
1735
03f3617b 1736 if ( event.GetEventType() == entry->m_eventType )
0b746ba8 1737 {
f3ff831f 1738 wxEvtHandler *handler = entry->m_fn->GetEvtHandler();
03f3617b
VZ
1739 if ( !handler )
1740 handler = this;
1741 if ( ProcessEventIfMatchesId(*entry, handler, event) )
1c624631 1742 return true;
0b746ba8 1743 }
7b678698 1744 }
1c624631
VZ
1745
1746 return false;
4115960d 1747}
fe71f65c 1748
b88c44e7
RD
1749void wxEvtHandler::DoSetClientObject( wxClientData *data )
1750{
1751 wxASSERT_MSG( m_clientDataType != wxClientData_Void,
1752 wxT("can't have both object and void client data") );
1753
1754 if ( m_clientObject )
1755 delete m_clientObject;
1756
1757 m_clientObject = data;
1758 m_clientDataType = wxClientData_Object;
1759}
1760
1761wxClientData *wxEvtHandler::DoGetClientObject() const
1762{
1763 // it's not an error to call GetClientObject() on a window which doesn't
1764 // have client data at all - NULL will be returned
1765 wxASSERT_MSG( m_clientDataType != wxClientData_Void,
1766 wxT("this window doesn't have object client data") );
1767
1768 return m_clientObject;
1769}
1770
1771void wxEvtHandler::DoSetClientData( void *data )
1772{
1773 wxASSERT_MSG( m_clientDataType != wxClientData_Object,
1774 wxT("can't have both object and void client data") );
1775
1776 m_clientData = data;
1777 m_clientDataType = wxClientData_Void;
1778}
1779
1780void *wxEvtHandler::DoGetClientData() const
1781{
1782 // it's not an error to call GetClientData() on a window which doesn't have
1783 // client data at all - NULL will be returned
1784 wxASSERT_MSG( m_clientDataType != wxClientData_Object,
1785 wxT("this window doesn't have void client data") );
1786
1787 return m_clientData;
1788}
1789
cc6ceca7
VZ
1790// A helper to find an wxEventConnectionRef object
1791wxEventConnectionRef *
1792wxEvtHandler::FindRefInTrackerList(wxEvtHandler *eventSink)
2ef989c9 1793{
cc6ceca7 1794 for ( wxTrackerNode *node = eventSink->GetFirst(); node; node = node->m_nxt )
2ef989c9 1795 {
cc6ceca7
VZ
1796 // we only want wxEventConnectionRef nodes here
1797 wxEventConnectionRef *evtConnRef = node->ToEventConnection();
1798 if ( evtConnRef && evtConnRef->m_src == this )
2ef989c9 1799 {
cc6ceca7
VZ
1800 wxASSERT( evtConnRef->m_sink==eventSink );
1801 return evtConnRef;
2ef989c9
RR
1802 }
1803 }
cc6ceca7 1804
2ef989c9
RR
1805 return NULL;
1806}
1807
1808void wxEvtHandler::OnSinkDestroyed( wxEvtHandler *sink )
1809{
1810 wxASSERT(m_dynamicEvents);
cc6ceca7 1811
2ef989c9
RR
1812 // remove all connections with this sink
1813 wxList::compatibility_iterator node = m_dynamicEvents->GetFirst(), node_nxt;
1814 while (node)
1815 {
1816 wxDynamicEventTableEntry *entry = (wxDynamicEventTableEntry*)node->GetData();
1817 node_nxt = node->GetNext();
cc6ceca7 1818
f3ff831f 1819 if ( entry->m_fn->GetEvtHandler() == sink )
2ef989c9 1820 {
3c778901 1821 delete entry->m_callbackUserData;
2ef989c9
RR
1822 m_dynamicEvents->Erase( node );
1823 delete entry;
1824 }
1825 node = node_nxt;
1826 }
1827}
1828
4caf847c
VZ
1829#endif // wxUSE_BASE
1830
e90c1d2a
VZ
1831#if wxUSE_GUI
1832
e702ff0f
JS
1833// Find a window with the focus, that is also a descendant of the given window.
1834// This is used to determine the window to initially send commands to.
1835wxWindow* wxFindFocusDescendant(wxWindow* ancestor)
1836{
1837 // Process events starting with the window with the focus, if any.
1838 wxWindow* focusWin = wxWindow::FindFocus();
1839 wxWindow* win = focusWin;
1840
1841 // Check if this is a descendant of this frame.
1842 // If not, win will be set to NULL.
1843 while (win)
1844 {
1845 if (win == ancestor)
1846 break;
1847 else
1848 win = win->GetParent();
1849 }
3c778901
VZ
1850 if (win == NULL)
1851 focusWin = NULL;
e702ff0f
JS
1852
1853 return focusWin;
1854}
1855
c4fa5aa7
VZ
1856// ----------------------------------------------------------------------------
1857// wxEventBlocker
1858// ----------------------------------------------------------------------------
1859
1860wxEventBlocker::wxEventBlocker(wxWindow *win, wxEventType type)
1861{
1862 wxCHECK_RET(win, wxT("Null window given to wxEventBlocker"));
1863
1864 m_window = win;
1865
1866 Block(type);
1867 m_window->PushEventHandler(this);
1868}
1869
1870wxEventBlocker::~wxEventBlocker()
1871{
1872 wxEvtHandler *popped = m_window->PopEventHandler(false);
aa767a45 1873 wxCHECK_RET(popped == this,
c4fa5aa7
VZ
1874 wxT("Don't push other event handlers into a window managed by wxEventBlocker!"));
1875}
1876
1877bool wxEventBlocker::ProcessEvent(wxEvent& event)
1878{
1879 // should this event be blocked?
1880 for ( size_t i = 0; i < m_eventsToBlock.size(); i++ )
1881 {
1882 wxEventType t = (wxEventType)m_eventsToBlock[i];
1883 if ( t == wxEVT_ANY || t == event.GetEventType() )
1884 return true; // yes, it should: mark this event as processed
1885 }
1886
1887 return false;
1888}
1889
e90c1d2a 1890#endif // wxUSE_GUI
3c778901 1891