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