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