]> git.saurik.com Git - wxWidgets.git/blame - src/common/event.cpp
Correct conversion from text file to charset (which is read in that text file)
[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"
937013e0 28#include "wx/evtloop.h"
d5da0ce7 29
c801d85f 30#ifndef WX_PRECOMP
e90c1d2a 31 #include "wx/list.h"
8ecff181 32 #include "wx/app.h"
de6185e2 33 #include "wx/utils.h"
bb90a3e6 34 #include "wx/stopwatch.h"
02761f6c 35 #include "wx/module.h"
e90c1d2a
VZ
36
37 #if wxUSE_GUI
a8ff046b 38 #include "wx/window.h"
e90c1d2a 39 #include "wx/control.h"
e90c1d2a 40 #include "wx/dc.h"
dca94103 41 #include "wx/spinbutt.h"
75a29298 42 #include "wx/textctrl.h"
264cb7f5 43 #include "wx/validate.h"
e90c1d2a 44 #endif // wxUSE_GUI
c801d85f
KB
45#endif
46
204abcd4 47#include "wx/thread.h"
47b6fabc 48
d102b02a
VZ
49#if wxUSE_BASE
50 #include "wx/ptr_scpd.h"
51
52 wxDECLARE_SCOPED_PTR(wxEvent, wxEventPtr)
53 wxDEFINE_SCOPED_PTR(wxEvent, wxEventPtr)
54#endif // wxUSE_BASE
204abcd4 55
8e193f38
VZ
56// ----------------------------------------------------------------------------
57// wxWin macros
58// ----------------------------------------------------------------------------
59
3ed2104c
VZ
60#if wxUSE_BASE
61 IMPLEMENT_DYNAMIC_CLASS(wxEvtHandler, wxObject)
62 IMPLEMENT_ABSTRACT_CLASS(wxEvent, wxObject)
b46b1d59 63 IMPLEMENT_DYNAMIC_CLASS(wxIdleEvent, wxEvent)
3ed2104c 64#endif // wxUSE_BASE
e90c1d2a 65
23f681ec
VZ
66#if wxUSE_GUI
67 IMPLEMENT_DYNAMIC_CLASS(wxCommandEvent, wxEvent)
68 IMPLEMENT_DYNAMIC_CLASS(wxNotifyEvent, wxCommandEvent)
69 IMPLEMENT_DYNAMIC_CLASS(wxScrollEvent, wxCommandEvent)
70 IMPLEMENT_DYNAMIC_CLASS(wxScrollWinEvent, wxEvent)
71 IMPLEMENT_DYNAMIC_CLASS(wxMouseEvent, wxEvent)
72 IMPLEMENT_DYNAMIC_CLASS(wxKeyEvent, wxEvent)
73 IMPLEMENT_DYNAMIC_CLASS(wxSizeEvent, wxEvent)
74 IMPLEMENT_DYNAMIC_CLASS(wxPaintEvent, wxEvent)
1e6feb95 75 IMPLEMENT_DYNAMIC_CLASS(wxNcPaintEvent, wxEvent)
23f681ec
VZ
76 IMPLEMENT_DYNAMIC_CLASS(wxEraseEvent, wxEvent)
77 IMPLEMENT_DYNAMIC_CLASS(wxMoveEvent, wxEvent)
78 IMPLEMENT_DYNAMIC_CLASS(wxFocusEvent, wxEvent)
456bc6d9 79 IMPLEMENT_DYNAMIC_CLASS(wxChildFocusEvent, wxCommandEvent)
23f681ec
VZ
80 IMPLEMENT_DYNAMIC_CLASS(wxCloseEvent, wxEvent)
81 IMPLEMENT_DYNAMIC_CLASS(wxShowEvent, wxEvent)
82 IMPLEMENT_DYNAMIC_CLASS(wxMaximizeEvent, wxEvent)
83 IMPLEMENT_DYNAMIC_CLASS(wxIconizeEvent, wxEvent)
84 IMPLEMENT_DYNAMIC_CLASS(wxMenuEvent, wxEvent)
85 IMPLEMENT_DYNAMIC_CLASS(wxJoystickEvent, wxEvent)
86 IMPLEMENT_DYNAMIC_CLASS(wxDropFilesEvent, wxEvent)
87 IMPLEMENT_DYNAMIC_CLASS(wxActivateEvent, wxEvent)
88 IMPLEMENT_DYNAMIC_CLASS(wxInitDialogEvent, wxEvent)
8e72b8b5 89 IMPLEMENT_DYNAMIC_CLASS(wxSetCursorEvent, wxEvent)
23f681ec 90 IMPLEMENT_DYNAMIC_CLASS(wxSysColourChangedEvent, wxEvent)
574c939e 91 IMPLEMENT_DYNAMIC_CLASS(wxDisplayChangedEvent, wxEvent)
23f681ec 92 IMPLEMENT_DYNAMIC_CLASS(wxUpdateUIEvent, wxCommandEvent)
75299490 93 IMPLEMENT_DYNAMIC_CLASS(wxNavigationKeyEvent, wxEvent)
23f681ec
VZ
94 IMPLEMENT_DYNAMIC_CLASS(wxPaletteChangedEvent, wxEvent)
95 IMPLEMENT_DYNAMIC_CLASS(wxQueryNewPaletteEvent, wxEvent)
96 IMPLEMENT_DYNAMIC_CLASS(wxWindowCreateEvent, wxEvent)
97 IMPLEMENT_DYNAMIC_CLASS(wxWindowDestroyEvent, wxEvent)
b96340e6 98 IMPLEMENT_DYNAMIC_CLASS(wxHelpEvent, wxCommandEvent)
69231000 99 IMPLEMENT_DYNAMIC_CLASS(wxContextMenuEvent, wxCommandEvent)
a5e84126 100 IMPLEMENT_DYNAMIC_CLASS(wxMouseCaptureChangedEvent, wxEvent)
63e819f2 101 IMPLEMENT_DYNAMIC_CLASS(wxMouseCaptureLostEvent, wxEvent)
78c91815 102 IMPLEMENT_DYNAMIC_CLASS(wxClipboardTextEvent, wxCommandEvent)
23f681ec 103#endif // wxUSE_GUI
0b746ba8 104
3ed2104c
VZ
105#if wxUSE_BASE
106
23f681ec
VZ
107const wxEventTable *wxEvtHandler::GetEventTable() const
108 { return &wxEvtHandler::sm_eventTable; }
0b746ba8 109
23f681ec
VZ
110const wxEventTable wxEvtHandler::sm_eventTable =
111 { (const wxEventTable *)NULL, &wxEvtHandler::sm_eventTableEntries[0] };
0b746ba8 112
b5a98acd
VZ
113wxEventHashTable &wxEvtHandler::GetEventHashTable() const
114 { return wxEvtHandler::sm_eventHashTable; }
115
116wxEventHashTable wxEvtHandler::sm_eventHashTable(wxEvtHandler::sm_eventTable);
117
23f681ec 118const wxEventTableEntry wxEvtHandler::sm_eventTableEntries[] =
3c778901 119 { DECLARE_EVENT_TABLE_TERMINATOR() };
c801d85f 120
1a18887b 121
a0826b11
VZ
122// wxUSE_MEMORY_TRACING considers memory freed from the static objects dtors
123// leaked, so we need to manually clean up all event tables before checking for
124// the memory leaks when using it, however this breaks re-initializing the
125// library (i.e. repeated calls to wxInitialize/wxUninitialize) because the
126// event tables won't be rebuilt the next time, so disable this by default
aa767a45 127#if defined(__WXDEBUG__) && wxUSE_MEMORY_TRACING
a0826b11 128
afa039f9
JS
129class wxEventTableEntryModule: public wxModule
130{
afa039f9 131public:
a0826b11
VZ
132 wxEventTableEntryModule() { }
133 virtual bool OnInit() { return true; }
134 virtual void OnExit() { wxEventHashTable::ClearAll(); }
135
136 DECLARE_DYNAMIC_CLASS(wxEventTableEntryModule)
afa039f9 137};
a0826b11 138
afa039f9 139IMPLEMENT_DYNAMIC_CLASS(wxEventTableEntryModule, wxModule)
a0826b11
VZ
140
141#endif // __WXDEBUG__ && wxUSE_MEMORY_TRACING
1a18887b 142
8e193f38
VZ
143// ----------------------------------------------------------------------------
144// global variables
145// ----------------------------------------------------------------------------
146
19c4d916
VZ
147// List containing event handlers with pending events (each handler can occur
148// at most once here)
079f4130 149wxList *wxHandlersWithPendingEvents = NULL;
8e193f38 150
7214297d 151#if wxUSE_THREADS
079f4130
FM
152 // protects wxHandlersWithPendingEvents list
153 wxCriticalSection *wxHandlersWithPendingEventsLocker = NULL;
7214297d
GL
154#endif
155
2e4df4bf
VZ
156// common event types are defined here, other event types are defined by the
157// components which use them
b5a98acd 158
c15d9c85
VS
159const wxEventType wxEVT_FIRST = 10000;
160const wxEventType wxEVT_USER_FIRST = wxEVT_FIRST + 2000;
2e4df4bf 161
461697c2 162DEFINE_EVENT_TYPE(wxEVT_NULL)
3c778901 163wxDEFINE_EVENT( wxEVT_IDLE, wxIdleEvent )
886dd7d2 164
886dd7d2
VZ
165#endif // wxUSE_BASE
166
167#if wxUSE_GUI
168
3c778901
VZ
169wxDEFINE_EVENT( wxEVT_COMMAND_BUTTON_CLICKED, wxCommandEvent )
170wxDEFINE_EVENT( wxEVT_COMMAND_CHECKBOX_CLICKED, wxCommandEvent )
171wxDEFINE_EVENT( wxEVT_COMMAND_CHOICE_SELECTED, wxCommandEvent )
172wxDEFINE_EVENT( wxEVT_COMMAND_LISTBOX_SELECTED, wxCommandEvent )
173wxDEFINE_EVENT( wxEVT_COMMAND_LISTBOX_DOUBLECLICKED, wxCommandEvent )
174wxDEFINE_EVENT( wxEVT_COMMAND_CHECKLISTBOX_TOGGLED, wxCommandEvent )
175wxDEFINE_EVENT( wxEVT_COMMAND_MENU_SELECTED, wxCommandEvent )
176wxDEFINE_EVENT( wxEVT_COMMAND_SLIDER_UPDATED, wxCommandEvent )
177wxDEFINE_EVENT( wxEVT_COMMAND_RADIOBOX_SELECTED, wxCommandEvent )
178wxDEFINE_EVENT( wxEVT_COMMAND_RADIOBUTTON_SELECTED, wxCommandEvent )
179wxDEFINE_EVENT( wxEVT_COMMAND_SCROLLBAR_UPDATED, wxCommandEvent )
180wxDEFINE_EVENT( wxEVT_COMMAND_VLBOX_SELECTED, wxCommandEvent )
181wxDEFINE_EVENT( wxEVT_COMMAND_COMBOBOX_SELECTED, wxCommandEvent )
182wxDEFINE_EVENT( wxEVT_COMMAND_TOOL_RCLICKED, wxCommandEvent )
183wxDEFINE_EVENT( wxEVT_COMMAND_TOOL_ENTER, wxCommandEvent )
184wxDEFINE_EVENT( wxEVT_COMMAND_SPINCTRL_UPDATED, wxCommandEvent )
185wxDEFINE_EVENT( wxEVT_COMMAND_SPINCTRLDOUBLE_UPDATED, wxCommandEvent )
186wxDEFINE_EVENT( wxEVT_COMMAND_TOOL_DROPDOWN_CLICKED, wxCommandEvent )
0b5eceb6 187
0b5eceb6 188// Mouse event types
3c778901
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
3c778901
VZ
213wxDEFINE_EVENT( wxEVT_CHAR, wxKeyEvent )
214wxDEFINE_EVENT( wxEVT_CHAR_HOOK, wxKeyEvent )
215wxDEFINE_EVENT( wxEVT_NAVIGATION_KEY, wxNavigationKeyEvent )
216wxDEFINE_EVENT( wxEVT_KEY_DOWN, wxKeyEvent )
217wxDEFINE_EVENT( wxEVT_KEY_UP, wxKeyEvent )
5048c832 218#if wxUSE_HOTKEY
3c778901 219wxDEFINE_EVENT( wxEVT_HOTKEY, wxKeyEvent )
5048c832 220#endif
0b5eceb6
VZ
221
222// Set cursor event
3c778901 223wxDEFINE_EVENT( wxEVT_SET_CURSOR, wxSetCursorEvent )
0b5eceb6
VZ
224
225// wxScrollbar and wxSlider event identifiers
3c778901
VZ
226wxDEFINE_EVENT( wxEVT_SCROLL_TOP, wxScrollEvent )
227wxDEFINE_EVENT( wxEVT_SCROLL_BOTTOM, wxScrollEvent )
228wxDEFINE_EVENT( wxEVT_SCROLL_LINEUP, wxScrollEvent )
229wxDEFINE_EVENT( wxEVT_SCROLL_LINEDOWN, wxScrollEvent )
230wxDEFINE_EVENT( wxEVT_SCROLL_PAGEUP, wxScrollEvent )
231wxDEFINE_EVENT( wxEVT_SCROLL_PAGEDOWN, wxScrollEvent )
232wxDEFINE_EVENT( wxEVT_SCROLL_THUMBTRACK, wxScrollEvent )
233wxDEFINE_EVENT( wxEVT_SCROLL_THUMBRELEASE, wxScrollEvent )
234wxDEFINE_EVENT( wxEVT_SCROLL_CHANGED, wxScrollEvent )
0b5eceb6 235
dca94103
VZ
236// Due to a bug in older wx versions, wxSpinEvents were being sent with type of
237// wxEVT_SCROLL_LINEUP, wxEVT_SCROLL_LINEDOWN and wxEVT_SCROLL_THUMBTRACK. But
238// with the type-safe events in place, these event types are associated with
239// wxScrollEvent. To allow handling of spin events, new event types have been
240// defined in spinbutt.h/spinnbuttcmn.cpp. To maintain backward compatibility
241// the spin event types are being initialized with the scroll event types.
242
243#if wxUSE_SPINBTN
244
245wxDEFINE_EVENT_ALIAS( wxEVT_SPIN_UP, wxSpinEvent, wxEVT_SCROLL_LINEUP )
246wxDEFINE_EVENT_ALIAS( wxEVT_SPIN_DOWN, wxSpinEvent, wxEVT_SCROLL_LINEDOWN )
247wxDEFINE_EVENT_ALIAS( wxEVT_SPIN, wxSpinEvent, wxEVT_SCROLL_THUMBTRACK )
248
249#endif // wxUSE_SPINBTN
250
0b5eceb6 251// Scroll events from wxWindow
3c778901
VZ
252wxDEFINE_EVENT( wxEVT_SCROLLWIN_TOP, wxScrollWinEvent )
253wxDEFINE_EVENT( wxEVT_SCROLLWIN_BOTTOM, wxScrollWinEvent )
254wxDEFINE_EVENT( wxEVT_SCROLLWIN_LINEUP, wxScrollWinEvent )
255wxDEFINE_EVENT( wxEVT_SCROLLWIN_LINEDOWN, wxScrollWinEvent )
256wxDEFINE_EVENT( wxEVT_SCROLLWIN_PAGEUP, wxScrollWinEvent )
257wxDEFINE_EVENT( wxEVT_SCROLLWIN_PAGEDOWN, wxScrollWinEvent )
258wxDEFINE_EVENT( wxEVT_SCROLLWIN_THUMBTRACK, wxScrollWinEvent )
259wxDEFINE_EVENT( wxEVT_SCROLLWIN_THUMBRELEASE, wxScrollWinEvent )
0b5eceb6
VZ
260
261// System events
3c778901
VZ
262wxDEFINE_EVENT( wxEVT_SIZE, wxSizeEvent )
263wxDEFINE_EVENT( wxEVT_SIZING, wxSizeEvent )
264wxDEFINE_EVENT( wxEVT_MOVE, wxMoveEvent )
265wxDEFINE_EVENT( wxEVT_MOVING, wxMoveEvent )
266wxDEFINE_EVENT( wxEVT_MOVE_START, wxMoveEvent )
267wxDEFINE_EVENT( wxEVT_MOVE_END, wxMoveEvent )
268wxDEFINE_EVENT( wxEVT_CLOSE_WINDOW, wxCloseEvent )
269wxDEFINE_EVENT( wxEVT_END_SESSION, wxCloseEvent )
270wxDEFINE_EVENT( wxEVT_QUERY_END_SESSION, wxCloseEvent )
271wxDEFINE_EVENT( wxEVT_HIBERNATE, wxActivateEvent )
272wxDEFINE_EVENT( wxEVT_ACTIVATE_APP, wxActivateEvent )
273wxDEFINE_EVENT( wxEVT_ACTIVATE, wxActivateEvent )
274wxDEFINE_EVENT( wxEVT_CREATE, wxWindowCreateEvent )
275wxDEFINE_EVENT( wxEVT_DESTROY, wxWindowDestroyEvent )
276wxDEFINE_EVENT( wxEVT_SHOW, wxShowEvent )
277wxDEFINE_EVENT( wxEVT_ICONIZE, wxIconizeEvent )
278wxDEFINE_EVENT( wxEVT_MAXIMIZE, wxMaximizeEvent )
279wxDEFINE_EVENT( wxEVT_MOUSE_CAPTURE_CHANGED, wxMouseCaptureChangedEvent )
280wxDEFINE_EVENT( wxEVT_MOUSE_CAPTURE_LOST, wxMouseCaptureLostEvent )
281wxDEFINE_EVENT( wxEVT_PAINT, wxPaintEvent )
282wxDEFINE_EVENT( wxEVT_ERASE_BACKGROUND, wxEraseEvent )
283wxDEFINE_EVENT( wxEVT_NC_PAINT, wxNcPaintEvent )
284wxDEFINE_EVENT( wxEVT_MENU_OPEN, wxMenuEvent )
285wxDEFINE_EVENT( wxEVT_MENU_CLOSE, wxMenuEvent )
286wxDEFINE_EVENT( wxEVT_MENU_HIGHLIGHT, wxMenuEvent )
287wxDEFINE_EVENT( wxEVT_CONTEXT_MENU, wxContextMenuEvent )
288wxDEFINE_EVENT( wxEVT_SYS_COLOUR_CHANGED, wxSysColourChangedEvent )
289wxDEFINE_EVENT( wxEVT_DISPLAY_CHANGED, wxDisplayChangedEvent )
290wxDEFINE_EVENT( wxEVT_QUERY_NEW_PALETTE, wxQueryNewPaletteEvent )
291wxDEFINE_EVENT( wxEVT_PALETTE_CHANGED, wxPaletteChangedEvent )
292wxDEFINE_EVENT( wxEVT_JOY_BUTTON_DOWN, wxJoystickEvent )
293wxDEFINE_EVENT( wxEVT_JOY_BUTTON_UP, wxJoystickEvent )
294wxDEFINE_EVENT( wxEVT_JOY_MOVE, wxJoystickEvent )
295wxDEFINE_EVENT( wxEVT_JOY_ZMOVE, wxJoystickEvent )
296wxDEFINE_EVENT( wxEVT_DROP_FILES, wxDropFilesEvent )
297wxDEFINE_EVENT( wxEVT_INIT_DIALOG, wxInitDialogEvent )
298wxDEFINE_EVENT( wxEVT_UPDATE_UI, wxUpdateUIEvent )
0b5eceb6 299
78c91815 300// Clipboard events
3c778901
VZ
301wxDEFINE_EVENT( wxEVT_COMMAND_TEXT_COPY, wxClipboardTextEvent )
302wxDEFINE_EVENT( wxEVT_COMMAND_TEXT_CUT, wxClipboardTextEvent )
303wxDEFINE_EVENT( wxEVT_COMMAND_TEXT_PASTE, wxClipboardTextEvent )
78c91815 304
0b5eceb6
VZ
305// Generic command events
306// Note: a click is a higher-level event than button down/up
3c778901
VZ
307wxDEFINE_EVENT( wxEVT_COMMAND_LEFT_CLICK, wxCommandEvent )
308wxDEFINE_EVENT( wxEVT_COMMAND_LEFT_DCLICK, wxCommandEvent )
309wxDEFINE_EVENT( wxEVT_COMMAND_RIGHT_CLICK, wxCommandEvent )
310wxDEFINE_EVENT( wxEVT_COMMAND_RIGHT_DCLICK, wxCommandEvent )
311wxDEFINE_EVENT( wxEVT_COMMAND_SET_FOCUS, wxCommandEvent )
312wxDEFINE_EVENT( wxEVT_COMMAND_KILL_FOCUS, wxCommandEvent )
313wxDEFINE_EVENT( wxEVT_COMMAND_ENTER, wxCommandEvent )
0b5eceb6
VZ
314
315// Help events
3c778901
VZ
316wxDEFINE_EVENT( wxEVT_HELP, wxHelpEvent )
317wxDEFINE_EVENT( wxEVT_DETAILED_HELP, wxHelpEvent )
6164f93c 318
886dd7d2
VZ
319#endif // wxUSE_GUI
320
321#if wxUSE_BASE
322
b46b1d59
VZ
323wxIdleMode wxIdleEvent::sm_idleMode = wxIDLE_PROCESS_ALL;
324
6164f93c
VZ
325// ============================================================================
326// implementation
327// ============================================================================
0b5eceb6 328
0b5eceb6
VZ
329// ----------------------------------------------------------------------------
330// event initialization
331// ----------------------------------------------------------------------------
332
333int wxNewEventType()
334{
335 // MT-FIXME
336 static int s_lastUsedEventType = wxEVT_FIRST;
337
338 return s_lastUsedEventType++;
339}
3c778901
VZ
340// ----------------------------------------------------------------------------
341// wxEventFunctor
342// ----------------------------------------------------------------------------
343
344wxEventFunctor::~wxEventFunctor()
345{
346}
0b5eceb6 347
8e193f38
VZ
348// ----------------------------------------------------------------------------
349// wxEvent
350// ----------------------------------------------------------------------------
351
c801d85f 352/*
77ffb593 353 * General wxWidgets events, covering
c801d85f
KB
354 * all interesting things that might happen (button clicking, resizing,
355 * setting text in widgets, etc.).
356 *
357 * For each completely new event type, derive a new event class.
358 *
359 */
360
8e72b8b5 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;
1c624631 369 m_isCommandEvent = false;
1648d51b 370 m_propagationLevel = wxEVENT_PROPAGATE_NONE;
29de6f40 371 m_wasProcessed = false;
c801d85f
KB
372}
373
0e097789 374wxEvent::wxEvent(const wxEvent& src)
a34ef99b 375 : wxObject(src)
e6a6feba
GD
376 , m_eventObject(src.m_eventObject)
377 , m_eventType(src.m_eventType)
378 , m_timeStamp(src.m_timeStamp)
379 , m_id(src.m_id)
380 , m_callbackUserData(src.m_callbackUserData)
6fd5903a 381 , m_propagationLevel(src.m_propagationLevel)
e6a6feba
GD
382 , m_skipped(src.m_skipped)
383 , m_isCommandEvent(src.m_isCommandEvent)
29de6f40 384 , m_wasProcessed(false)
a737331d 385{
a737331d
GL
386}
387
0e097789
VZ
388wxEvent& wxEvent::operator=(const wxEvent& src)
389{
390 wxObject::operator=(src);
391
392 m_eventObject = src.m_eventObject;
393 m_eventType = src.m_eventType;
394 m_timeStamp = src.m_timeStamp;
395 m_id = src.m_id;
396 m_callbackUserData = src.m_callbackUserData;
397 m_propagationLevel = src.m_propagationLevel;
398 m_skipped = src.m_skipped;
399 m_isCommandEvent = src.m_isCommandEvent;
400
29de6f40
VZ
401 // don't change m_wasProcessed
402
0e097789
VZ
403 return *this;
404}
405
3ed2104c
VZ
406#endif // wxUSE_BASE
407
e90c1d2a
VZ
408#if wxUSE_GUI
409
c801d85f
KB
410/*
411 * Command events
412 *
413 */
414
21eefb76
VZ
415#ifdef __VISUALC__
416 // 'this' : used in base member initializer list (for m_commandString)
417 #pragma warning(disable:4355)
418#endif
419
7798a18e 420wxCommandEvent::wxCommandEvent(wxEventType commandType, int theId)
b5a98acd 421 : wxEvent(theId, commandType)
c801d85f 422{
3c778901
VZ
423 m_clientData = NULL;
424 m_clientObject = NULL;
0b746ba8
VZ
425 m_extraLong = 0;
426 m_commandInt = 0;
1c624631 427 m_isCommandEvent = true;
1648d51b
VZ
428
429 // the command events are propagated upwards by default
430 m_propagationLevel = wxEVENT_PROPAGATE_MAX;
c801d85f
KB
431}
432
21eefb76
VZ
433#ifdef __VISUALC__
434 #pragma warning(default:4355)
435#endif
436
ab1931f9
KH
437wxString wxCommandEvent::GetString() const
438{
cc6ceca7
VZ
439 if (m_eventType != wxEVT_COMMAND_TEXT_UPDATED || !m_eventObject)
440 {
ab1931f9 441 return m_cmdString;
cc6ceca7 442 }
ab1931f9
KH
443 else
444 {
89438177 445#if wxUSE_TEXTCTRL
ab1931f9 446 wxTextCtrl *txt = wxDynamicCast(m_eventObject, wxTextCtrl);
cc6ceca7 447 if ( txt )
ab1931f9
KH
448 return txt->GetValue();
449 else
89438177 450#endif // wxUSE_TEXTCTRL
ab1931f9
KH
451 return m_cmdString;
452 }
453}
454
0b30bb0b
JS
455/*
456 * UI update events
457 */
458
459#if wxUSE_LONGLONG
e39af974 460wxLongLong wxUpdateUIEvent::sm_lastUpdate = 0;
0b30bb0b
JS
461#endif
462
e39af974
JS
463long wxUpdateUIEvent::sm_updateInterval = 0;
464
465wxUpdateUIMode wxUpdateUIEvent::sm_updateMode = wxUPDATE_UI_PROCESS_ALL;
0b30bb0b
JS
466
467// Can we update?
a7bc03c9 468bool wxUpdateUIEvent::CanUpdate(wxWindowBase *win)
0b30bb0b 469{
e39af974
JS
470 // Don't update if we've switched global updating off
471 // and this window doesn't support updates.
472 if (win &&
473 (GetMode() == wxUPDATE_UI_PROCESS_SPECIFIED &&
474 ((win->GetExtraStyle() & wxWS_EX_PROCESS_UI_UPDATES) == 0)))
1c624631 475 return false;
b5a98acd 476
e39af974 477 if (sm_updateInterval == -1)
1c624631 478 return false;
534b127c
WS
479
480 if (sm_updateInterval == 0)
1c624631 481 return true;
534b127c 482
0b30bb0b 483#if wxUSE_STOPWATCH && wxUSE_LONGLONG
534b127c
WS
484 wxLongLong now = wxGetLocalTimeMillis();
485 if (now > (sm_lastUpdate + sm_updateInterval))
486 {
1c624631 487 return true;
0b30bb0b 488 }
534b127c 489
1c624631 490 return false;
534b127c
WS
491#else
492 // If we don't have wxStopWatch or wxLongLong, we
493 // should err on the safe side and update now anyway.
494 return true;
495#endif
0b30bb0b
JS
496}
497
498// Reset the update time to provide a delay until the next
499// time we should update
500void wxUpdateUIEvent::ResetUpdateTime()
501{
502#if wxUSE_STOPWATCH && wxUSE_LONGLONG
e39af974 503 if (sm_updateInterval > 0)
0b30bb0b
JS
504 {
505 wxLongLong now = wxGetLocalTimeMillis();
e39af974 506 if (now > (sm_lastUpdate + sm_updateInterval))
0b30bb0b 507 {
e39af974 508 sm_lastUpdate = now;
0b30bb0b
JS
509 }
510 }
511#endif
512}
513
c801d85f
KB
514/*
515 * Scroll events
516 */
517
0b746ba8
VZ
518wxScrollEvent::wxScrollEvent(wxEventType commandType,
519 int id,
520 int pos,
521 int orient)
e6a6feba 522 : wxCommandEvent(commandType, id)
c801d85f 523{
0b746ba8
VZ
524 m_extraLong = orient;
525 m_commandInt = pos;
c801d85f
KB
526}
527
d1367c3d
RR
528/*
529 * ScrollWin events
530 */
531
532wxScrollWinEvent::wxScrollWinEvent(wxEventType commandType,
533 int pos,
534 int orient)
d1367c3d 535{
c5b42c87 536 m_eventType = commandType;
d1367c3d
RR
537 m_extraLong = orient;
538 m_commandInt = pos;
539}
540
c801d85f
KB
541/*
542 * Mouse events
543 *
544 */
545
7798a18e 546wxMouseEvent::wxMouseEvent(wxEventType commandType)
c801d85f 547{
0b746ba8 548 m_eventType = commandType;
8866abbb
VZ
549
550 m_x = 0;
551 m_y = 0;
552
1c624631 553 m_leftDown = false;
1c624631 554 m_middleDown = false;
8866abbb 555 m_rightDown = false;
01101e2d
VZ
556 m_aux1Down = false;
557 m_aux2Down = false;
8866abbb 558
8866abbb
VZ
559 m_clickCount = -1;
560
d2c52078
RD
561 m_wheelRotation = 0;
562 m_wheelDelta = 0;
563 m_linesPerAction = 0;
aea37008 564 m_wheelAxis = 0;
c801d85f
KB
565}
566
abcbaea7
VZ
567void wxMouseEvent::Assign(const wxMouseEvent& event)
568{
0e097789 569 wxEvent::operator=(event);
3232da9d
VZ
570
571 // Borland C++ 5.82 doesn't compile an explicit call to an implicitly
572 // defined operator=() so need to do it this way:
573 *static_cast<wxMouseState *>(this) = event;
92309201 574
abcbaea7
VZ
575 m_x = event.m_x;
576 m_y = event.m_y;
577
578 m_leftDown = event.m_leftDown;
579 m_middleDown = event.m_middleDown;
580 m_rightDown = event.m_rightDown;
01101e2d
VZ
581 m_aux1Down = event.m_aux1Down;
582 m_aux2Down = event.m_aux2Down;
abcbaea7 583
abcbaea7
VZ
584 m_wheelRotation = event.m_wheelRotation;
585 m_wheelDelta = event.m_wheelDelta;
586 m_linesPerAction = event.m_linesPerAction;
aea37008 587 m_wheelAxis = event.m_wheelAxis;
abcbaea7
VZ
588}
589
3e89999c 590// return true if was a button dclick event
c801d85f
KB
591bool wxMouseEvent::ButtonDClick(int but) const
592{
0b746ba8
VZ
593 switch (but)
594 {
3e89999c
VZ
595 default:
596 wxFAIL_MSG(wxT("invalid parameter in wxMouseEvent::ButtonDClick"));
597 // fall through
598
599 case wxMOUSE_BTN_ANY:
01101e2d
VZ
600 return (LeftDClick() || MiddleDClick() || RightDClick() ||
601 Aux1DClick() || Aux2DClick());
3e89999c
VZ
602
603 case wxMOUSE_BTN_LEFT:
0b746ba8 604 return LeftDClick();
3e89999c
VZ
605
606 case wxMOUSE_BTN_MIDDLE:
0b746ba8 607 return MiddleDClick();
3e89999c
VZ
608
609 case wxMOUSE_BTN_RIGHT:
0b746ba8 610 return RightDClick();
01101e2d
VZ
611
612 case wxMOUSE_BTN_AUX1:
613 return Aux1DClick();
614
615 case wxMOUSE_BTN_AUX2:
616 return Aux2DClick();
0b746ba8 617 }
c801d85f
KB
618}
619
3e89999c 620// return true if was a button down event
c801d85f
KB
621bool wxMouseEvent::ButtonDown(int but) const
622{
0b746ba8
VZ
623 switch (but)
624 {
3e89999c
VZ
625 default:
626 wxFAIL_MSG(wxT("invalid parameter in wxMouseEvent::ButtonDown"));
627 // fall through
628
629 case wxMOUSE_BTN_ANY:
01101e2d
VZ
630 return (LeftDown() || MiddleDown() || RightDown() ||
631 Aux1Down() || Aux2Down());
3e89999c
VZ
632
633 case wxMOUSE_BTN_LEFT:
0b746ba8 634 return LeftDown();
3e89999c
VZ
635
636 case wxMOUSE_BTN_MIDDLE:
0b746ba8 637 return MiddleDown();
3e89999c
VZ
638
639 case wxMOUSE_BTN_RIGHT:
0b746ba8 640 return RightDown();
01101e2d
VZ
641
642 case wxMOUSE_BTN_AUX1:
643 return Aux1Down();
644
645 case wxMOUSE_BTN_AUX2:
646 return Aux2Down();
0b746ba8 647 }
c801d85f
KB
648}
649
3e89999c 650// return true if was a button up event
c801d85f
KB
651bool wxMouseEvent::ButtonUp(int but) const
652{
1e6feb95
VZ
653 switch (but)
654 {
3e89999c
VZ
655 default:
656 wxFAIL_MSG(wxT("invalid parameter in wxMouseEvent::ButtonUp"));
657 // fall through
658
659 case wxMOUSE_BTN_ANY:
01101e2d
VZ
660 return (LeftUp() || MiddleUp() || RightUp() ||
661 Aux1Up() || Aux2Up());
3e89999c
VZ
662
663 case wxMOUSE_BTN_LEFT:
0b746ba8 664 return LeftUp();
3e89999c
VZ
665
666 case wxMOUSE_BTN_MIDDLE:
0b746ba8 667 return MiddleUp();
3e89999c
VZ
668
669 case wxMOUSE_BTN_RIGHT:
0b746ba8 670 return RightUp();
01101e2d
VZ
671
672 case wxMOUSE_BTN_AUX1:
673 return Aux1Up();
674
675 case wxMOUSE_BTN_AUX2:
676 return Aux2Up();
0b746ba8 677 }
c801d85f
KB
678}
679
3e89999c 680// return true if the given button is currently changing state
c801d85f
KB
681bool wxMouseEvent::Button(int but) const
682{
1e6feb95
VZ
683 switch (but)
684 {
0b746ba8 685 default:
223d09f6 686 wxFAIL_MSG(wxT("invalid parameter in wxMouseEvent::Button"));
3e89999c
VZ
687 // fall through
688
689 case wxMOUSE_BTN_ANY:
690 return ButtonUp(wxMOUSE_BTN_ANY) ||
691 ButtonDown(wxMOUSE_BTN_ANY) ||
692 ButtonDClick(wxMOUSE_BTN_ANY);
693
694 case wxMOUSE_BTN_LEFT:
695 return LeftDown() || LeftUp() || LeftDClick();
696
697 case wxMOUSE_BTN_MIDDLE:
698 return MiddleDown() || MiddleUp() || MiddleDClick();
699
700 case wxMOUSE_BTN_RIGHT:
701 return RightDown() || RightUp() || RightDClick();
01101e2d
VZ
702
703 case wxMOUSE_BTN_AUX1:
704 return Aux1Down() || Aux1Up() || Aux1DClick();
705
706 case wxMOUSE_BTN_AUX2:
707 return Aux2Down() || Aux2Up() || Aux2DClick();
0b746ba8 708 }
c801d85f
KB
709}
710
711bool wxMouseEvent::ButtonIsDown(int but) const
712{
1e6feb95
VZ
713 switch (but)
714 {
3e89999c
VZ
715 default:
716 wxFAIL_MSG(wxT("invalid parameter in wxMouseEvent::ButtonIsDown"));
717 // fall through
718
719 case wxMOUSE_BTN_ANY:
01101e2d 720 return LeftIsDown() || MiddleIsDown() || RightIsDown() || Aux1Down() || Aux2Down();
3e89999c
VZ
721
722 case wxMOUSE_BTN_LEFT:
0b746ba8 723 return LeftIsDown();
3e89999c
VZ
724
725 case wxMOUSE_BTN_MIDDLE:
0b746ba8 726 return MiddleIsDown();
3e89999c
VZ
727
728 case wxMOUSE_BTN_RIGHT:
0b746ba8 729 return RightIsDown();
01101e2d
VZ
730
731 case wxMOUSE_BTN_AUX1:
732 return Aux1IsDown();
733
734 case wxMOUSE_BTN_AUX2:
735 return Aux2IsDown();
0b746ba8 736 }
c801d85f
KB
737}
738
1e6feb95
VZ
739int wxMouseEvent::GetButton() const
740{
01101e2d 741 for ( int i = 1; i < wxMOUSE_BTN_MAX; i++ )
1e6feb95
VZ
742 {
743 if ( Button(i) )
744 {
745 return i;
746 }
747 }
748
3e89999c 749 return wxMOUSE_BTN_NONE;
1e6feb95
VZ
750}
751
c801d85f
KB
752// Find the logical position of the event given the DC
753wxPoint wxMouseEvent::GetLogicalPosition(const wxDC& dc) const
754{
0757d27c
JS
755 wxPoint pt(dc.DeviceToLogicalX(m_x), dc.DeviceToLogicalY(m_y));
756 return pt;
c801d85f
KB
757}
758
759
760/*
8e72b8b5 761 * Keyboard event
c801d85f
KB
762 *
763 */
764
7798a18e 765wxKeyEvent::wxKeyEvent(wxEventType type)
c801d85f 766{
0b746ba8 767 m_eventType = type;
0b746ba8 768 m_keyCode = 0;
b0e813a0 769 m_scanCode = 0;
2b5f62a0
VZ
770#if wxUSE_UNICODE
771 m_uniChar = 0;
772#endif
c801d85f
KB
773}
774
92309201 775wxKeyEvent::wxKeyEvent(const wxKeyEvent& evt)
0e097789
VZ
776 : wxEvent(evt),
777 wxKeyboardState(evt)
2b5f62a0
VZ
778{
779 m_x = evt.m_x;
780 m_y = evt.m_y;
781
782 m_keyCode = evt.m_keyCode;
783
2b5f62a0
VZ
784 m_scanCode = evt.m_scanCode;
785 m_rawCode = evt.m_rawCode;
786 m_rawFlags = evt.m_rawFlags;
92309201 787
2b5f62a0
VZ
788#if wxUSE_UNICODE
789 m_uniChar = evt.m_uniChar;
790#endif
791}
12a3f227 792
42e69d6b 793wxWindowCreateEvent::wxWindowCreateEvent(wxWindow *win)
42e69d6b 794{
cfe17b74 795 SetEventType(wxEVT_CREATE);
42e69d6b
VZ
796 SetEventObject(win);
797}
798
799wxWindowDestroyEvent::wxWindowDestroyEvent(wxWindow *win)
42e69d6b 800{
cfe17b74 801 SetEventType(wxEVT_DESTROY);
42e69d6b
VZ
802 SetEventObject(win);
803}
804
456bc6d9
VZ
805wxChildFocusEvent::wxChildFocusEvent(wxWindow *win)
806 : wxCommandEvent(wxEVT_CHILD_FOCUS)
807{
808 SetEventObject(win);
809}
810
b107e8d5
VZ
811// ----------------------------------------------------------------------------
812// wxHelpEvent
813// ----------------------------------------------------------------------------
814
815/* static */
816wxHelpEvent::Origin wxHelpEvent::GuessOrigin(Origin origin)
817{
818 if ( origin == Origin_Unknown )
819 {
820 // assume that the event comes from the help button if it's not from
821 // keyboard and that pressing F1 always results in the help event
822 origin = wxGetKeyState(WXK_F1) ? Origin_Keyboard : Origin_HelpButton;
823 }
824
825 return origin;
826}
827
dd070522
VZ
828#endif // wxUSE_GUI
829
9416681d
VS
830
831#if wxUSE_BASE
832
b5a98acd
VZ
833// ----------------------------------------------------------------------------
834// wxEventHashTable
835// ----------------------------------------------------------------------------
836
afa039f9
JS
837static const int EVENT_TYPE_TABLE_INIT_SIZE = 31; // Not too big not too small...
838
839wxEventHashTable* wxEventHashTable::sm_first = NULL;
b5a98acd
VZ
840
841wxEventHashTable::wxEventHashTable(const wxEventTable &table)
842 : m_table(table),
1c624631 843 m_rebuildHash(true)
b5a98acd
VZ
844{
845 AllocEventTypeTable(EVENT_TYPE_TABLE_INIT_SIZE);
1a18887b 846
afa039f9
JS
847 m_next = sm_first;
848 if (m_next)
849 m_next->m_previous = this;
850 sm_first = this;
b5a98acd
VZ
851}
852
853wxEventHashTable::~wxEventHashTable()
afa039f9
JS
854{
855 if (m_next)
856 m_next->m_previous = m_previous;
857 if (m_previous)
858 m_previous->m_next = m_next;
859 if (sm_first == this)
860 sm_first = m_next;
1a18887b 861
afa039f9
JS
862 Clear();
863}
864
865void wxEventHashTable::Clear()
b5a98acd 866{
a0826b11 867 for ( size_t i = 0; i < m_size; i++ )
b5a98acd
VZ
868 {
869 EventTypeTablePointer eTTnode = m_eventTypeTable[i];
a0826b11 870 delete eTTnode;
b5a98acd
VZ
871 }
872
a0826b11 873 delete[] m_eventTypeTable;
afa039f9 874 m_eventTypeTable = NULL;
a0826b11 875
afa039f9
JS
876 m_size = 0;
877}
878
aa767a45 879#if defined(__WXDEBUG__) && wxUSE_MEMORY_TRACING
a0826b11 880
afa039f9
JS
881// Clear all tables
882void wxEventHashTable::ClearAll()
883{
884 wxEventHashTable* table = sm_first;
885 while (table)
886 {
887 table->Clear();
888 table = table->m_next;
889 }
b5a98acd
VZ
890}
891
a0826b11
VZ
892#endif // __WXDEBUG__ && wxUSE_MEMORY_TRACING
893
b5a98acd
VZ
894bool wxEventHashTable::HandleEvent(wxEvent &event, wxEvtHandler *self)
895{
896 if (m_rebuildHash)
897 {
898 InitHashTable();
1c624631 899 m_rebuildHash = false;
b5a98acd 900 }
1a18887b 901
afa039f9 902 if (!m_eventTypeTable)
1a18887b 903 return false;
b5a98acd
VZ
904
905 // Find all entries for the given event type.
906 wxEventType eventType = event.GetEventType();
907 const EventTypeTablePointer eTTnode = m_eventTypeTable[eventType % m_size];
908 if (eTTnode && eTTnode->eventType == eventType)
909 {
910 // Now start the search for an event handler
911 // that can handle an event with the given ID.
1c624631
VZ
912 const wxEventTableEntryPointerArray&
913 eventEntryTable = eTTnode->eventEntryTable;
b5a98acd 914
1c624631
VZ
915 const size_t count = eventEntryTable.GetCount();
916 for (size_t n = 0; n < count; n++)
b5a98acd 917 {
03f3617b
VZ
918 const wxEventTableEntry& entry = *eventEntryTable[n];
919 if ( wxEvtHandler::ProcessEventIfMatchesId(entry, self, event) )
1c624631 920 return true;
b5a98acd 921 }
b5a98acd
VZ
922 }
923
1c624631 924 return false;
b5a98acd
VZ
925}
926
927void wxEventHashTable::InitHashTable()
928{
929 // Loop over the event tables and all its base tables.
930 const wxEventTable *table = &m_table;
931 while (table)
932 {
933 // Retrieve all valid event handler entries
934 const wxEventTableEntry *entry = table->entries;
935 while (entry->m_fn != 0)
936 {
937 // Add the event entry in the Hash.
938 AddEntry(*entry);
939
940 entry++;
941 }
942
943 table = table->baseTable;
944 }
945
946 // Lets free some memory.
947 size_t i;
948 for(i = 0; i < m_size; i++)
949 {
950 EventTypeTablePointer eTTnode = m_eventTypeTable[i];
951 if (eTTnode)
952 {
953 eTTnode->eventEntryTable.Shrink();
954 }
955 }
956}
957
958void wxEventHashTable::AddEntry(const wxEventTableEntry &entry)
959{
afa039f9
JS
960 // This might happen 'accidentally' as the app is exiting
961 if (!m_eventTypeTable)
962 return;
1a18887b 963
b5a98acd
VZ
964 EventTypeTablePointer *peTTnode = &m_eventTypeTable[entry.m_eventType % m_size];
965 EventTypeTablePointer eTTnode = *peTTnode;
966
967 if (eTTnode)
968 {
969 if (eTTnode->eventType != entry.m_eventType)
970 {
971 // Resize the table!
972 GrowEventTypeTable();
973 // Try again to add it.
974 AddEntry(entry);
975 return;
976 }
977 }
978 else
979 {
980 eTTnode = new EventTypeTable;
981 eTTnode->eventType = entry.m_eventType;
982 *peTTnode = eTTnode;
983 }
984
985 // Fill all hash entries between entry.m_id and entry.m_lastId...
986 eTTnode->eventEntryTable.Add(&entry);
987}
988
989void wxEventHashTable::AllocEventTypeTable(size_t size)
990{
991 m_eventTypeTable = new EventTypeTablePointer[size];
992 memset((void *)m_eventTypeTable, 0, sizeof(EventTypeTablePointer)*size);
993 m_size = size;
994}
995
996void wxEventHashTable::GrowEventTypeTable()
997{
998 size_t oldSize = m_size;
999 EventTypeTablePointer *oldEventTypeTable = m_eventTypeTable;
1000
1001 // TODO: Search the most optimal grow sequence
1002 AllocEventTypeTable(/* GetNextPrime(oldSize) */oldSize*2+1);
1003
1004 for ( size_t i = 0; i < oldSize; /* */ )
1005 {
1006 EventTypeTablePointer eTToldNode = oldEventTypeTable[i];
1007 if (eTToldNode)
1008 {
1009 EventTypeTablePointer *peTTnode = &m_eventTypeTable[eTToldNode->eventType % m_size];
1010 EventTypeTablePointer eTTnode = *peTTnode;
1011
1012 // Check for collision, we don't want any.
1013 if (eTTnode)
1014 {
1015 GrowEventTypeTable();
1016 continue; // Don't increment the counter,
1017 // as we still need to add this element.
1018 }
1019 else
1020 {
1021 // Get the old value and put it in the new table.
1022 *peTTnode = oldEventTypeTable[i];
1023 }
1024 }
1025
1026 i++;
1027 }
1028
1029 delete[] oldEventTypeTable;
1030}
1031
456bc6d9
VZ
1032// ----------------------------------------------------------------------------
1033// wxEvtHandler
1034// ----------------------------------------------------------------------------
1035
c801d85f
KB
1036/*
1037 * Event handler
1038 */
1039
0b746ba8 1040wxEvtHandler::wxEvtHandler()
c801d85f 1041{
3c778901
VZ
1042 m_nextHandler = NULL;
1043 m_previousHandler = NULL;
1c624631 1044 m_enabled = true;
3c778901
VZ
1045 m_dynamicEvents = NULL;
1046 m_pendingEvents = NULL;
aa767a45 1047
b88c44e7
RD
1048 // no client data (yet)
1049 m_clientData = NULL;
1050 m_clientDataType = wxClientData_None;
c801d85f
KB
1051}
1052
0b746ba8 1053wxEvtHandler::~wxEvtHandler()
c801d85f 1054{
7f853dd0 1055 Unlink();
0b746ba8
VZ
1056
1057 if (m_dynamicEvents)
fe71f65c 1058 {
3c448b2e
VZ
1059 for ( wxList::iterator it = m_dynamicEvents->begin(),
1060 end = m_dynamicEvents->end();
1061 it != end;
1062 ++it )
0b746ba8 1063 {
df5168c4 1064 wxDynamicEventTableEntry *entry = (wxDynamicEventTableEntry*)*it;
2e4df4bf 1065
cc6ceca7 1066 // Remove ourselves from sink destructor notifications
3c778901
VZ
1067 // (this has usually been done, in wxTrackable destructor)
1068 wxEvtHandler *eventSink = entry->m_fn->GetHandler();
cc6ceca7 1069 if ( eventSink )
2ef989c9 1070 {
cc6ceca7
VZ
1071 wxEventConnectionRef * const
1072 evtConnRef = FindRefInTrackerList(eventSink);
1073 if ( evtConnRef )
1074 {
1075 eventSink->RemoveNode(evtConnRef);
1076 delete evtConnRef;
1077 }
2ef989c9 1078 }
cc6ceca7 1079
3c778901 1080 delete entry->m_callbackUserData;
0b746ba8 1081 delete entry;
0b746ba8
VZ
1082 }
1083 delete m_dynamicEvents;
1084 };
7214297d 1085
5875d39c
VZ
1086 if (m_pendingEvents)
1087 m_pendingEvents->DeleteContents(true);
7ce2fb71 1088 delete m_pendingEvents;
7214297d 1089
079f4130
FM
1090 // Remove us from wxHandlersWithPendingEvents if necessary.
1091 if ( wxHandlersWithPendingEvents )
5d9d1b88 1092 {
364ab6cc 1093#if wxUSE_THREADS
079f4130
FM
1094 if (wxHandlersWithPendingEventsLocker)
1095 wxENTER_CRIT_SECT(*wxHandlersWithPendingEventsLocker);
364ab6cc 1096#endif
19c4d916 1097
079f4130 1098 if ( wxHandlersWithPendingEvents->DeleteObject(this) )
19c4d916
VZ
1099 {
1100 // check that we were present only once in the list
079f4130
FM
1101 wxASSERT_MSG( !wxHandlersWithPendingEvents->Find(this),
1102 "Handler occurs twice in wxHandlersWithPendingEvents list" );
19c4d916
VZ
1103 }
1104 //else: we weren't in this list at all, it's ok
1105
364ab6cc 1106#if wxUSE_THREADS
079f4130
FM
1107 if (wxHandlersWithPendingEventsLocker)
1108 wxLEAVE_CRIT_SECT(*wxHandlersWithPendingEventsLocker);
364ab6cc 1109#endif
083f7497 1110 }
b88c44e7
RD
1111
1112 // we only delete object data, not untyped
1113 if ( m_clientDataType == wxClientData_Object )
1114 delete m_clientObject;
c801d85f
KB
1115}
1116
7f853dd0
FM
1117void wxEvtHandler::Unlink()
1118{
1119 // this event handler must take itself out of the chain of handlers:
1120
1121 if (m_previousHandler)
1122 m_previousHandler->SetNextHandler(m_nextHandler);
1123
1124 if (m_nextHandler)
1125 m_nextHandler->SetPreviousHandler(m_previousHandler);
1126
1127 m_nextHandler = NULL;
1128 m_previousHandler = NULL;
1129}
1130
1131bool wxEvtHandler::IsUnlinked() const
1132{
1133 return m_previousHandler == NULL &&
1134 m_nextHandler == NULL;
1135}
1136
7214297d 1137#if wxUSE_THREADS
aadbdf11 1138
76bfdc9a 1139bool wxEvtHandler::ProcessThreadEvent(const wxEvent& event)
7214297d 1140{
7214297d 1141 // check that we are really in a child thread
8e193f38
VZ
1142 wxASSERT_MSG( !wxThread::IsMain(),
1143 wxT("use ProcessEvent() in main thread") );
1144
1145 AddPendingEvent(event);
7214297d 1146
1c624631 1147 return true;
8e193f38
VZ
1148}
1149
1150#endif // wxUSE_THREADS
1151
c3f94162 1152void wxEvtHandler::QueueEvent(wxEvent *event)
8e193f38 1153{
c3f94162 1154 wxCHECK_RET( event, "NULL event can't be posted" );
7a5c8ac4 1155
c3f94162 1156 // 1) Add this event to our list of pending events
8ebec7dc 1157 wxENTER_CRIT_SECT( m_pendingEventsLock );
16c1f79c 1158
8e193f38
VZ
1159 if ( !m_pendingEvents )
1160 m_pendingEvents = new wxList;
7214297d 1161
c3f94162 1162 m_pendingEvents->Append(event);
7214297d 1163
16c1f79c
RR
1164 // 2) Add this event handler to list of event handlers that
1165 // have pending events.
cfe17b74 1166
079f4130 1167 wxENTER_CRIT_SECT(*wxHandlersWithPendingEventsLocker);
72cdf4c9 1168
079f4130
FM
1169 if ( !wxHandlersWithPendingEvents )
1170 wxHandlersWithPendingEvents = new wxList;
1171 if ( !wxHandlersWithPendingEvents->Find(this) )
1172 wxHandlersWithPendingEvents->Append(this);
72cdf4c9 1173
079f4130 1174 wxLEAVE_CRIT_SECT(*wxHandlersWithPendingEventsLocker);
6164f93c 1175
a715b990
VZ
1176 // only release m_pendingEventsLock now because otherwise there is a race
1177 // condition as described in the ticket #9093: we could process the event
1178 // just added to m_pendingEvents in our ProcessPendingEvents() below before
079f4130 1179 // we had time to append this pointer to wxHandlersWithPendingEvents list; thus
a715b990
VZ
1180 // breaking the invariant that a handler should be in the list iff it has
1181 // any pending events to process
1182 wxLEAVE_CRIT_SECT( m_pendingEventsLock );
1183
90e572f1 1184 // 3) Inform the system that new pending events are somewhere,
16c1f79c 1185 // and that these should be processed in idle time.
bf9e3e73 1186 wxWakeUpIdle();
7214297d
GL
1187}
1188
1189void wxEvtHandler::ProcessPendingEvents()
1190{
8ebec7dc 1191 wxENTER_CRIT_SECT( m_pendingEventsLock );
8e193f38 1192
7ce2fb71
VZ
1193 // this method is only called by wxApp if this handler does have
1194 // pending events
1195 wxCHECK_RET( m_pendingEvents && !m_pendingEvents->IsEmpty(),
1196 "should have pending events if called" );
5fa150e2 1197
19c4d916 1198 wxList::compatibility_iterator node = m_pendingEvents->GetFirst();
5c33522f 1199 wxEventPtr event(static_cast<wxEvent *>(node->GetData()));
5875d39c 1200
19c4d916
VZ
1201 // it's important we remove event from list before processing it, else a
1202 // nested event loop, for example from a modal dialog, might process the
1203 // same event again.
1204 m_pendingEvents->Erase(node);
7b0d5c59 1205
19c4d916
VZ
1206 // if there are no more pending events left, we don't need to stay in this
1207 // list
1208 if ( m_pendingEvents->IsEmpty() )
1512f0f7
VZ
1209 {
1210#if wxUSE_THREADS
079f4130
FM
1211 if (wxHandlersWithPendingEventsLocker)
1212 wxENTER_CRIT_SECT(*wxHandlersWithPendingEventsLocker);
1512f0f7 1213#endif
079f4130 1214 wxHandlersWithPendingEvents->DeleteObject(this);
1512f0f7 1215#if wxUSE_THREADS
079f4130
FM
1216 if (wxHandlersWithPendingEventsLocker)
1217 wxLEAVE_CRIT_SECT(*wxHandlersWithPendingEventsLocker);
1512f0f7
VZ
1218#endif
1219 }
5fa150e2 1220
8ebec7dc 1221 wxLEAVE_CRIT_SECT( m_pendingEventsLock );
7b0d5c59 1222
19c4d916 1223 ProcessEvent(*event);
cfe17b74 1224
19c4d916
VZ
1225 // careful: this object could have been deleted by the event handler
1226 // executed by the above ProcessEvent() call, so we can't access any fields
1227 // of this object any more
7214297d 1228}
7214297d 1229
c801d85f
KB
1230/*
1231 * Event table stuff
1232 */
1c624631 1233/* static */ bool
03f3617b
VZ
1234wxEvtHandler::ProcessEventIfMatchesId(const wxEventTableEntryBase& entry,
1235 wxEvtHandler *handler,
1236 wxEvent& event)
1c624631
VZ
1237{
1238 int tableId1 = entry.m_id,
1239 tableId2 = entry.m_lastId;
1240
1241 // match only if the event type is the same and the id is either -1 in
1242 // the event table (meaning "any") or the event id matches the id
1243 // specified in the event table either exactly or by falling into
1244 // range between first and last
1a18887b
WS
1245 if ((tableId1 == wxID_ANY) ||
1246 (tableId2 == wxID_ANY && tableId1 == event.GetId()) ||
1247 (tableId2 != wxID_ANY &&
1c624631
VZ
1248 (event.GetId() >= tableId1 && event.GetId() <= tableId2)))
1249 {
1250 event.Skip(false);
1251 event.m_callbackUserData = entry.m_callbackUserData;
1252
1253#if wxUSE_EXCEPTIONS
1254 if ( wxTheApp )
1255 {
1256 // call the handler via wxApp method which allows the user to catch
1257 // any exceptions which may be thrown by any handler in the program
1258 // in one place
3c778901 1259 wxTheApp->CallEventHandler(handler, *entry.m_fn, event);
1c624631
VZ
1260 }
1261 else
8bd2a804 1262#endif // wxUSE_EXCEPTIONS
1c624631 1263 {
3c778901 1264 (*entry.m_fn)(handler, event);
1c624631 1265 }
1c624631
VZ
1266
1267 if (!event.GetSkipped())
1268 return true;
1269 }
1270
1271 return false;
1272}
c801d85f 1273
4caf847c 1274bool wxEvtHandler::TryParent(wxEvent& event)
c801d85f 1275{
358e9f2f
VZ
1276 if ( GetNextHandler() )
1277 {
1278 // the next handler will pass it to wxTheApp if it doesn't process it,
1279 // so return from here to avoid doing it again
1280 return GetNextHandler()->TryParent(event);
1281 }
1282
4caf847c 1283 if ( wxTheApp && (this != wxTheApp) )
9154d8cf 1284 {
4caf847c
VZ
1285 // Special case: don't pass wxEVT_IDLE to wxApp, since it'll always
1286 // swallow it. wxEVT_IDLE is sent explicitly to wxApp so it will be
1287 // processed appropriately via SearchEventTable.
1288 if ( event.GetEventType() != wxEVT_IDLE )
1289 {
1290 if ( wxTheApp->ProcessEvent(event) )
1c624631 1291 return true;
4caf847c 1292 }
9154d8cf
VZ
1293 }
1294
1c624631 1295 return false;
4caf847c 1296}
0b746ba8 1297
4caf847c
VZ
1298bool wxEvtHandler::ProcessEvent(wxEvent& event)
1299{
9154d8cf 1300 // allow the application to hook into event processing
29de6f40
VZ
1301 //
1302 // note that we should only do it if we're the first event handler called
1303 // to avoid calling FilterEvent() multiple times as the event goes through
1304 // the event handler chain and possibly upwards the window hierarchy
1305 if ( !event.WasProcessed() )
9154d8cf 1306 {
29de6f40 1307 if ( wxTheApp )
9154d8cf 1308 {
29de6f40
VZ
1309 int rc = wxTheApp->FilterEvent(event);
1310 if ( rc != -1 )
1311 {
1312 wxASSERT_MSG( rc == 1 || rc == 0,
1313 "unexpected wxApp::FilterEvent return value" );
9154d8cf 1314
29de6f40
VZ
1315 return rc != 0;
1316 }
1317 //else: proceed normally
9154d8cf 1318 }
9154d8cf
VZ
1319 }
1320
25250d33
VZ
1321 if ( ProcessEventHere(event) )
1322 return true;
1323
29de6f40
VZ
1324 // pass the event to the next handler, notice that we shouldn't call
1325 // TryParent() even if it doesn't handle the event as the last handler in
1326 // the chain will do it
1327 if ( GetNextHandler() )
1328 return GetNextHandler()->ProcessEvent(event);
1329
25250d33 1330 // propagate the event upwards the window chain and/or to the application
c9c1faa4 1331 // object if it wasn't processed at this level
25250d33
VZ
1332 return TryParent(event);
1333}
1334
1335bool wxEvtHandler::ProcessEventHere(wxEvent& event)
1336{
29de6f40
VZ
1337 // If the event handler is disabled it doesn't process any events
1338 if ( !GetEvtHandlerEnabled() )
1339 return false;
4caf847c 1340
29de6f40
VZ
1341 // If we have a validator, it has higher priority than our own event
1342 // handlers
1343 if ( TryValidator(event) )
1344 return true;
0b746ba8 1345
29de6f40
VZ
1346 // Handle per-instance dynamic event tables first
1347 if ( m_dynamicEvents && SearchDynamicEventTable(event) )
1348 return true;
c801d85f 1349
29de6f40
VZ
1350 // Then static per-class event tables
1351 if ( GetEventHashTable().HandleEvent(event, this) )
25250d33 1352 return true;
c801d85f 1353
25250d33
VZ
1354 // We don't have a handler for this event.
1355 return false;
c801d85f
KB
1356}
1357
937013e0
VS
1358bool wxEvtHandler::SafelyProcessEvent(wxEvent& event)
1359{
1360#if wxUSE_EXCEPTIONS
1361 try
1362 {
1363#endif
1364 return ProcessEvent(event);
1365#if wxUSE_EXCEPTIONS
1366 }
1367 catch ( ... )
1368 {
1369 wxEventLoopBase *loop = wxEventLoopBase::GetActive();
1370 try
1371 {
1372 if ( !wxTheApp || !wxTheApp->OnExceptionInMainLoop() )
1373 {
1374 if ( loop )
1375 loop->Exit();
1376 }
1377 //else: continue running current event loop
1378
1379 return false;
1380 }
1381 catch ( ... )
1382 {
1383 // OnExceptionInMainLoop() threw, possibly rethrowing the same
1384 // exception again: very good, but we still need Exit() to
1385 // be called
1386 if ( loop )
1387 loop->Exit();
1388 throw;
1389 }
1390 }
1391#endif // wxUSE_EXCEPTIONS
1392}
1393
b5a98acd 1394
c801d85f
KB
1395bool wxEvtHandler::SearchEventTable(wxEventTable& table, wxEvent& event)
1396{
1c624631 1397 const wxEventType eventType = event.GetEventType();
68662769 1398 for ( int i = 0; table.entries[i].m_fn != 0; i++ )
c801d85f 1399 {
68662769 1400 const wxEventTableEntry& entry = table.entries[i];
68662769 1401 if ( eventType == entry.m_eventType )
0b746ba8 1402 {
03f3617b 1403 if ( ProcessEventIfMatchesId(entry, this, event) )
1c624631 1404 return true;
0b746ba8 1405 }
c801d85f 1406 }
68662769 1407
1c624631 1408 return false;
c801d85f 1409}
97d7bfb8 1410
3c778901 1411void wxEvtHandler::Subscribe( int id, int lastId,
c9c1faa4 1412 wxEventType eventType,
3c778901
VZ
1413 wxEventFunctor *func,
1414 wxObject *userData )
fe71f65c 1415{
0b5eceb6 1416 wxDynamicEventTableEntry *entry =
3c778901 1417 new wxDynamicEventTableEntry(eventType, id, lastId, func, userData);
0b746ba8
VZ
1418
1419 if (!m_dynamicEvents)
1420 m_dynamicEvents = new wxList;
1421
92309201
RD
1422 // Insert at the front of the list so most recent additions are found first
1423 m_dynamicEvents->Insert( (wxObject*) entry );
cc6ceca7
VZ
1424
1425 // Make sure we get to know when a sink is destroyed
3c778901 1426 wxEvtHandler *eventSink = func->GetHandler();
886274c6 1427 if ( eventSink && eventSink != this )
2ef989c9 1428 {
cc6ceca7
VZ
1429 wxEventConnectionRef *evtConnRef = FindRefInTrackerList(eventSink);
1430 if ( evtConnRef )
1431 evtConnRef->IncRef( );
2ef989c9 1432 else
e822d1bd 1433 new wxEventConnectionRef(this, eventSink);
2ef989c9 1434 }
fe71f65c 1435}
97d7bfb8 1436
3c778901
VZ
1437bool
1438wxEvtHandler::Unsubscribe(int id,
1439 int lastId,
1440 wxEventType eventType,
1441 const wxEventFunctor& func,
1442 wxObject *userData)
97d7bfb8
RR
1443{
1444 if (!m_dynamicEvents)
1c624631 1445 return false;
cfe17b74 1446
2ef989c9 1447 // Remove connection from tracker node (wxEventConnectionRef)
3c778901 1448 wxEvtHandler *eventSink = func.GetHandler();
886274c6 1449 if ( eventSink && eventSink != this )
2ef989c9 1450 {
cc6ceca7
VZ
1451 wxEventConnectionRef *evtConnRef = FindRefInTrackerList(eventSink);
1452 if ( evtConnRef )
1453 evtConnRef->DecRef();
2ef989c9
RR
1454 }
1455
df5168c4 1456 wxList::compatibility_iterator node = m_dynamicEvents->GetFirst();
97d7bfb8
RR
1457 while (node)
1458 {
ad684023 1459 wxDynamicEventTableEntry *entry = (wxDynamicEventTableEntry*)node->GetData();
2e4df4bf 1460
97d7bfb8 1461 if ((entry->m_id == id) &&
1a18887b 1462 ((entry->m_lastId == lastId) || (lastId == wxID_ANY)) &&
97d7bfb8 1463 ((entry->m_eventType == eventType) || (eventType == wxEVT_NULL)) &&
03f3617b 1464 entry->m_fn->Matches(func) &&
3c778901 1465 ((entry->m_callbackUserData == userData) || !userData))
97d7bfb8 1466 {
3c778901 1467 delete entry->m_callbackUserData;
df5168c4 1468 m_dynamicEvents->Erase( node );
97d7bfb8 1469 delete entry;
1c624631 1470 return true;
97d7bfb8 1471 }
b1d4dd7a 1472 node = node->GetNext();
97d7bfb8 1473 }
1c624631 1474 return false;
97d7bfb8 1475}
fe71f65c
RR
1476
1477bool wxEvtHandler::SearchDynamicEventTable( wxEvent& event )
1478{
1c624631 1479 wxCHECK_MSG( m_dynamicEvents, false,
223d09f6 1480 wxT("caller should check that we have dynamic events") );
0b746ba8 1481
df5168c4 1482 wxList::compatibility_iterator node = m_dynamicEvents->GetFirst();
0b746ba8 1483 while (node)
fe71f65c 1484 {
1c624631 1485 wxDynamicEventTableEntry *entry = (wxDynamicEventTableEntry*)node->GetData();
0b746ba8 1486
7fce89b9
VZ
1487 // get next node before (maybe) calling the event handler as it could
1488 // call Disconnect() invalidating the current node
1489 node = node->GetNext();
1490
03f3617b 1491 if ( event.GetEventType() == entry->m_eventType )
0b746ba8 1492 {
03f3617b
VZ
1493 wxEvtHandler *handler = entry->m_fn->GetHandler();
1494 if ( !handler )
1495 handler = this;
1496 if ( ProcessEventIfMatchesId(*entry, handler, event) )
1c624631 1497 return true;
0b746ba8 1498 }
7b678698 1499 }
1c624631
VZ
1500
1501 return false;
4115960d 1502}
fe71f65c 1503
b88c44e7
RD
1504void wxEvtHandler::DoSetClientObject( wxClientData *data )
1505{
1506 wxASSERT_MSG( m_clientDataType != wxClientData_Void,
1507 wxT("can't have both object and void client data") );
1508
1509 if ( m_clientObject )
1510 delete m_clientObject;
1511
1512 m_clientObject = data;
1513 m_clientDataType = wxClientData_Object;
1514}
1515
1516wxClientData *wxEvtHandler::DoGetClientObject() const
1517{
1518 // it's not an error to call GetClientObject() on a window which doesn't
1519 // have client data at all - NULL will be returned
1520 wxASSERT_MSG( m_clientDataType != wxClientData_Void,
1521 wxT("this window doesn't have object client data") );
1522
1523 return m_clientObject;
1524}
1525
1526void wxEvtHandler::DoSetClientData( void *data )
1527{
1528 wxASSERT_MSG( m_clientDataType != wxClientData_Object,
1529 wxT("can't have both object and void client data") );
1530
1531 m_clientData = data;
1532 m_clientDataType = wxClientData_Void;
1533}
1534
1535void *wxEvtHandler::DoGetClientData() const
1536{
1537 // it's not an error to call GetClientData() on a window which doesn't have
1538 // client data at all - NULL will be returned
1539 wxASSERT_MSG( m_clientDataType != wxClientData_Object,
1540 wxT("this window doesn't have void client data") );
1541
1542 return m_clientData;
1543}
1544
cc6ceca7
VZ
1545// A helper to find an wxEventConnectionRef object
1546wxEventConnectionRef *
1547wxEvtHandler::FindRefInTrackerList(wxEvtHandler *eventSink)
2ef989c9 1548{
cc6ceca7 1549 for ( wxTrackerNode *node = eventSink->GetFirst(); node; node = node->m_nxt )
2ef989c9 1550 {
cc6ceca7
VZ
1551 // we only want wxEventConnectionRef nodes here
1552 wxEventConnectionRef *evtConnRef = node->ToEventConnection();
1553 if ( evtConnRef && evtConnRef->m_src == this )
2ef989c9 1554 {
cc6ceca7
VZ
1555 wxASSERT( evtConnRef->m_sink==eventSink );
1556 return evtConnRef;
2ef989c9
RR
1557 }
1558 }
cc6ceca7 1559
2ef989c9
RR
1560 return NULL;
1561}
1562
1563void wxEvtHandler::OnSinkDestroyed( wxEvtHandler *sink )
1564{
1565 wxASSERT(m_dynamicEvents);
cc6ceca7 1566
2ef989c9
RR
1567 // remove all connections with this sink
1568 wxList::compatibility_iterator node = m_dynamicEvents->GetFirst(), node_nxt;
1569 while (node)
1570 {
1571 wxDynamicEventTableEntry *entry = (wxDynamicEventTableEntry*)node->GetData();
1572 node_nxt = node->GetNext();
cc6ceca7 1573
3c778901 1574 if ( entry->m_fn->GetHandler() == sink )
2ef989c9 1575 {
3c778901 1576 delete entry->m_callbackUserData;
2ef989c9
RR
1577 m_dynamicEvents->Erase( node );
1578 delete entry;
1579 }
1580 node = node_nxt;
1581 }
1582}
1583
4caf847c
VZ
1584#endif // wxUSE_BASE
1585
e90c1d2a
VZ
1586#if wxUSE_GUI
1587
e702ff0f
JS
1588// Find a window with the focus, that is also a descendant of the given window.
1589// This is used to determine the window to initially send commands to.
1590wxWindow* wxFindFocusDescendant(wxWindow* ancestor)
1591{
1592 // Process events starting with the window with the focus, if any.
1593 wxWindow* focusWin = wxWindow::FindFocus();
1594 wxWindow* win = focusWin;
1595
1596 // Check if this is a descendant of this frame.
1597 // If not, win will be set to NULL.
1598 while (win)
1599 {
1600 if (win == ancestor)
1601 break;
1602 else
1603 win = win->GetParent();
1604 }
3c778901
VZ
1605 if (win == NULL)
1606 focusWin = NULL;
e702ff0f
JS
1607
1608 return focusWin;
1609}
1610
c4fa5aa7
VZ
1611// ----------------------------------------------------------------------------
1612// wxEventBlocker
1613// ----------------------------------------------------------------------------
1614
1615wxEventBlocker::wxEventBlocker(wxWindow *win, wxEventType type)
1616{
1617 wxCHECK_RET(win, wxT("Null window given to wxEventBlocker"));
1618
1619 m_window = win;
1620
1621 Block(type);
1622 m_window->PushEventHandler(this);
1623}
1624
1625wxEventBlocker::~wxEventBlocker()
1626{
1627 wxEvtHandler *popped = m_window->PopEventHandler(false);
aa767a45 1628 wxCHECK_RET(popped == this,
c4fa5aa7
VZ
1629 wxT("Don't push other event handlers into a window managed by wxEventBlocker!"));
1630}
1631
1632bool wxEventBlocker::ProcessEvent(wxEvent& event)
1633{
1634 // should this event be blocked?
1635 for ( size_t i = 0; i < m_eventsToBlock.size(); i++ )
1636 {
1637 wxEventType t = (wxEventType)m_eventsToBlock[i];
1638 if ( t == wxEVT_ANY || t == event.GetEventType() )
1639 return true; // yes, it should: mark this event as processed
1640 }
1641
1642 return false;
1643}
1644
e90c1d2a 1645#endif // wxUSE_GUI
3c778901 1646