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