]> git.saurik.com Git - wxWidgets.git/blame - src/common/event.cpp
Add a public wxModalDialogHook class for intercepting modal dialogs.
[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;
c801d85f
KB
568}
569
abcbaea7
VZ
570void wxMouseEvent::Assign(const wxMouseEvent& event)
571{
0e097789 572 wxEvent::operator=(event);
3232da9d
VZ
573
574 // Borland C++ 5.82 doesn't compile an explicit call to an implicitly
575 // defined operator=() so need to do it this way:
576 *static_cast<wxMouseState *>(this) = event;
92309201 577
abcbaea7
VZ
578 m_x = event.m_x;
579 m_y = event.m_y;
580
581 m_leftDown = event.m_leftDown;
582 m_middleDown = event.m_middleDown;
583 m_rightDown = event.m_rightDown;
01101e2d
VZ
584 m_aux1Down = event.m_aux1Down;
585 m_aux2Down = event.m_aux2Down;
abcbaea7 586
abcbaea7
VZ
587 m_wheelRotation = event.m_wheelRotation;
588 m_wheelDelta = event.m_wheelDelta;
589 m_linesPerAction = event.m_linesPerAction;
aea37008 590 m_wheelAxis = event.m_wheelAxis;
abcbaea7
VZ
591}
592
3e89999c 593// return true if was a button dclick event
c801d85f
KB
594bool wxMouseEvent::ButtonDClick(int but) const
595{
0b746ba8
VZ
596 switch (but)
597 {
3e89999c
VZ
598 default:
599 wxFAIL_MSG(wxT("invalid parameter in wxMouseEvent::ButtonDClick"));
600 // fall through
601
602 case wxMOUSE_BTN_ANY:
01101e2d
VZ
603 return (LeftDClick() || MiddleDClick() || RightDClick() ||
604 Aux1DClick() || Aux2DClick());
3e89999c
VZ
605
606 case wxMOUSE_BTN_LEFT:
0b746ba8 607 return LeftDClick();
3e89999c
VZ
608
609 case wxMOUSE_BTN_MIDDLE:
0b746ba8 610 return MiddleDClick();
3e89999c
VZ
611
612 case wxMOUSE_BTN_RIGHT:
0b746ba8 613 return RightDClick();
01101e2d
VZ
614
615 case wxMOUSE_BTN_AUX1:
616 return Aux1DClick();
617
618 case wxMOUSE_BTN_AUX2:
619 return Aux2DClick();
0b746ba8 620 }
c801d85f
KB
621}
622
3e89999c 623// return true if was a button down event
c801d85f
KB
624bool wxMouseEvent::ButtonDown(int but) const
625{
0b746ba8
VZ
626 switch (but)
627 {
3e89999c
VZ
628 default:
629 wxFAIL_MSG(wxT("invalid parameter in wxMouseEvent::ButtonDown"));
630 // fall through
631
632 case wxMOUSE_BTN_ANY:
01101e2d
VZ
633 return (LeftDown() || MiddleDown() || RightDown() ||
634 Aux1Down() || Aux2Down());
3e89999c
VZ
635
636 case wxMOUSE_BTN_LEFT:
0b746ba8 637 return LeftDown();
3e89999c
VZ
638
639 case wxMOUSE_BTN_MIDDLE:
0b746ba8 640 return MiddleDown();
3e89999c
VZ
641
642 case wxMOUSE_BTN_RIGHT:
0b746ba8 643 return RightDown();
01101e2d
VZ
644
645 case wxMOUSE_BTN_AUX1:
646 return Aux1Down();
647
648 case wxMOUSE_BTN_AUX2:
649 return Aux2Down();
0b746ba8 650 }
c801d85f
KB
651}
652
3e89999c 653// return true if was a button up event
c801d85f
KB
654bool wxMouseEvent::ButtonUp(int but) const
655{
1e6feb95
VZ
656 switch (but)
657 {
3e89999c
VZ
658 default:
659 wxFAIL_MSG(wxT("invalid parameter in wxMouseEvent::ButtonUp"));
660 // fall through
661
662 case wxMOUSE_BTN_ANY:
01101e2d
VZ
663 return (LeftUp() || MiddleUp() || RightUp() ||
664 Aux1Up() || Aux2Up());
3e89999c
VZ
665
666 case wxMOUSE_BTN_LEFT:
0b746ba8 667 return LeftUp();
3e89999c
VZ
668
669 case wxMOUSE_BTN_MIDDLE:
0b746ba8 670 return MiddleUp();
3e89999c
VZ
671
672 case wxMOUSE_BTN_RIGHT:
0b746ba8 673 return RightUp();
01101e2d
VZ
674
675 case wxMOUSE_BTN_AUX1:
676 return Aux1Up();
677
678 case wxMOUSE_BTN_AUX2:
679 return Aux2Up();
0b746ba8 680 }
c801d85f
KB
681}
682
3e89999c 683// return true if the given button is currently changing state
c801d85f
KB
684bool wxMouseEvent::Button(int but) const
685{
1e6feb95
VZ
686 switch (but)
687 {
0b746ba8 688 default:
223d09f6 689 wxFAIL_MSG(wxT("invalid parameter in wxMouseEvent::Button"));
3e89999c
VZ
690 // fall through
691
692 case wxMOUSE_BTN_ANY:
693 return ButtonUp(wxMOUSE_BTN_ANY) ||
694 ButtonDown(wxMOUSE_BTN_ANY) ||
695 ButtonDClick(wxMOUSE_BTN_ANY);
696
697 case wxMOUSE_BTN_LEFT:
698 return LeftDown() || LeftUp() || LeftDClick();
699
700 case wxMOUSE_BTN_MIDDLE:
701 return MiddleDown() || MiddleUp() || MiddleDClick();
702
703 case wxMOUSE_BTN_RIGHT:
704 return RightDown() || RightUp() || RightDClick();
01101e2d
VZ
705
706 case wxMOUSE_BTN_AUX1:
707 return Aux1Down() || Aux1Up() || Aux1DClick();
708
709 case wxMOUSE_BTN_AUX2:
710 return Aux2Down() || Aux2Up() || Aux2DClick();
0b746ba8 711 }
c801d85f
KB
712}
713
1e6feb95
VZ
714int wxMouseEvent::GetButton() const
715{
01101e2d 716 for ( int i = 1; i < wxMOUSE_BTN_MAX; i++ )
1e6feb95
VZ
717 {
718 if ( Button(i) )
719 {
720 return i;
721 }
722 }
723
3e89999c 724 return wxMOUSE_BTN_NONE;
1e6feb95
VZ
725}
726
c801d85f
KB
727// Find the logical position of the event given the DC
728wxPoint wxMouseEvent::GetLogicalPosition(const wxDC& dc) const
729{
0757d27c
JS
730 wxPoint pt(dc.DeviceToLogicalX(m_x), dc.DeviceToLogicalY(m_y));
731 return pt;
c801d85f
KB
732}
733
8e40ed85
FM
734// ----------------------------------------------------------------------------
735// wxKeyEvent
736// ----------------------------------------------------------------------------
c801d85f 737
7798a18e 738wxKeyEvent::wxKeyEvent(wxEventType type)
c801d85f 739{
0b746ba8 740 m_eventType = type;
86408a03 741 m_keyCode = WXK_NONE;
2b5f62a0 742#if wxUSE_UNICODE
86408a03 743 m_uniChar = WXK_NONE;
2b5f62a0 744#endif
3a95f73c 745
2f7baaec
VZ
746 m_x =
747 m_y = wxDefaultCoord;
748 m_hasPosition = false;
749
3a95f73c 750 InitPropagation();
c801d85f
KB
751}
752
92309201 753wxKeyEvent::wxKeyEvent(const wxKeyEvent& evt)
0e097789
VZ
754 : wxEvent(evt),
755 wxKeyboardState(evt)
2b5f62a0 756{
dfc7216d 757 DoAssignMembers(evt);
3a95f73c
VZ
758
759 InitPropagation();
2b5f62a0 760}
12a3f227 761
e45d9090
VZ
762wxKeyEvent::wxKeyEvent(wxEventType eventType, const wxKeyEvent& evt)
763 : wxEvent(evt),
764 wxKeyboardState(evt)
765{
766 DoAssignMembers(evt);
767
768 m_eventType = eventType;
3a95f73c
VZ
769
770 InitPropagation();
e45d9090
VZ
771}
772
2f7baaec
VZ
773void wxKeyEvent::InitPositionIfNecessary() const
774{
775 if ( m_hasPosition )
776 return;
777
778 // We're const because we're called from const Get[XY]() methods but we
779 // need to update the "cached" values.
780 wxKeyEvent& self = const_cast<wxKeyEvent&>(*this);
781 self.m_hasPosition = true;
782
783 // The only position we can possibly associate with the keyboard event on
784 // the platforms where it doesn't carry it already is the mouse position.
785 wxGetMousePosition(&self.m_x, &self.m_y);
786
787 // If this event is associated with a window, the position should be in its
788 // client coordinates, but otherwise leave it in screen coordinates as what
789 // else can we use?
790 wxWindow* const win = wxDynamicCast(GetEventObject(), wxWindow);
791 if ( win )
792 win->ScreenToClient(&self.m_x, &self.m_y);
793}
794
795wxCoord wxKeyEvent::GetX() const
796{
797 InitPositionIfNecessary();
798
799 return m_x;
800}
801
802wxCoord wxKeyEvent::GetY() const
803{
804 InitPositionIfNecessary();
805
806 return m_y;
807}
808
7a34307e
VZ
809bool wxKeyEvent::IsKeyInCategory(int category) const
810{
811 switch ( GetKeyCode() )
812 {
813 case WXK_LEFT:
814 case WXK_RIGHT:
815 case WXK_UP:
816 case WXK_DOWN:
817 case WXK_NUMPAD_LEFT:
818 case WXK_NUMPAD_RIGHT:
819 case WXK_NUMPAD_UP:
820 case WXK_NUMPAD_DOWN:
821 return (category & WXK_CATEGORY_ARROW) != 0;
822
823 case WXK_PAGEDOWN:
824 case WXK_END:
825 case WXK_NUMPAD_PAGEUP:
826 case WXK_NUMPAD_PAGEDOWN:
827 return (category & WXK_CATEGORY_PAGING) != 0;
828
829 case WXK_HOME:
830 case WXK_PAGEUP:
831 case WXK_NUMPAD_HOME:
832 case WXK_NUMPAD_END:
833 return (category & WXK_CATEGORY_JUMP) != 0;
834
835 case WXK_TAB:
4f742042 836 case WXK_NUMPAD_TAB:
7a34307e
VZ
837 return (category & WXK_CATEGORY_TAB) != 0;
838
839 case WXK_BACK:
840 case WXK_DELETE:
841 case WXK_NUMPAD_DELETE:
842 return (category & WXK_CATEGORY_CUT) != 0;
843
844 default:
845 return false;
846 }
847}
848
8e40ed85
FM
849// ----------------------------------------------------------------------------
850// wxWindowCreateEvent
851// ----------------------------------------------------------------------------
852
42e69d6b 853wxWindowCreateEvent::wxWindowCreateEvent(wxWindow *win)
42e69d6b 854{
cfe17b74 855 SetEventType(wxEVT_CREATE);
42e69d6b
VZ
856 SetEventObject(win);
857}
858
8e40ed85
FM
859// ----------------------------------------------------------------------------
860// wxWindowDestroyEvent
861// ----------------------------------------------------------------------------
862
42e69d6b 863wxWindowDestroyEvent::wxWindowDestroyEvent(wxWindow *win)
42e69d6b 864{
cfe17b74 865 SetEventType(wxEVT_DESTROY);
42e69d6b
VZ
866 SetEventObject(win);
867}
868
8e40ed85
FM
869// ----------------------------------------------------------------------------
870// wxChildFocusEvent
871// ----------------------------------------------------------------------------
872
456bc6d9
VZ
873wxChildFocusEvent::wxChildFocusEvent(wxWindow *win)
874 : wxCommandEvent(wxEVT_CHILD_FOCUS)
875{
876 SetEventObject(win);
877}
878
b107e8d5
VZ
879// ----------------------------------------------------------------------------
880// wxHelpEvent
881// ----------------------------------------------------------------------------
882
883/* static */
884wxHelpEvent::Origin wxHelpEvent::GuessOrigin(Origin origin)
885{
886 if ( origin == Origin_Unknown )
887 {
888 // assume that the event comes from the help button if it's not from
889 // keyboard and that pressing F1 always results in the help event
890 origin = wxGetKeyState(WXK_F1) ? Origin_Keyboard : Origin_HelpButton;
891 }
892
893 return origin;
894}
895
dd070522
VZ
896#endif // wxUSE_GUI
897
9416681d
VS
898
899#if wxUSE_BASE
900
b5a98acd
VZ
901// ----------------------------------------------------------------------------
902// wxEventHashTable
903// ----------------------------------------------------------------------------
904
afa039f9
JS
905static const int EVENT_TYPE_TABLE_INIT_SIZE = 31; // Not too big not too small...
906
907wxEventHashTable* wxEventHashTable::sm_first = NULL;
b5a98acd
VZ
908
909wxEventHashTable::wxEventHashTable(const wxEventTable &table)
910 : m_table(table),
1c624631 911 m_rebuildHash(true)
b5a98acd
VZ
912{
913 AllocEventTypeTable(EVENT_TYPE_TABLE_INIT_SIZE);
1a18887b 914
afa039f9
JS
915 m_next = sm_first;
916 if (m_next)
917 m_next->m_previous = this;
918 sm_first = this;
b5a98acd
VZ
919}
920
921wxEventHashTable::~wxEventHashTable()
afa039f9
JS
922{
923 if (m_next)
924 m_next->m_previous = m_previous;
925 if (m_previous)
926 m_previous->m_next = m_next;
927 if (sm_first == this)
928 sm_first = m_next;
1a18887b 929
afa039f9
JS
930 Clear();
931}
932
933void wxEventHashTable::Clear()
b5a98acd 934{
a0826b11 935 for ( size_t i = 0; i < m_size; i++ )
b5a98acd
VZ
936 {
937 EventTypeTablePointer eTTnode = m_eventTypeTable[i];
a0826b11 938 delete eTTnode;
b5a98acd
VZ
939 }
940
5276b0a5 941 wxDELETEA(m_eventTypeTable);
a0826b11 942
afa039f9
JS
943 m_size = 0;
944}
945
657a8a35 946#if wxUSE_MEMORY_TRACING
a0826b11 947
afa039f9
JS
948// Clear all tables
949void wxEventHashTable::ClearAll()
950{
951 wxEventHashTable* table = sm_first;
952 while (table)
953 {
954 table->Clear();
955 table = table->m_next;
956 }
b5a98acd
VZ
957}
958
657a8a35 959#endif // wxUSE_MEMORY_TRACING
a0826b11 960
b5a98acd
VZ
961bool wxEventHashTable::HandleEvent(wxEvent &event, wxEvtHandler *self)
962{
963 if (m_rebuildHash)
964 {
965 InitHashTable();
1c624631 966 m_rebuildHash = false;
b5a98acd 967 }
1a18887b 968
afa039f9 969 if (!m_eventTypeTable)
1a18887b 970 return false;
b5a98acd
VZ
971
972 // Find all entries for the given event type.
973 wxEventType eventType = event.GetEventType();
974 const EventTypeTablePointer eTTnode = m_eventTypeTable[eventType % m_size];
975 if (eTTnode && eTTnode->eventType == eventType)
976 {
977 // Now start the search for an event handler
978 // that can handle an event with the given ID.
1c624631
VZ
979 const wxEventTableEntryPointerArray&
980 eventEntryTable = eTTnode->eventEntryTable;
b5a98acd 981
1c624631
VZ
982 const size_t count = eventEntryTable.GetCount();
983 for (size_t n = 0; n < count; n++)
b5a98acd 984 {
03f3617b
VZ
985 const wxEventTableEntry& entry = *eventEntryTable[n];
986 if ( wxEvtHandler::ProcessEventIfMatchesId(entry, self, event) )
1c624631 987 return true;
b5a98acd 988 }
b5a98acd
VZ
989 }
990
1c624631 991 return false;
b5a98acd
VZ
992}
993
994void wxEventHashTable::InitHashTable()
995{
996 // Loop over the event tables and all its base tables.
997 const wxEventTable *table = &m_table;
998 while (table)
999 {
1000 // Retrieve all valid event handler entries
1001 const wxEventTableEntry *entry = table->entries;
1002 while (entry->m_fn != 0)
1003 {
1004 // Add the event entry in the Hash.
1005 AddEntry(*entry);
1006
1007 entry++;
1008 }
1009
1010 table = table->baseTable;
1011 }
1012
4c51a665 1013 // Let's free some memory.
b5a98acd
VZ
1014 size_t i;
1015 for(i = 0; i < m_size; i++)
1016 {
1017 EventTypeTablePointer eTTnode = m_eventTypeTable[i];
1018 if (eTTnode)
1019 {
1020 eTTnode->eventEntryTable.Shrink();
1021 }
1022 }
1023}
1024
1025void wxEventHashTable::AddEntry(const wxEventTableEntry &entry)
1026{
afa039f9
JS
1027 // This might happen 'accidentally' as the app is exiting
1028 if (!m_eventTypeTable)
1029 return;
1a18887b 1030
b5a98acd
VZ
1031 EventTypeTablePointer *peTTnode = &m_eventTypeTable[entry.m_eventType % m_size];
1032 EventTypeTablePointer eTTnode = *peTTnode;
1033
1034 if (eTTnode)
1035 {
1036 if (eTTnode->eventType != entry.m_eventType)
1037 {
1038 // Resize the table!
1039 GrowEventTypeTable();
1040 // Try again to add it.
1041 AddEntry(entry);
1042 return;
1043 }
1044 }
1045 else
1046 {
1047 eTTnode = new EventTypeTable;
1048 eTTnode->eventType = entry.m_eventType;
1049 *peTTnode = eTTnode;
1050 }
1051
1052 // Fill all hash entries between entry.m_id and entry.m_lastId...
1053 eTTnode->eventEntryTable.Add(&entry);
1054}
1055
1056void wxEventHashTable::AllocEventTypeTable(size_t size)
1057{
1058 m_eventTypeTable = new EventTypeTablePointer[size];
1059 memset((void *)m_eventTypeTable, 0, sizeof(EventTypeTablePointer)*size);
1060 m_size = size;
1061}
1062
1063void wxEventHashTable::GrowEventTypeTable()
1064{
1065 size_t oldSize = m_size;
1066 EventTypeTablePointer *oldEventTypeTable = m_eventTypeTable;
1067
1068 // TODO: Search the most optimal grow sequence
1069 AllocEventTypeTable(/* GetNextPrime(oldSize) */oldSize*2+1);
1070
1071 for ( size_t i = 0; i < oldSize; /* */ )
1072 {
1073 EventTypeTablePointer eTToldNode = oldEventTypeTable[i];
1074 if (eTToldNode)
1075 {
1076 EventTypeTablePointer *peTTnode = &m_eventTypeTable[eTToldNode->eventType % m_size];
1077 EventTypeTablePointer eTTnode = *peTTnode;
1078
1079 // Check for collision, we don't want any.
1080 if (eTTnode)
1081 {
1082 GrowEventTypeTable();
1083 continue; // Don't increment the counter,
1084 // as we still need to add this element.
1085 }
1086 else
1087 {
1088 // Get the old value and put it in the new table.
1089 *peTTnode = oldEventTypeTable[i];
1090 }
1091 }
1092
1093 i++;
1094 }
1095
1096 delete[] oldEventTypeTable;
1097}
1098
456bc6d9
VZ
1099// ----------------------------------------------------------------------------
1100// wxEvtHandler
1101// ----------------------------------------------------------------------------
1102
0b746ba8 1103wxEvtHandler::wxEvtHandler()
c801d85f 1104{
3c778901
VZ
1105 m_nextHandler = NULL;
1106 m_previousHandler = NULL;
1c624631 1107 m_enabled = true;
3c778901
VZ
1108 m_dynamicEvents = NULL;
1109 m_pendingEvents = NULL;
aa767a45 1110
b88c44e7
RD
1111 // no client data (yet)
1112 m_clientData = NULL;
1113 m_clientDataType = wxClientData_None;
c801d85f
KB
1114}
1115
0b746ba8 1116wxEvtHandler::~wxEvtHandler()
c801d85f 1117{
7f853dd0 1118 Unlink();
0b746ba8
VZ
1119
1120 if (m_dynamicEvents)
fe71f65c 1121 {
3c448b2e
VZ
1122 for ( wxList::iterator it = m_dynamicEvents->begin(),
1123 end = m_dynamicEvents->end();
1124 it != end;
1125 ++it )
0b746ba8 1126 {
df5168c4 1127 wxDynamicEventTableEntry *entry = (wxDynamicEventTableEntry*)*it;
2e4df4bf 1128
cc6ceca7 1129 // Remove ourselves from sink destructor notifications
3c778901 1130 // (this has usually been done, in wxTrackable destructor)
f3ff831f 1131 wxEvtHandler *eventSink = entry->m_fn->GetEvtHandler();
cc6ceca7 1132 if ( eventSink )
2ef989c9 1133 {
cc6ceca7
VZ
1134 wxEventConnectionRef * const
1135 evtConnRef = FindRefInTrackerList(eventSink);
1136 if ( evtConnRef )
1137 {
1138 eventSink->RemoveNode(evtConnRef);
1139 delete evtConnRef;
1140 }
2ef989c9 1141 }
cc6ceca7 1142
3c778901 1143 delete entry->m_callbackUserData;
0b746ba8 1144 delete entry;
0b746ba8
VZ
1145 }
1146 delete m_dynamicEvents;
dde19c21 1147 }
7214297d 1148
dde19c21 1149 // Remove us from the list of the pending events if necessary.
8e40ed85
FM
1150 if (wxTheApp)
1151 wxTheApp->RemovePendingEventHandler(this);
b88c44e7 1152
cae9e7b1
FM
1153 DeletePendingEvents();
1154
b88c44e7
RD
1155 // we only delete object data, not untyped
1156 if ( m_clientDataType == wxClientData_Object )
1157 delete m_clientObject;
c801d85f
KB
1158}
1159
7f853dd0
FM
1160void wxEvtHandler::Unlink()
1161{
1162 // this event handler must take itself out of the chain of handlers:
1163
1164 if (m_previousHandler)
1165 m_previousHandler->SetNextHandler(m_nextHandler);
1166
1167 if (m_nextHandler)
1168 m_nextHandler->SetPreviousHandler(m_previousHandler);
1169
1170 m_nextHandler = NULL;
1171 m_previousHandler = NULL;
1172}
1173
1174bool wxEvtHandler::IsUnlinked() const
1175{
1176 return m_previousHandler == NULL &&
1177 m_nextHandler == NULL;
1178}
1179
58cc1587
VZ
1180wxEventFilter* wxEvtHandler::ms_filterList = NULL;
1181
1182/* static */ void wxEvtHandler::AddFilter(wxEventFilter* filter)
1183{
1184 wxCHECK_RET( filter, "NULL filter" );
1185
1186 filter->m_next = ms_filterList;
1187 ms_filterList = filter;
1188}
1189
1190/* static */ void wxEvtHandler::RemoveFilter(wxEventFilter* filter)
1191{
1192 wxEventFilter* prev = NULL;
1193 for ( wxEventFilter* f = ms_filterList; f; f = f->m_next )
1194 {
1195 if ( f == filter )
1196 {
1197 // Set the previous list element or the list head to the next
1198 // element.
1199 if ( prev )
1200 prev->m_next = f->m_next;
1201 else
1202 ms_filterList = f->m_next;
1203
1204 // Also reset the next pointer in the filter itself just to avoid
1205 // having possibly dangling pointers, even though it's not strictly
1206 // necessary.
1207 f->m_next = NULL;
1208
1209 // Skip the assert below.
1210 return;
1211 }
956b1c85
VZ
1212
1213 prev = f;
58cc1587
VZ
1214 }
1215
1216 wxFAIL_MSG( "Filter not found" );
1217}
1218
7214297d 1219#if wxUSE_THREADS
aadbdf11 1220
76bfdc9a 1221bool wxEvtHandler::ProcessThreadEvent(const wxEvent& event)
7214297d 1222{
7214297d 1223 // check that we are really in a child thread
8e193f38
VZ
1224 wxASSERT_MSG( !wxThread::IsMain(),
1225 wxT("use ProcessEvent() in main thread") );
1226
1227 AddPendingEvent(event);
7214297d 1228
1c624631 1229 return true;
8e193f38
VZ
1230}
1231
1232#endif // wxUSE_THREADS
1233
c3f94162 1234void wxEvtHandler::QueueEvent(wxEvent *event)
8e193f38 1235{
c3f94162 1236 wxCHECK_RET( event, "NULL event can't be posted" );
7a5c8ac4 1237
8e40ed85 1238 if (!wxTheApp)
dde19c21
FM
1239 {
1240 // we need an event loop which manages the list of event handlers with
1241 // pending events... cannot proceed without it!
8e40ed85 1242 wxLogDebug("No application object! Cannot queue this event!");
9f54c829
FM
1243
1244 // anyway delete the given event to avoid memory leaks
1245 delete event;
1246
dde19c21
FM
1247 return;
1248 }
1249
c3f94162 1250 // 1) Add this event to our list of pending events
8ebec7dc 1251 wxENTER_CRIT_SECT( m_pendingEventsLock );
16c1f79c 1252
8e193f38 1253 if ( !m_pendingEvents )
cae9e7b1 1254 m_pendingEvents = new wxList;
7214297d 1255
c3f94162 1256 m_pendingEvents->Append(event);
7214297d 1257
16c1f79c
RR
1258 // 2) Add this event handler to list of event handlers that
1259 // have pending events.
cfe17b74 1260
8e40ed85 1261 wxTheApp->AppendPendingEventHandler(this);
6164f93c 1262
a715b990
VZ
1263 // only release m_pendingEventsLock now because otherwise there is a race
1264 // condition as described in the ticket #9093: we could process the event
1265 // just added to m_pendingEvents in our ProcessPendingEvents() below before
079f4130 1266 // we had time to append this pointer to wxHandlersWithPendingEvents list; thus
a715b990
VZ
1267 // breaking the invariant that a handler should be in the list iff it has
1268 // any pending events to process
1269 wxLEAVE_CRIT_SECT( m_pendingEventsLock );
1270
90e572f1 1271 // 3) Inform the system that new pending events are somewhere,
16c1f79c 1272 // and that these should be processed in idle time.
bf9e3e73 1273 wxWakeUpIdle();
7214297d
GL
1274}
1275
cae9e7b1
FM
1276void wxEvtHandler::DeletePendingEvents()
1277{
1278 if (m_pendingEvents)
1279 m_pendingEvents->DeleteContents(true);
1280 wxDELETE(m_pendingEvents);
1281}
1282
7214297d
GL
1283void wxEvtHandler::ProcessPendingEvents()
1284{
8e40ed85 1285 if (!wxTheApp)
dde19c21
FM
1286 {
1287 // we need an event loop which manages the list of event handlers with
1288 // pending events... cannot proceed without it!
8e40ed85 1289 wxLogDebug("No application object! Cannot process pending events!");
dde19c21
FM
1290 return;
1291 }
1292
d48b06bd
FM
1293 // we need to process only a single pending event in this call because
1294 // each call to ProcessEvent() could result in the destruction of this
1295 // same event handler (see the comment at the end of this function)
1296
8ebec7dc 1297 wxENTER_CRIT_SECT( m_pendingEventsLock );
8e193f38 1298
7ce2fb71
VZ
1299 // this method is only called by wxApp if this handler does have
1300 // pending events
1301 wxCHECK_RET( m_pendingEvents && !m_pendingEvents->IsEmpty(),
1302 "should have pending events if called" );
5fa150e2 1303
19c4d916 1304 wxList::compatibility_iterator node = m_pendingEvents->GetFirst();
d48b06bd
FM
1305 wxEvent* pEvent = static_cast<wxEvent *>(node->GetData());
1306
1307 // find the first event which can be processed now:
dde19c21
FM
1308 wxEventLoopBase* evtLoop = wxEventLoopBase::GetActive();
1309 if (evtLoop && evtLoop->IsYielding())
d48b06bd 1310 {
dde19c21 1311 while (node && pEvent && !evtLoop->IsEventAllowedInsideYield(pEvent->GetEventCategory()))
d48b06bd
FM
1312 {
1313 node = node->GetNext();
1314 pEvent = node ? static_cast<wxEvent *>(node->GetData()) : NULL;
1315 }
1316
1317 if (!node)
1318 {
1319 // all our events are NOT processable now... signal this:
8e40ed85 1320 wxTheApp->DelayPendingEventHandler(this);
dde19c21
FM
1321
1322 // see the comment at the beginning of evtloop.h header for the
1323 // logic behind YieldFor() and behind DelayPendingEventHandler()
1324
d48b06bd
FM
1325 wxLEAVE_CRIT_SECT( m_pendingEventsLock );
1326
1327 return;
1328 }
1329 }
1330
1331 wxEventPtr event(pEvent);
5875d39c 1332
19c4d916
VZ
1333 // it's important we remove event from list before processing it, else a
1334 // nested event loop, for example from a modal dialog, might process the
1335 // same event again.
1336 m_pendingEvents->Erase(node);
7b0d5c59 1337
19c4d916 1338 if ( m_pendingEvents->IsEmpty() )
1512f0f7 1339 {
dde19c21
FM
1340 // if there are no more pending events left, we don't need to
1341 // stay in this list
8e40ed85 1342 wxTheApp->RemovePendingEventHandler(this);
1512f0f7 1343 }
5fa150e2 1344
8ebec7dc 1345 wxLEAVE_CRIT_SECT( m_pendingEventsLock );
7b0d5c59 1346
19c4d916 1347 ProcessEvent(*event);
cfe17b74 1348
19c4d916
VZ
1349 // careful: this object could have been deleted by the event handler
1350 // executed by the above ProcessEvent() call, so we can't access any fields
1351 // of this object any more
7214297d 1352}
7214297d 1353
8e40ed85
FM
1354/* static */
1355bool wxEvtHandler::ProcessEventIfMatchesId(const wxEventTableEntryBase& entry,
1356 wxEvtHandler *handler,
1357 wxEvent& event)
1c624631
VZ
1358{
1359 int tableId1 = entry.m_id,
1360 tableId2 = entry.m_lastId;
1361
1362 // match only if the event type is the same and the id is either -1 in
1363 // the event table (meaning "any") or the event id matches the id
1364 // specified in the event table either exactly or by falling into
1365 // range between first and last
1a18887b
WS
1366 if ((tableId1 == wxID_ANY) ||
1367 (tableId2 == wxID_ANY && tableId1 == event.GetId()) ||
1368 (tableId2 != wxID_ANY &&
1c624631
VZ
1369 (event.GetId() >= tableId1 && event.GetId() <= tableId2)))
1370 {
1371 event.Skip(false);
1372 event.m_callbackUserData = entry.m_callbackUserData;
1373
1374#if wxUSE_EXCEPTIONS
1375 if ( wxTheApp )
1376 {
1377 // call the handler via wxApp method which allows the user to catch
1378 // any exceptions which may be thrown by any handler in the program
1379 // in one place
3c778901 1380 wxTheApp->CallEventHandler(handler, *entry.m_fn, event);
1c624631
VZ
1381 }
1382 else
8bd2a804 1383#endif // wxUSE_EXCEPTIONS
1c624631 1384 {
3c778901 1385 (*entry.m_fn)(handler, event);
1c624631 1386 }
1c624631
VZ
1387
1388 if (!event.GetSkipped())
1389 return true;
1390 }
1391
1392 return false;
1393}
c801d85f 1394
8cc208e3 1395bool wxEvtHandler::DoTryApp(wxEvent& event)
c801d85f 1396{
4caf847c 1397 if ( wxTheApp && (this != wxTheApp) )
9154d8cf 1398 {
4caf847c
VZ
1399 // Special case: don't pass wxEVT_IDLE to wxApp, since it'll always
1400 // swallow it. wxEVT_IDLE is sent explicitly to wxApp so it will be
1401 // processed appropriately via SearchEventTable.
1402 if ( event.GetEventType() != wxEVT_IDLE )
1403 {
1404 if ( wxTheApp->ProcessEvent(event) )
1c624631 1405 return true;
4caf847c 1406 }
9154d8cf
VZ
1407 }
1408
1c624631 1409 return false;
4caf847c 1410}
0b746ba8 1411
2d8c0c2c
VZ
1412bool wxEvtHandler::TryBefore(wxEvent& event)
1413{
609483b8 1414#if WXWIN_COMPATIBILITY_2_8
2d8c0c2c
VZ
1415 // call the old virtual function to keep the code overriding it working
1416 return TryValidator(event);
1417#else
1418 wxUnusedVar(event);
1419 return false;
1420#endif
1421}
1422
1423bool wxEvtHandler::TryAfter(wxEvent& event)
1424{
3cbb9df8
VZ
1425 // We only want to pass the window to the application object once even if
1426 // there are several chained handlers. Ensure that this is what happens by
1427 // only calling DoTryApp() if there is no next handler (which would do it).
1428 //
1429 // Notice that, unlike simply calling TryAfter() on the last handler in the
1430 // chain only from ProcessEvent(), this also works with wxWindow object in
1431 // the middle of the chain: its overridden TryAfter() will still be called
1432 // and propagate the event upwards the window hierarchy even if it's not
1433 // the last one in the chain (which, admittedly, shouldn't happen often).
1434 if ( GetNextHandler() )
1435 return GetNextHandler()->TryAfter(event);
1436
3bad8c39
VZ
1437 // If this event is going to be processed in another handler next, don't
1438 // pass it to wxTheApp now, it will be done from TryAfter() of this other
1439 // handler.
1440 if ( event.WillBeProcessedAgain() )
1441 return false;
1442
609483b8 1443#if WXWIN_COMPATIBILITY_2_8
2d8c0c2c
VZ
1444 // as above, call the old virtual function for compatibility
1445 return TryParent(event);
1446#else
1447 return DoTryApp(event);
1448#endif
1449}
1450
4caf847c
VZ
1451bool wxEvtHandler::ProcessEvent(wxEvent& event)
1452{
58cc1587
VZ
1453 // The very first thing we do is to allow any registered filters to hook
1454 // into event processing in order to globally pre-process all events.
29de6f40 1455 //
3cbb9df8 1456 // Note that we should only do it if we're the first event handler called
29de6f40 1457 // to avoid calling FilterEvent() multiple times as the event goes through
3cbb9df8 1458 // the event handler chain and possibly upwards the window hierarchy.
29de6f40 1459 if ( !event.WasProcessed() )
9154d8cf 1460 {
58cc1587 1461 for ( wxEventFilter* f = ms_filterList; f; f = f->m_next )
9154d8cf 1462 {
58cc1587
VZ
1463 int rc = f->FilterEvent(event);
1464 if ( rc != wxEventFilter::Event_Skip )
29de6f40 1465 {
58cc1587
VZ
1466 wxASSERT_MSG( rc == wxEventFilter::Event_Ignore ||
1467 rc == wxEventFilter::Event_Processed,
1468 "unexpected FilterEvent() return value" );
9154d8cf 1469
58cc1587 1470 return rc != wxEventFilter::Event_Ignore;
29de6f40
VZ
1471 }
1472 //else: proceed normally
9154d8cf 1473 }
9154d8cf
VZ
1474 }
1475
3cbb9df8
VZ
1476 // Short circuit the event processing logic if we're requested to process
1477 // this event in this handler only, see DoTryChain() for more details.
bbdee10d 1478 if ( event.ShouldProcessOnlyIn(this) )
4b6d82c7 1479 return TryBeforeAndHere(event);
3cbb9df8
VZ
1480
1481
1482 // Try to process the event in this handler itself.
1483 if ( ProcessEventLocally(event) )
0ef5cba6
VZ
1484 {
1485 // It is possible that DoTryChain() called from ProcessEventLocally()
1486 // returned true but the event was not really processed: this happens
1487 // if a custom handler ignores the request to process the event in this
1488 // handler only and in this case we should skip the post processing
1489 // done in TryAfter() but still return the correct value ourselves to
1490 // indicate whether we did or did not find a handler for this event.
1491 return !event.GetSkipped();
1492 }
3cbb9df8
VZ
1493
1494 // If we still didn't find a handler, propagate the event upwards the
1495 // window chain and/or to the application object.
1496 if ( TryAfter(event) )
1497 return true;
1498
1499
1500 // No handler found anywhere, bail out.
1501 return false;
1502}
1503
1504bool wxEvtHandler::ProcessEventLocally(wxEvent& event)
1505{
4b6d82c7
VZ
1506 // Try the hooks which should be called before our own handlers and this
1507 // handler itself first. Notice that we should not call ProcessEvent() on
1508 // this one as we're already called from it, which explains why we do it
1509 // here and not in DoTryChain()
1510 return TryBeforeAndHere(event) || DoTryChain(event);
3cbb9df8 1511}
29de6f40 1512
3cbb9df8
VZ
1513bool wxEvtHandler::DoTryChain(wxEvent& event)
1514{
1515 for ( wxEvtHandler *h = GetNextHandler(); h; h = h->GetNextHandler() )
1516 {
1517 // We need to process this event at the level of this handler only
1518 // right now, the pre-/post-processing was either already done by
1519 // ProcessEvent() from which we were called or will be done by it when
1520 // we return.
1521 //
4b6d82c7 1522 // However we must call ProcessEvent() and not TryHereOnly() because the
512220b6
VZ
1523 // existing code (including some in wxWidgets itself) expects the
1524 // overridden ProcessEvent() in its custom event handlers pushed on a
1525 // window to be called.
3cbb9df8
VZ
1526 //
1527 // So we must call ProcessEvent() but it must not do what it usually
bbdee10d
VZ
1528 // does. To resolve this paradox we set up a special flag inside the
1529 // object itself to let ProcessEvent() know that it shouldn't do any
1530 // pre/post-processing for this event if it gets it. Note that this
1531 // only applies to this handler, if the event is passed to another one
1532 // by explicitly calling its ProcessEvent(), pre/post-processing should
1533 // be done as usual.
1534 //
1535 // Final complication is that if the implementation of ProcessEvent()
1536 // called wxEvent::DidntHonourProcessOnlyIn() (as the gross hack that
1537 // is wxScrollHelperEvtHandler::ProcessEvent() does) and ignored our
1538 // request to process event in this handler only, we have to compensate
1539 // for it by not processing the event further because this was already
1540 // done by that rogue event handler.
1541 wxEventProcessInHandlerOnly processInHandlerOnly(event, h);
e0520316 1542 if ( h->ProcessEvent(event) )
0ef5cba6
VZ
1543 {
1544 // Make sure "skipped" flag is not set as the event was really
1545 // processed in this case. Normally it shouldn't be set anyhow but
1546 // make sure just in case the user code does something strange.
1547 event.Skip(false);
1548
3cbb9df8 1549 return true;
0ef5cba6 1550 }
e0520316
VZ
1551
1552 if ( !event.ShouldProcessOnlyIn(h) )
0ef5cba6
VZ
1553 {
1554 // Still return true to indicate that no further processing should
1555 // be undertaken but ensure that "skipped" flag is set so that the
1556 // caller knows that the event was not really processed.
1557 event.Skip();
1558
1559 return true;
1560 }
3cbb9df8
VZ
1561 }
1562
1563 return false;
25250d33
VZ
1564}
1565
4b6d82c7 1566bool wxEvtHandler::TryHereOnly(wxEvent& event)
25250d33 1567{
29de6f40
VZ
1568 // If the event handler is disabled it doesn't process any events
1569 if ( !GetEvtHandlerEnabled() )
1570 return false;
4caf847c 1571
29de6f40
VZ
1572 // Handle per-instance dynamic event tables first
1573 if ( m_dynamicEvents && SearchDynamicEventTable(event) )
1574 return true;
c801d85f 1575
29de6f40
VZ
1576 // Then static per-class event tables
1577 if ( GetEventHashTable().HandleEvent(event, this) )
25250d33 1578 return true;
c801d85f 1579
b690a8f6 1580#ifdef wxHAS_CALL_AFTER
856cad9a 1581 // There is an implicit entry for async method calls processing in every
cf222762
VZ
1582 // event handler:
1583 if ( event.GetEventType() == wxEVT_ASYNC_METHOD_CALL &&
1584 event.GetEventObject() == this )
1585 {
1586 static_cast<wxAsyncMethodCallEvent&>(event).Execute();
1587 return true;
1588 }
b690a8f6 1589#endif // wxHAS_CALL_AFTER
cf222762 1590
25250d33
VZ
1591 // We don't have a handler for this event.
1592 return false;
c801d85f
KB
1593}
1594
937013e0
VS
1595bool wxEvtHandler::SafelyProcessEvent(wxEvent& event)
1596{
1597#if wxUSE_EXCEPTIONS
1598 try
1599 {
1600#endif
1601 return ProcessEvent(event);
1602#if wxUSE_EXCEPTIONS
1603 }
1604 catch ( ... )
1605 {
8793514e
VZ
1606 // notice that we do it in 2 steps to avoid warnings about possibly
1607 // uninitialized loop variable from some versions of g++ which are not
1608 // smart enough to figure out that GetActive() doesn't throw and so
1609 // that loop will always be initialized
1610 wxEventLoopBase *loop = NULL;
937013e0
VS
1611 try
1612 {
8793514e
VZ
1613 loop = wxEventLoopBase::GetActive();
1614
937013e0
VS
1615 if ( !wxTheApp || !wxTheApp->OnExceptionInMainLoop() )
1616 {
1617 if ( loop )
1618 loop->Exit();
1619 }
1620 //else: continue running current event loop
1621
1622 return false;
1623 }
1624 catch ( ... )
1625 {
1626 // OnExceptionInMainLoop() threw, possibly rethrowing the same
1627 // exception again: very good, but we still need Exit() to
1628 // be called
1629 if ( loop )
1630 loop->Exit();
1631 throw;
1632 }
1633 }
1634#endif // wxUSE_EXCEPTIONS
1635}
1636
c801d85f
KB
1637bool wxEvtHandler::SearchEventTable(wxEventTable& table, wxEvent& event)
1638{
1c624631 1639 const wxEventType eventType = event.GetEventType();
68662769 1640 for ( int i = 0; table.entries[i].m_fn != 0; i++ )
c801d85f 1641 {
68662769 1642 const wxEventTableEntry& entry = table.entries[i];
68662769 1643 if ( eventType == entry.m_eventType )
0b746ba8 1644 {
03f3617b 1645 if ( ProcessEventIfMatchesId(entry, this, event) )
1c624631 1646 return true;
0b746ba8 1647 }
c801d85f 1648 }
68662769 1649
1c624631 1650 return false;
c801d85f 1651}
97d7bfb8 1652
890d70eb
VZ
1653void wxEvtHandler::DoBind(int id,
1654 int lastId,
1655 wxEventType eventType,
1656 wxEventFunctor *func,
1657 wxObject *userData)
fe71f65c 1658{
0b5eceb6 1659 wxDynamicEventTableEntry *entry =
3c778901 1660 new wxDynamicEventTableEntry(eventType, id, lastId, func, userData);
0b746ba8
VZ
1661
1662 if (!m_dynamicEvents)
1663 m_dynamicEvents = new wxList;
1664
92309201
RD
1665 // Insert at the front of the list so most recent additions are found first
1666 m_dynamicEvents->Insert( (wxObject*) entry );
cc6ceca7
VZ
1667
1668 // Make sure we get to know when a sink is destroyed
f3ff831f 1669 wxEvtHandler *eventSink = func->GetEvtHandler();
886274c6 1670 if ( eventSink && eventSink != this )
2ef989c9 1671 {
cc6ceca7
VZ
1672 wxEventConnectionRef *evtConnRef = FindRefInTrackerList(eventSink);
1673 if ( evtConnRef )
1674 evtConnRef->IncRef( );
2ef989c9 1675 else
e822d1bd 1676 new wxEventConnectionRef(this, eventSink);
2ef989c9 1677 }
fe71f65c 1678}
97d7bfb8 1679
3c778901 1680bool
890d70eb
VZ
1681wxEvtHandler::DoUnbind(int id,
1682 int lastId,
1683 wxEventType eventType,
1684 const wxEventFunctor& func,
1685 wxObject *userData)
97d7bfb8
RR
1686{
1687 if (!m_dynamicEvents)
1c624631 1688 return false;
cfe17b74 1689
df5168c4 1690 wxList::compatibility_iterator node = m_dynamicEvents->GetFirst();
97d7bfb8
RR
1691 while (node)
1692 {
ad684023 1693 wxDynamicEventTableEntry *entry = (wxDynamicEventTableEntry*)node->GetData();
2e4df4bf 1694
97d7bfb8 1695 if ((entry->m_id == id) &&
1a18887b 1696 ((entry->m_lastId == lastId) || (lastId == wxID_ANY)) &&
97d7bfb8 1697 ((entry->m_eventType == eventType) || (eventType == wxEVT_NULL)) &&
890d70eb 1698 entry->m_fn->IsMatching(func) &&
3c778901 1699 ((entry->m_callbackUserData == userData) || !userData))
97d7bfb8 1700 {
75b2220e
VZ
1701 // Remove connection from tracker node (wxEventConnectionRef)
1702 wxEvtHandler *eventSink = entry->m_fn->GetEvtHandler();
1703 if ( eventSink && eventSink != this )
1704 {
1705 wxEventConnectionRef *evtConnRef = FindRefInTrackerList(eventSink);
1706 if ( evtConnRef )
1707 evtConnRef->DecRef();
1708 }
1709
3c778901 1710 delete entry->m_callbackUserData;
df5168c4 1711 m_dynamicEvents->Erase( node );
97d7bfb8 1712 delete entry;
1c624631 1713 return true;
97d7bfb8 1714 }
b1d4dd7a 1715 node = node->GetNext();
97d7bfb8 1716 }
1c624631 1717 return false;
97d7bfb8 1718}
fe71f65c
RR
1719
1720bool wxEvtHandler::SearchDynamicEventTable( wxEvent& event )
1721{
1c624631 1722 wxCHECK_MSG( m_dynamicEvents, false,
223d09f6 1723 wxT("caller should check that we have dynamic events") );
0b746ba8 1724
df5168c4 1725 wxList::compatibility_iterator node = m_dynamicEvents->GetFirst();
0b746ba8 1726 while (node)
fe71f65c 1727 {
1c624631 1728 wxDynamicEventTableEntry *entry = (wxDynamicEventTableEntry*)node->GetData();
0b746ba8 1729
7fce89b9
VZ
1730 // get next node before (maybe) calling the event handler as it could
1731 // call Disconnect() invalidating the current node
1732 node = node->GetNext();
1733
03f3617b 1734 if ( event.GetEventType() == entry->m_eventType )
0b746ba8 1735 {
f3ff831f 1736 wxEvtHandler *handler = entry->m_fn->GetEvtHandler();
03f3617b
VZ
1737 if ( !handler )
1738 handler = this;
1739 if ( ProcessEventIfMatchesId(*entry, handler, event) )
1c624631 1740 return true;
0b746ba8 1741 }
7b678698 1742 }
1c624631
VZ
1743
1744 return false;
4115960d 1745}
fe71f65c 1746
b88c44e7
RD
1747void wxEvtHandler::DoSetClientObject( wxClientData *data )
1748{
1749 wxASSERT_MSG( m_clientDataType != wxClientData_Void,
1750 wxT("can't have both object and void client data") );
1751
1752 if ( m_clientObject )
1753 delete m_clientObject;
1754
1755 m_clientObject = data;
1756 m_clientDataType = wxClientData_Object;
1757}
1758
1759wxClientData *wxEvtHandler::DoGetClientObject() const
1760{
1761 // it's not an error to call GetClientObject() on a window which doesn't
1762 // have client data at all - NULL will be returned
1763 wxASSERT_MSG( m_clientDataType != wxClientData_Void,
1764 wxT("this window doesn't have object client data") );
1765
1766 return m_clientObject;
1767}
1768
1769void wxEvtHandler::DoSetClientData( void *data )
1770{
1771 wxASSERT_MSG( m_clientDataType != wxClientData_Object,
1772 wxT("can't have both object and void client data") );
1773
1774 m_clientData = data;
1775 m_clientDataType = wxClientData_Void;
1776}
1777
1778void *wxEvtHandler::DoGetClientData() const
1779{
1780 // it's not an error to call GetClientData() on a window which doesn't have
1781 // client data at all - NULL will be returned
1782 wxASSERT_MSG( m_clientDataType != wxClientData_Object,
1783 wxT("this window doesn't have void client data") );
1784
1785 return m_clientData;
1786}
1787
cc6ceca7
VZ
1788// A helper to find an wxEventConnectionRef object
1789wxEventConnectionRef *
1790wxEvtHandler::FindRefInTrackerList(wxEvtHandler *eventSink)
2ef989c9 1791{
cc6ceca7 1792 for ( wxTrackerNode *node = eventSink->GetFirst(); node; node = node->m_nxt )
2ef989c9 1793 {
cc6ceca7
VZ
1794 // we only want wxEventConnectionRef nodes here
1795 wxEventConnectionRef *evtConnRef = node->ToEventConnection();
1796 if ( evtConnRef && evtConnRef->m_src == this )
2ef989c9 1797 {
cc6ceca7
VZ
1798 wxASSERT( evtConnRef->m_sink==eventSink );
1799 return evtConnRef;
2ef989c9
RR
1800 }
1801 }
cc6ceca7 1802
2ef989c9
RR
1803 return NULL;
1804}
1805
1806void wxEvtHandler::OnSinkDestroyed( wxEvtHandler *sink )
1807{
1808 wxASSERT(m_dynamicEvents);
cc6ceca7 1809
2ef989c9
RR
1810 // remove all connections with this sink
1811 wxList::compatibility_iterator node = m_dynamicEvents->GetFirst(), node_nxt;
1812 while (node)
1813 {
1814 wxDynamicEventTableEntry *entry = (wxDynamicEventTableEntry*)node->GetData();
1815 node_nxt = node->GetNext();
cc6ceca7 1816
f3ff831f 1817 if ( entry->m_fn->GetEvtHandler() == sink )
2ef989c9 1818 {
3c778901 1819 delete entry->m_callbackUserData;
2ef989c9
RR
1820 m_dynamicEvents->Erase( node );
1821 delete entry;
1822 }
1823 node = node_nxt;
1824 }
1825}
1826
4caf847c
VZ
1827#endif // wxUSE_BASE
1828
e90c1d2a
VZ
1829#if wxUSE_GUI
1830
e702ff0f
JS
1831// Find a window with the focus, that is also a descendant of the given window.
1832// This is used to determine the window to initially send commands to.
1833wxWindow* wxFindFocusDescendant(wxWindow* ancestor)
1834{
1835 // Process events starting with the window with the focus, if any.
1836 wxWindow* focusWin = wxWindow::FindFocus();
1837 wxWindow* win = focusWin;
1838
1839 // Check if this is a descendant of this frame.
1840 // If not, win will be set to NULL.
1841 while (win)
1842 {
1843 if (win == ancestor)
1844 break;
1845 else
1846 win = win->GetParent();
1847 }
3c778901
VZ
1848 if (win == NULL)
1849 focusWin = NULL;
e702ff0f
JS
1850
1851 return focusWin;
1852}
1853
c4fa5aa7
VZ
1854// ----------------------------------------------------------------------------
1855// wxEventBlocker
1856// ----------------------------------------------------------------------------
1857
1858wxEventBlocker::wxEventBlocker(wxWindow *win, wxEventType type)
1859{
1860 wxCHECK_RET(win, wxT("Null window given to wxEventBlocker"));
1861
1862 m_window = win;
1863
1864 Block(type);
1865 m_window->PushEventHandler(this);
1866}
1867
1868wxEventBlocker::~wxEventBlocker()
1869{
1870 wxEvtHandler *popped = m_window->PopEventHandler(false);
aa767a45 1871 wxCHECK_RET(popped == this,
c4fa5aa7
VZ
1872 wxT("Don't push other event handlers into a window managed by wxEventBlocker!"));
1873}
1874
1875bool wxEventBlocker::ProcessEvent(wxEvent& event)
1876{
1877 // should this event be blocked?
1878 for ( size_t i = 0; i < m_eventsToBlock.size(); i++ )
1879 {
1880 wxEventType t = (wxEventType)m_eventsToBlock[i];
1881 if ( t == wxEVT_ANY || t == event.GetEventType() )
1882 return true; // yes, it should: mark this event as processed
1883 }
1884
1885 return false;
1886}
1887
e90c1d2a 1888#endif // wxUSE_GUI
3c778901 1889