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