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