]> git.saurik.com Git - wxWidgets.git/blame - src/common/event.cpp
bitmap button size was too small when uxtheme functions were used to get the margins
[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"
e90c1d2a
VZ
33
34 #if wxUSE_GUI
35 #include "wx/control.h"
e90c1d2a 36 #include "wx/dc.h"
75a29298 37 #include "wx/textctrl.h"
264cb7f5 38 #include "wx/validate.h"
e90c1d2a 39 #endif // wxUSE_GUI
c801d85f
KB
40#endif
41
afa039f9 42#include "wx/module.h"
e90c1d2a 43
264cb7f5 44#if wxUSE_GUI && wxUSE_STOPWATCH
0b30bb0b 45 #include "wx/stopwatch.h"
264cb7f5 46#endif // wxUSE_GUI && wxUSE_STOPWATCH
c801d85f 47
8e193f38
VZ
48// ----------------------------------------------------------------------------
49// wxWin macros
50// ----------------------------------------------------------------------------
51
3ed2104c
VZ
52#if wxUSE_BASE
53 IMPLEMENT_DYNAMIC_CLASS(wxEvtHandler, wxObject)
54 IMPLEMENT_ABSTRACT_CLASS(wxEvent, wxObject)
55#endif // wxUSE_BASE
e90c1d2a 56
23f681ec 57#if wxUSE_GUI
6b55490a 58 IMPLEMENT_DYNAMIC_CLASS(wxIdleEvent, wxEvent)
23f681ec
VZ
59 IMPLEMENT_DYNAMIC_CLASS(wxCommandEvent, wxEvent)
60 IMPLEMENT_DYNAMIC_CLASS(wxNotifyEvent, wxCommandEvent)
61 IMPLEMENT_DYNAMIC_CLASS(wxScrollEvent, wxCommandEvent)
62 IMPLEMENT_DYNAMIC_CLASS(wxScrollWinEvent, wxEvent)
63 IMPLEMENT_DYNAMIC_CLASS(wxMouseEvent, wxEvent)
64 IMPLEMENT_DYNAMIC_CLASS(wxKeyEvent, wxEvent)
65 IMPLEMENT_DYNAMIC_CLASS(wxSizeEvent, wxEvent)
66 IMPLEMENT_DYNAMIC_CLASS(wxPaintEvent, wxEvent)
1e6feb95 67 IMPLEMENT_DYNAMIC_CLASS(wxNcPaintEvent, wxEvent)
23f681ec
VZ
68 IMPLEMENT_DYNAMIC_CLASS(wxEraseEvent, wxEvent)
69 IMPLEMENT_DYNAMIC_CLASS(wxMoveEvent, wxEvent)
70 IMPLEMENT_DYNAMIC_CLASS(wxFocusEvent, wxEvent)
456bc6d9 71 IMPLEMENT_DYNAMIC_CLASS(wxChildFocusEvent, wxCommandEvent)
23f681ec
VZ
72 IMPLEMENT_DYNAMIC_CLASS(wxCloseEvent, wxEvent)
73 IMPLEMENT_DYNAMIC_CLASS(wxShowEvent, wxEvent)
74 IMPLEMENT_DYNAMIC_CLASS(wxMaximizeEvent, wxEvent)
75 IMPLEMENT_DYNAMIC_CLASS(wxIconizeEvent, wxEvent)
76 IMPLEMENT_DYNAMIC_CLASS(wxMenuEvent, wxEvent)
77 IMPLEMENT_DYNAMIC_CLASS(wxJoystickEvent, wxEvent)
78 IMPLEMENT_DYNAMIC_CLASS(wxDropFilesEvent, wxEvent)
79 IMPLEMENT_DYNAMIC_CLASS(wxActivateEvent, wxEvent)
80 IMPLEMENT_DYNAMIC_CLASS(wxInitDialogEvent, wxEvent)
8e72b8b5 81 IMPLEMENT_DYNAMIC_CLASS(wxSetCursorEvent, wxEvent)
23f681ec 82 IMPLEMENT_DYNAMIC_CLASS(wxSysColourChangedEvent, wxEvent)
574c939e 83 IMPLEMENT_DYNAMIC_CLASS(wxDisplayChangedEvent, wxEvent)
23f681ec 84 IMPLEMENT_DYNAMIC_CLASS(wxUpdateUIEvent, wxCommandEvent)
75299490 85 IMPLEMENT_DYNAMIC_CLASS(wxNavigationKeyEvent, wxEvent)
23f681ec
VZ
86 IMPLEMENT_DYNAMIC_CLASS(wxPaletteChangedEvent, wxEvent)
87 IMPLEMENT_DYNAMIC_CLASS(wxQueryNewPaletteEvent, wxEvent)
88 IMPLEMENT_DYNAMIC_CLASS(wxWindowCreateEvent, wxEvent)
89 IMPLEMENT_DYNAMIC_CLASS(wxWindowDestroyEvent, wxEvent)
b96340e6 90 IMPLEMENT_DYNAMIC_CLASS(wxHelpEvent, wxCommandEvent)
69231000 91 IMPLEMENT_DYNAMIC_CLASS(wxContextMenuEvent, wxCommandEvent)
a5e84126 92 IMPLEMENT_DYNAMIC_CLASS(wxMouseCaptureChangedEvent, wxEvent)
78c91815 93 IMPLEMENT_DYNAMIC_CLASS(wxClipboardTextEvent, wxCommandEvent)
23f681ec 94#endif // wxUSE_GUI
0b746ba8 95
3ed2104c
VZ
96#if wxUSE_BASE
97
23f681ec
VZ
98const wxEventTable *wxEvtHandler::GetEventTable() const
99 { return &wxEvtHandler::sm_eventTable; }
0b746ba8 100
23f681ec
VZ
101const wxEventTable wxEvtHandler::sm_eventTable =
102 { (const wxEventTable *)NULL, &wxEvtHandler::sm_eventTableEntries[0] };
0b746ba8 103
b5a98acd
VZ
104wxEventHashTable &wxEvtHandler::GetEventHashTable() const
105 { return wxEvtHandler::sm_eventHashTable; }
106
107wxEventHashTable wxEvtHandler::sm_eventHashTable(wxEvtHandler::sm_eventTable);
108
23f681ec 109const wxEventTableEntry wxEvtHandler::sm_eventTableEntries[] =
9aaf9bed 110 { DECLARE_EVENT_TABLE_ENTRY(wxEVT_NULL, 0, 0, (wxObjectEventFunction)NULL, NULL) };
c801d85f 111
1a18887b 112
afa039f9
JS
113#ifdef __WXDEBUG__
114// Clear up event hash table contents or we can get problems
115// when C++ is cleaning up the static object
116class wxEventTableEntryModule: public wxModule
117{
118DECLARE_DYNAMIC_CLASS(wxEventTableEntryModule)
119public:
120 wxEventTableEntryModule() {}
121 bool OnInit() { return true; }
122 void OnExit()
123 {
124 wxEventHashTable::ClearAll();
125 }
126};
127IMPLEMENT_DYNAMIC_CLASS(wxEventTableEntryModule, wxModule)
128#endif
1a18887b 129
8e193f38
VZ
130// ----------------------------------------------------------------------------
131// global variables
132// ----------------------------------------------------------------------------
133
134// To put pending event handlers
135wxList *wxPendingEvents = (wxList *)NULL;
136
7214297d 137#if wxUSE_THREADS
8e193f38
VZ
138 // protects wxPendingEvents list
139 wxCriticalSection *wxPendingEventsLocker = (wxCriticalSection *)NULL;
7214297d
GL
140#endif
141
cbee8f8d
VZ
142#if !WXWIN_COMPATIBILITY_EVENT_TYPES
143
2e4df4bf
VZ
144// common event types are defined here, other event types are defined by the
145// components which use them
b5a98acd 146
c15d9c85
VS
147const wxEventType wxEVT_FIRST = 10000;
148const wxEventType wxEVT_USER_FIRST = wxEVT_FIRST + 2000;
2e4df4bf 149
461697c2 150DEFINE_EVENT_TYPE(wxEVT_NULL)
886dd7d2
VZ
151DEFINE_EVENT_TYPE(wxEVT_IDLE)
152DEFINE_EVENT_TYPE(wxEVT_SOCKET)
153
154#endif // !WXWIN_COMPATIBILITY_EVENT_TYPES
155
156#endif // wxUSE_BASE
157
158#if wxUSE_GUI
159
160#if !WXWIN_COMPATIBILITY_EVENT_TYPES
161
2e4df4bf
VZ
162DEFINE_EVENT_TYPE(wxEVT_COMMAND_BUTTON_CLICKED)
163DEFINE_EVENT_TYPE(wxEVT_COMMAND_CHECKBOX_CLICKED)
164DEFINE_EVENT_TYPE(wxEVT_COMMAND_CHOICE_SELECTED)
165DEFINE_EVENT_TYPE(wxEVT_COMMAND_LISTBOX_SELECTED)
166DEFINE_EVENT_TYPE(wxEVT_COMMAND_LISTBOX_DOUBLECLICKED)
167DEFINE_EVENT_TYPE(wxEVT_COMMAND_CHECKLISTBOX_TOGGLED)
2e4df4bf
VZ
168DEFINE_EVENT_TYPE(wxEVT_COMMAND_MENU_SELECTED)
169DEFINE_EVENT_TYPE(wxEVT_COMMAND_SLIDER_UPDATED)
170DEFINE_EVENT_TYPE(wxEVT_COMMAND_RADIOBOX_SELECTED)
171DEFINE_EVENT_TYPE(wxEVT_COMMAND_RADIOBUTTON_SELECTED)
172DEFINE_EVENT_TYPE(wxEVT_COMMAND_SCROLLBAR_UPDATED)
173DEFINE_EVENT_TYPE(wxEVT_COMMAND_VLBOX_SELECTED)
174DEFINE_EVENT_TYPE(wxEVT_COMMAND_COMBOBOX_SELECTED)
175DEFINE_EVENT_TYPE(wxEVT_COMMAND_TOOL_RCLICKED)
176DEFINE_EVENT_TYPE(wxEVT_COMMAND_TOOL_ENTER)
177DEFINE_EVENT_TYPE(wxEVT_COMMAND_SPINCTRL_UPDATED)
0b5eceb6
VZ
178
179// Sockets and timers send events, too
2e4df4bf 180DEFINE_EVENT_TYPE(wxEVT_TIMER)
0b5eceb6
VZ
181
182// Mouse event types
2e4df4bf
VZ
183DEFINE_EVENT_TYPE(wxEVT_LEFT_DOWN)
184DEFINE_EVENT_TYPE(wxEVT_LEFT_UP)
185DEFINE_EVENT_TYPE(wxEVT_MIDDLE_DOWN)
186DEFINE_EVENT_TYPE(wxEVT_MIDDLE_UP)
187DEFINE_EVENT_TYPE(wxEVT_RIGHT_DOWN)
188DEFINE_EVENT_TYPE(wxEVT_RIGHT_UP)
189DEFINE_EVENT_TYPE(wxEVT_MOTION)
190DEFINE_EVENT_TYPE(wxEVT_ENTER_WINDOW)
191DEFINE_EVENT_TYPE(wxEVT_LEAVE_WINDOW)
192DEFINE_EVENT_TYPE(wxEVT_LEFT_DCLICK)
193DEFINE_EVENT_TYPE(wxEVT_MIDDLE_DCLICK)
194DEFINE_EVENT_TYPE(wxEVT_RIGHT_DCLICK)
195DEFINE_EVENT_TYPE(wxEVT_SET_FOCUS)
196DEFINE_EVENT_TYPE(wxEVT_KILL_FOCUS)
456bc6d9 197DEFINE_EVENT_TYPE(wxEVT_CHILD_FOCUS)
d2c52078 198DEFINE_EVENT_TYPE(wxEVT_MOUSEWHEEL)
0b5eceb6
VZ
199
200// Non-client mouse events
2e4df4bf
VZ
201DEFINE_EVENT_TYPE(wxEVT_NC_LEFT_DOWN)
202DEFINE_EVENT_TYPE(wxEVT_NC_LEFT_UP)
203DEFINE_EVENT_TYPE(wxEVT_NC_MIDDLE_DOWN)
204DEFINE_EVENT_TYPE(wxEVT_NC_MIDDLE_UP)
205DEFINE_EVENT_TYPE(wxEVT_NC_RIGHT_DOWN)
206DEFINE_EVENT_TYPE(wxEVT_NC_RIGHT_UP)
207DEFINE_EVENT_TYPE(wxEVT_NC_MOTION)
208DEFINE_EVENT_TYPE(wxEVT_NC_ENTER_WINDOW)
209DEFINE_EVENT_TYPE(wxEVT_NC_LEAVE_WINDOW)
210DEFINE_EVENT_TYPE(wxEVT_NC_LEFT_DCLICK)
211DEFINE_EVENT_TYPE(wxEVT_NC_MIDDLE_DCLICK)
212DEFINE_EVENT_TYPE(wxEVT_NC_RIGHT_DCLICK)
0b5eceb6
VZ
213
214// Character input event type
2e4df4bf
VZ
215DEFINE_EVENT_TYPE(wxEVT_CHAR)
216DEFINE_EVENT_TYPE(wxEVT_CHAR_HOOK)
217DEFINE_EVENT_TYPE(wxEVT_NAVIGATION_KEY)
218DEFINE_EVENT_TYPE(wxEVT_KEY_DOWN)
219DEFINE_EVENT_TYPE(wxEVT_KEY_UP)
5048c832
JS
220#if wxUSE_HOTKEY
221DEFINE_EVENT_TYPE(wxEVT_HOTKEY)
222#endif
0b5eceb6
VZ
223
224// Set cursor event
2e4df4bf 225DEFINE_EVENT_TYPE(wxEVT_SET_CURSOR)
0b5eceb6
VZ
226
227// wxScrollbar and wxSlider event identifiers
2e4df4bf
VZ
228DEFINE_EVENT_TYPE(wxEVT_SCROLL_TOP)
229DEFINE_EVENT_TYPE(wxEVT_SCROLL_BOTTOM)
230DEFINE_EVENT_TYPE(wxEVT_SCROLL_LINEUP)
231DEFINE_EVENT_TYPE(wxEVT_SCROLL_LINEDOWN)
232DEFINE_EVENT_TYPE(wxEVT_SCROLL_PAGEUP)
233DEFINE_EVENT_TYPE(wxEVT_SCROLL_PAGEDOWN)
234DEFINE_EVENT_TYPE(wxEVT_SCROLL_THUMBTRACK)
235DEFINE_EVENT_TYPE(wxEVT_SCROLL_THUMBRELEASE)
d15b1f85 236DEFINE_EVENT_TYPE(wxEVT_SCROLL_CHANGED)
0b5eceb6
VZ
237
238// Scroll events from wxWindow
2e4df4bf
VZ
239DEFINE_EVENT_TYPE(wxEVT_SCROLLWIN_TOP)
240DEFINE_EVENT_TYPE(wxEVT_SCROLLWIN_BOTTOM)
241DEFINE_EVENT_TYPE(wxEVT_SCROLLWIN_LINEUP)
242DEFINE_EVENT_TYPE(wxEVT_SCROLLWIN_LINEDOWN)
243DEFINE_EVENT_TYPE(wxEVT_SCROLLWIN_PAGEUP)
244DEFINE_EVENT_TYPE(wxEVT_SCROLLWIN_PAGEDOWN)
245DEFINE_EVENT_TYPE(wxEVT_SCROLLWIN_THUMBTRACK)
246DEFINE_EVENT_TYPE(wxEVT_SCROLLWIN_THUMBRELEASE)
0b5eceb6
VZ
247
248// System events
2e4df4bf 249DEFINE_EVENT_TYPE(wxEVT_SIZE)
5706de1c 250DEFINE_EVENT_TYPE(wxEVT_SIZING)
2e4df4bf 251DEFINE_EVENT_TYPE(wxEVT_MOVE)
5706de1c 252DEFINE_EVENT_TYPE(wxEVT_MOVING)
2e4df4bf
VZ
253DEFINE_EVENT_TYPE(wxEVT_CLOSE_WINDOW)
254DEFINE_EVENT_TYPE(wxEVT_END_SESSION)
255DEFINE_EVENT_TYPE(wxEVT_QUERY_END_SESSION)
afafd942 256DEFINE_EVENT_TYPE(wxEVT_HIBERNATE)
2e4df4bf
VZ
257DEFINE_EVENT_TYPE(wxEVT_ACTIVATE_APP)
258DEFINE_EVENT_TYPE(wxEVT_POWER)
259DEFINE_EVENT_TYPE(wxEVT_ACTIVATE)
260DEFINE_EVENT_TYPE(wxEVT_CREATE)
261DEFINE_EVENT_TYPE(wxEVT_DESTROY)
262DEFINE_EVENT_TYPE(wxEVT_SHOW)
263DEFINE_EVENT_TYPE(wxEVT_ICONIZE)
264DEFINE_EVENT_TYPE(wxEVT_MAXIMIZE)
265DEFINE_EVENT_TYPE(wxEVT_MOUSE_CAPTURE_CHANGED)
266DEFINE_EVENT_TYPE(wxEVT_PAINT)
267DEFINE_EVENT_TYPE(wxEVT_ERASE_BACKGROUND)
268DEFINE_EVENT_TYPE(wxEVT_NC_PAINT)
269DEFINE_EVENT_TYPE(wxEVT_PAINT_ICON)
ccef86c7
VZ
270DEFINE_EVENT_TYPE(wxEVT_MENU_OPEN)
271DEFINE_EVENT_TYPE(wxEVT_MENU_CLOSE)
2e4df4bf 272DEFINE_EVENT_TYPE(wxEVT_MENU_HIGHLIGHT)
2e4df4bf
VZ
273DEFINE_EVENT_TYPE(wxEVT_CONTEXT_MENU)
274DEFINE_EVENT_TYPE(wxEVT_SYS_COLOUR_CHANGED)
574c939e 275DEFINE_EVENT_TYPE(wxEVT_DISPLAY_CHANGED)
2e4df4bf
VZ
276DEFINE_EVENT_TYPE(wxEVT_SETTING_CHANGED)
277DEFINE_EVENT_TYPE(wxEVT_QUERY_NEW_PALETTE)
278DEFINE_EVENT_TYPE(wxEVT_PALETTE_CHANGED)
279DEFINE_EVENT_TYPE(wxEVT_JOY_BUTTON_DOWN)
280DEFINE_EVENT_TYPE(wxEVT_JOY_BUTTON_UP)
281DEFINE_EVENT_TYPE(wxEVT_JOY_MOVE)
282DEFINE_EVENT_TYPE(wxEVT_JOY_ZMOVE)
283DEFINE_EVENT_TYPE(wxEVT_DROP_FILES)
284DEFINE_EVENT_TYPE(wxEVT_DRAW_ITEM)
285DEFINE_EVENT_TYPE(wxEVT_MEASURE_ITEM)
286DEFINE_EVENT_TYPE(wxEVT_COMPARE_ITEM)
287DEFINE_EVENT_TYPE(wxEVT_INIT_DIALOG)
2e4df4bf 288DEFINE_EVENT_TYPE(wxEVT_UPDATE_UI)
0b5eceb6 289
78c91815
VZ
290// Clipboard events
291DEFINE_EVENT_TYPE(wxEVT_COMMAND_TEXT_COPY)
292DEFINE_EVENT_TYPE(wxEVT_COMMAND_TEXT_CUT)
293DEFINE_EVENT_TYPE(wxEVT_COMMAND_TEXT_PASTE)
294
0b5eceb6
VZ
295// Generic command events
296// Note: a click is a higher-level event than button down/up
2e4df4bf
VZ
297DEFINE_EVENT_TYPE(wxEVT_COMMAND_LEFT_CLICK)
298DEFINE_EVENT_TYPE(wxEVT_COMMAND_LEFT_DCLICK)
299DEFINE_EVENT_TYPE(wxEVT_COMMAND_RIGHT_CLICK)
300DEFINE_EVENT_TYPE(wxEVT_COMMAND_RIGHT_DCLICK)
301DEFINE_EVENT_TYPE(wxEVT_COMMAND_SET_FOCUS)
302DEFINE_EVENT_TYPE(wxEVT_COMMAND_KILL_FOCUS)
303DEFINE_EVENT_TYPE(wxEVT_COMMAND_ENTER)
0b5eceb6
VZ
304
305// Help events
2e4df4bf
VZ
306DEFINE_EVENT_TYPE(wxEVT_HELP)
307DEFINE_EVENT_TYPE(wxEVT_DETAILED_HELP)
6164f93c
VZ
308
309#endif // !WXWIN_COMPATIBILITY_EVENT_TYPES
310
886dd7d2
VZ
311#endif // wxUSE_GUI
312
313#if wxUSE_BASE
314
6164f93c
VZ
315// ============================================================================
316// implementation
317// ============================================================================
0b5eceb6 318
0b5eceb6
VZ
319// ----------------------------------------------------------------------------
320// event initialization
321// ----------------------------------------------------------------------------
322
323int wxNewEventType()
324{
325 // MT-FIXME
326 static int s_lastUsedEventType = wxEVT_FIRST;
327
328 return s_lastUsedEventType++;
329}
330
8e193f38
VZ
331// ----------------------------------------------------------------------------
332// wxEvent
333// ----------------------------------------------------------------------------
334
c801d85f 335/*
77ffb593 336 * General wxWidgets events, covering
c801d85f
KB
337 * all interesting things that might happen (button clicking, resizing,
338 * setting text in widgets, etc.).
339 *
340 * For each completely new event type, derive a new event class.
341 *
342 */
343
8e72b8b5 344wxEvent::wxEvent(int theId, wxEventType commandType )
c801d85f 345{
8e72b8b5 346 m_eventType = commandType;
0b746ba8 347 m_eventObject = (wxObject *) NULL;
0b746ba8
VZ
348 m_timeStamp = 0;
349 m_id = theId;
1c624631 350 m_skipped = false;
0b746ba8 351 m_callbackUserData = (wxObject *) NULL;
1c624631 352 m_isCommandEvent = false;
1648d51b 353 m_propagationLevel = wxEVENT_PROPAGATE_NONE;
c801d85f
KB
354}
355
8e72b8b5 356wxEvent::wxEvent(const wxEvent &src)
e6a6feba
GD
357 : wxObject()
358 , m_eventObject(src.m_eventObject)
359 , m_eventType(src.m_eventType)
360 , m_timeStamp(src.m_timeStamp)
361 , m_id(src.m_id)
362 , m_callbackUserData(src.m_callbackUserData)
6fd5903a 363 , m_propagationLevel(src.m_propagationLevel)
e6a6feba
GD
364 , m_skipped(src.m_skipped)
365 , m_isCommandEvent(src.m_isCommandEvent)
a737331d 366{
a737331d
GL
367}
368
3ed2104c
VZ
369#endif // wxUSE_BASE
370
e90c1d2a
VZ
371#if wxUSE_GUI
372
c801d85f
KB
373/*
374 * Command events
375 *
376 */
377
21eefb76
VZ
378#ifdef __VISUALC__
379 // 'this' : used in base member initializer list (for m_commandString)
380 #pragma warning(disable:4355)
381#endif
382
7798a18e 383wxCommandEvent::wxCommandEvent(wxEventType commandType, int theId)
b5a98acd 384 : wxEvent(theId, commandType)
ab1931f9
KH
385#if WXWIN_COMPATIBILITY_2_4
386 , m_commandString(this)
387#endif
c801d85f 388{
0b746ba8
VZ
389 m_clientData = (char *) NULL;
390 m_clientObject = (wxClientData *) NULL;
391 m_extraLong = 0;
392 m_commandInt = 0;
1c624631 393 m_isCommandEvent = true;
1648d51b
VZ
394
395 // the command events are propagated upwards by default
396 m_propagationLevel = wxEVENT_PROPAGATE_MAX;
c801d85f
KB
397}
398
21eefb76
VZ
399#ifdef __VISUALC__
400 #pragma warning(default:4355)
401#endif
402
ab1931f9
KH
403wxString wxCommandEvent::GetString() const
404{
405 if(m_eventType != wxEVT_COMMAND_TEXT_UPDATED || !m_eventObject)
406 return m_cmdString;
407 else
408 {
89438177 409#if wxUSE_TEXTCTRL
ab1931f9
KH
410 wxTextCtrl *txt = wxDynamicCast(m_eventObject, wxTextCtrl);
411 if(txt)
412 return txt->GetValue();
413 else
89438177 414#endif // wxUSE_TEXTCTRL
ab1931f9
KH
415 return m_cmdString;
416 }
417}
418
0b30bb0b
JS
419/*
420 * UI update events
421 */
422
423#if wxUSE_LONGLONG
e39af974 424wxLongLong wxUpdateUIEvent::sm_lastUpdate = 0;
0b30bb0b
JS
425#endif
426
e39af974
JS
427long wxUpdateUIEvent::sm_updateInterval = 0;
428
429wxUpdateUIMode wxUpdateUIEvent::sm_updateMode = wxUPDATE_UI_PROCESS_ALL;
0b30bb0b
JS
430
431// Can we update?
a7bc03c9 432bool wxUpdateUIEvent::CanUpdate(wxWindowBase *win)
0b30bb0b 433{
e39af974
JS
434 // Don't update if we've switched global updating off
435 // and this window doesn't support updates.
436 if (win &&
437 (GetMode() == wxUPDATE_UI_PROCESS_SPECIFIED &&
438 ((win->GetExtraStyle() & wxWS_EX_PROCESS_UI_UPDATES) == 0)))
1c624631 439 return false;
b5a98acd 440
e39af974 441 if (sm_updateInterval == -1)
1c624631 442 return false;
534b127c
WS
443
444 if (sm_updateInterval == 0)
1c624631 445 return true;
534b127c 446
0b30bb0b 447#if wxUSE_STOPWATCH && wxUSE_LONGLONG
534b127c
WS
448 wxLongLong now = wxGetLocalTimeMillis();
449 if (now > (sm_lastUpdate + sm_updateInterval))
450 {
1c624631 451 return true;
0b30bb0b 452 }
534b127c 453
1c624631 454 return false;
534b127c
WS
455#else
456 // If we don't have wxStopWatch or wxLongLong, we
457 // should err on the safe side and update now anyway.
458 return true;
459#endif
0b30bb0b
JS
460}
461
462// Reset the update time to provide a delay until the next
463// time we should update
464void wxUpdateUIEvent::ResetUpdateTime()
465{
466#if wxUSE_STOPWATCH && wxUSE_LONGLONG
e39af974 467 if (sm_updateInterval > 0)
0b30bb0b
JS
468 {
469 wxLongLong now = wxGetLocalTimeMillis();
e39af974 470 if (now > (sm_lastUpdate + sm_updateInterval))
0b30bb0b 471 {
e39af974 472 sm_lastUpdate = now;
0b30bb0b
JS
473 }
474 }
475#endif
476}
477
e39af974
JS
478/*
479 * Idle events
480 */
b5a98acd 481
e39af974
JS
482wxIdleMode wxIdleEvent::sm_idleMode = wxIDLE_PROCESS_ALL;
483
484// Can we send an idle event?
485bool wxIdleEvent::CanSend(wxWindow* win)
486{
487 // Don't update if we've switched global updating off
488 // and this window doesn't support updates.
489 if (win &&
490 (GetMode() == wxIDLE_PROCESS_SPECIFIED &&
491 ((win->GetExtraStyle() & wxWS_EX_PROCESS_IDLE) == 0)))
1c624631 492 return false;
b5a98acd 493
1c624631 494 return true;
e39af974 495}
0b30bb0b 496
c801d85f
KB
497/*
498 * Scroll events
499 */
500
0b746ba8
VZ
501wxScrollEvent::wxScrollEvent(wxEventType commandType,
502 int id,
503 int pos,
504 int orient)
e6a6feba 505 : wxCommandEvent(commandType, id)
c801d85f 506{
0b746ba8
VZ
507 m_extraLong = orient;
508 m_commandInt = pos;
c801d85f
KB
509}
510
d1367c3d
RR
511/*
512 * ScrollWin events
513 */
514
515wxScrollWinEvent::wxScrollWinEvent(wxEventType commandType,
516 int pos,
517 int orient)
d1367c3d 518{
c5b42c87 519 m_eventType = commandType;
d1367c3d
RR
520 m_extraLong = orient;
521 m_commandInt = pos;
522}
523
c801d85f
KB
524/*
525 * Mouse events
526 *
527 */
528
7798a18e 529wxMouseEvent::wxMouseEvent(wxEventType commandType)
c801d85f 530{
0b746ba8 531 m_eventType = commandType;
1c624631
VZ
532 m_metaDown = false;
533 m_altDown = false;
534 m_controlDown = false;
535 m_shiftDown = false;
536 m_leftDown = false;
537 m_rightDown = false;
538 m_middleDown = false;
0b746ba8
VZ
539 m_x = 0;
540 m_y = 0;
d2c52078
RD
541 m_wheelRotation = 0;
542 m_wheelDelta = 0;
543 m_linesPerAction = 0;
c801d85f
KB
544}
545
abcbaea7
VZ
546void wxMouseEvent::Assign(const wxMouseEvent& event)
547{
9a1725c4 548 m_eventType = event.m_eventType;
92309201 549
abcbaea7
VZ
550 m_x = event.m_x;
551 m_y = event.m_y;
552
553 m_leftDown = event.m_leftDown;
554 m_middleDown = event.m_middleDown;
555 m_rightDown = event.m_rightDown;
556
557 m_controlDown = event.m_controlDown;
558 m_shiftDown = event.m_shiftDown;
559 m_altDown = event.m_altDown;
560 m_metaDown = event.m_metaDown;
561
562 m_wheelRotation = event.m_wheelRotation;
563 m_wheelDelta = event.m_wheelDelta;
564 m_linesPerAction = event.m_linesPerAction;
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
b88c44e7
RD
1016 // no client data (yet)
1017 m_clientData = NULL;
1018 m_clientDataType = wxClientData_None;
c801d85f
KB
1019}
1020
0b746ba8 1021wxEvtHandler::~wxEvtHandler()
c801d85f 1022{
0b746ba8
VZ
1023 // Takes itself out of the list of handlers
1024 if (m_previousHandler)
1025 m_previousHandler->m_nextHandler = m_nextHandler;
1026
1027 if (m_nextHandler)
1028 m_nextHandler->m_previousHandler = m_previousHandler;
1029
1030 if (m_dynamicEvents)
fe71f65c 1031 {
df5168c4
MB
1032 wxList::iterator it = m_dynamicEvents->begin(),
1033 en = m_dynamicEvents->end();
1034 for (;it != en; ++it)
0b746ba8 1035 {
2e4df4bf 1036#if WXWIN_COMPATIBILITY_EVENT_TYPES
df5168c4 1037 wxEventTableEntry *entry = (wxEventTableEntry*)*it;
2e4df4bf 1038#else // !WXWIN_COMPATIBILITY_EVENT_TYPES
df5168c4 1039 wxDynamicEventTableEntry *entry = (wxDynamicEventTableEntry*)*it;
2e4df4bf
VZ
1040#endif // WXWIN_COMPATIBILITY_EVENT_TYPES/!WXWIN_COMPATIBILITY_EVENT_TYPES
1041
1042 if (entry->m_callbackUserData)
1043 delete entry->m_callbackUserData;
0b746ba8 1044 delete entry;
0b746ba8
VZ
1045 }
1046 delete m_dynamicEvents;
1047 };
7214297d 1048
5875d39c
VZ
1049 if (m_pendingEvents)
1050 m_pendingEvents->DeleteContents(true);
8e193f38 1051 delete m_pendingEvents;
7214297d 1052
8e193f38 1053#if wxUSE_THREADS
41404da7 1054# if !defined(__VISAGECPP__)
7214297d 1055 delete m_eventsLocker;
41404da7 1056# endif
b5a98acd 1057
083f7497
JS
1058 // Remove us from wxPendingEvents if necessary.
1059 if(wxPendingEventsLocker)
1060 wxENTER_CRIT_SECT(*wxPendingEventsLocker);
5d9d1b88
RR
1061 if ( wxPendingEvents )
1062 {
1063 // Delete all occurences of this from the list of pending events
1064 while (wxPendingEvents->DeleteObject(this)) { } // Do nothing
083f7497
JS
1065 }
1066 if(wxPendingEventsLocker)
1067 wxLEAVE_CRIT_SECT(*wxPendingEventsLocker);
7214297d 1068#endif
b88c44e7
RD
1069
1070 // we only delete object data, not untyped
1071 if ( m_clientDataType == wxClientData_Object )
1072 delete m_clientObject;
c801d85f
KB
1073}
1074
7214297d 1075#if wxUSE_THREADS
aadbdf11 1076
7214297d
GL
1077bool wxEvtHandler::ProcessThreadEvent(wxEvent& event)
1078{
7214297d 1079 // check that we are really in a child thread
8e193f38
VZ
1080 wxASSERT_MSG( !wxThread::IsMain(),
1081 wxT("use ProcessEvent() in main thread") );
1082
1083 AddPendingEvent(event);
7214297d 1084
1c624631 1085 return true;
8e193f38
VZ
1086}
1087
1c624631
VZ
1088void wxEvtHandler::ClearEventLocker()
1089{
1090#if !defined(__VISAGECPP__)
1091 delete m_eventsLocker;
1092 m_eventsLocker = NULL;
1093#endif
4115960d 1094}
1c624631 1095
8e193f38
VZ
1096#endif // wxUSE_THREADS
1097
1098void wxEvtHandler::AddPendingEvent(wxEvent& event)
1099{
16c1f79c
RR
1100 // 1) Add event to list of pending events of this event handler
1101
7a5c8ac4
VZ
1102 wxEvent *eventCopy = event.Clone();
1103
1104 // we must be able to copy the events here so the event class must
1105 // implement Clone() properly instead of just providing a NULL stab for it
1106 wxCHECK_RET( eventCopy,
1107 _T("events of this type aren't supposed to be posted") );
1108
cd30330f 1109 wxENTER_CRIT_SECT( Lock() );
16c1f79c 1110
8e193f38
VZ
1111 if ( !m_pendingEvents )
1112 m_pendingEvents = new wxList;
7214297d 1113
7a5c8ac4 1114 m_pendingEvents->Append(eventCopy);
7214297d 1115
cd30330f 1116 wxLEAVE_CRIT_SECT( Lock() );
16c1f79c
RR
1117
1118 // 2) Add this event handler to list of event handlers that
1119 // have pending events.
cfe17b74 1120
b568d04f 1121 wxENTER_CRIT_SECT(*wxPendingEventsLocker);
72cdf4c9 1122
8e193f38
VZ
1123 if ( !wxPendingEvents )
1124 wxPendingEvents = new wxList;
4d3a259a 1125 wxPendingEvents->Append(this);
72cdf4c9 1126
ce6d2511 1127 wxLEAVE_CRIT_SECT(*wxPendingEventsLocker);
6164f93c 1128
90e572f1 1129 // 3) Inform the system that new pending events are somewhere,
16c1f79c 1130 // and that these should be processed in idle time.
bf9e3e73 1131 wxWakeUpIdle();
7214297d
GL
1132}
1133
1134void wxEvtHandler::ProcessPendingEvents()
1135{
77e7c556
VZ
1136 // this method is only called by wxApp if this handler does have pending
1137 // events
1138 wxCHECK_RET( m_pendingEvents,
1139 wxT("Please call wxApp::ProcessPendingEvents() instead") );
1140
cd30330f 1141 wxENTER_CRIT_SECT( Lock() );
8e193f38 1142
7b0d5c59
VZ
1143 // we leave the loop once we have processed all events that were present at
1144 // the start of ProcessPendingEvents because otherwise we could get into
1145 // infinite loop if the pending event handler execution resulted in another
1146 // event being posted
1147 size_t n = m_pendingEvents->size();
1148 for ( wxList::compatibility_iterator node = m_pendingEvents->GetFirst();
1149 node;
1150 node = m_pendingEvents->GetFirst() )
8e193f38 1151 {
b1d4dd7a 1152 wxEvent *event = (wxEvent *)node->GetData();
7b0d5c59 1153
5875d39c
VZ
1154 // It's importan we remove event from list before processing it.
1155 // Else a nested event loop, for example from a modal dialog, might
1156 // process the same event again.
1157 m_pendingEvents->Erase(node);
1158
cd30330f 1159 wxLEAVE_CRIT_SECT( Lock() );
7b0d5c59 1160
8e193f38 1161 ProcessEvent(*event);
5875d39c 1162 delete event;
7b0d5c59 1163
cd30330f 1164 wxENTER_CRIT_SECT( Lock() );
cfe17b74 1165
8d7eaf91 1166 if ( --n == 0 )
18dbea4d 1167 break;
7214297d 1168 }
cfe17b74 1169
cd30330f 1170 wxLEAVE_CRIT_SECT( Lock() );
7214297d 1171}
7214297d 1172
c801d85f
KB
1173/*
1174 * Event table stuff
1175 */
1c624631
VZ
1176/* static */ bool
1177wxEvtHandler::ProcessEventIfMatches(const wxEventTableEntryBase& entry,
1178 wxEvtHandler *handler,
1179 wxEvent& event)
1180{
1181 int tableId1 = entry.m_id,
1182 tableId2 = entry.m_lastId;
1183
1184 // match only if the event type is the same and the id is either -1 in
1185 // the event table (meaning "any") or the event id matches the id
1186 // specified in the event table either exactly or by falling into
1187 // range between first and last
1a18887b
WS
1188 if ((tableId1 == wxID_ANY) ||
1189 (tableId2 == wxID_ANY && tableId1 == event.GetId()) ||
1190 (tableId2 != wxID_ANY &&
1c624631
VZ
1191 (event.GetId() >= tableId1 && event.GetId() <= tableId2)))
1192 {
1193 event.Skip(false);
1194 event.m_callbackUserData = entry.m_callbackUserData;
1195
1196#if wxUSE_EXCEPTIONS
1197 if ( wxTheApp )
1198 {
1199 // call the handler via wxApp method which allows the user to catch
1200 // any exceptions which may be thrown by any handler in the program
1201 // in one place
1202 wxTheApp->HandleEvent(handler, (wxEventFunction)entry.m_fn, event);
1203 }
1204 else
8bd2a804 1205#endif // wxUSE_EXCEPTIONS
1c624631
VZ
1206 {
1207 // no need for an extra virtual function call
1208 (handler->*((wxEventFunction) (entry.m_fn)))(event);
1209 }
1c624631
VZ
1210
1211 if (!event.GetSkipped())
1212 return true;
1213 }
1214
1215 return false;
1216}
c801d85f 1217
4caf847c 1218bool wxEvtHandler::TryParent(wxEvent& event)
c801d85f 1219{
4caf847c 1220 if ( wxTheApp && (this != wxTheApp) )
9154d8cf 1221 {
4caf847c
VZ
1222 // Special case: don't pass wxEVT_IDLE to wxApp, since it'll always
1223 // swallow it. wxEVT_IDLE is sent explicitly to wxApp so it will be
1224 // processed appropriately via SearchEventTable.
1225 if ( event.GetEventType() != wxEVT_IDLE )
1226 {
1227 if ( wxTheApp->ProcessEvent(event) )
1c624631 1228 return true;
4caf847c 1229 }
9154d8cf
VZ
1230 }
1231
1c624631 1232 return false;
4caf847c 1233}
0b746ba8 1234
4caf847c
VZ
1235bool wxEvtHandler::ProcessEvent(wxEvent& event)
1236{
9154d8cf
VZ
1237 // allow the application to hook into event processing
1238 if ( wxTheApp )
1239 {
1240 int rc = wxTheApp->FilterEvent(event);
1241 if ( rc != -1 )
1242 {
1243 wxASSERT_MSG( rc == 1 || rc == 0,
1244 _T("unexpected wxApp::FilterEvent return value") );
1245
1246 return rc != 0;
1247 }
1248 //else: proceed normally
1249 }
1250
8e193f38 1251 // An event handler can be enabled or disabled
0b746ba8 1252 if ( GetEvtHandlerEnabled() )
c801d85f 1253 {
22c2307c
VZ
1254 // if we have a validator, it has higher priority than our own event
1255 // table
4caf847c 1256 if ( TryValidator(event) )
1c624631 1257 return true;
4caf847c 1258
22c2307c
VZ
1259 // Handle per-instance dynamic event tables first
1260 if ( m_dynamicEvents && SearchDynamicEventTable(event) )
1c624631 1261 return true;
0b746ba8 1262
b5a98acd
VZ
1263 // Then static per-class event tables
1264 if ( GetEventHashTable().HandleEvent(event, this) )
1c624631 1265 return true;
c801d85f
KB
1266 }
1267
0b746ba8
VZ
1268 // Try going down the event handler chain
1269 if ( GetNextHandler() )
c801d85f 1270 {
0b746ba8 1271 if ( GetNextHandler()->ProcessEvent(event) )
1c624631 1272 return true;
c801d85f 1273 }
c801d85f 1274
22c2307c
VZ
1275 // Finally propagate the event upwards the window chain and/or to the
1276 // application object as necessary
4caf847c 1277 return TryParent(event);
c801d85f
KB
1278}
1279
b5a98acd 1280
c801d85f
KB
1281bool wxEvtHandler::SearchEventTable(wxEventTable& table, wxEvent& event)
1282{
1c624631 1283 const wxEventType eventType = event.GetEventType();
68662769 1284 for ( int i = 0; table.entries[i].m_fn != 0; i++ )
c801d85f 1285 {
68662769 1286 const wxEventTableEntry& entry = table.entries[i];
68662769 1287 if ( eventType == entry.m_eventType )
0b746ba8 1288 {
1c624631
VZ
1289 if ( ProcessEventIfMatches(entry, this, event) )
1290 return true;
0b746ba8 1291 }
c801d85f 1292 }
68662769 1293
1c624631 1294 return false;
c801d85f 1295}
97d7bfb8 1296
debe6624 1297void wxEvtHandler::Connect( int id, int lastId,
77d4384e 1298 int eventType,
0b746ba8 1299 wxObjectEventFunction func,
65b17727
JS
1300 wxObject *userData,
1301 wxEvtHandler* eventSink )
fe71f65c 1302{
cbee8f8d 1303#if WXWIN_COMPATIBILITY_EVENT_TYPES
2e4df4bf 1304 wxEventTableEntry *entry = new wxEventTableEntry;
cbee8f8d
VZ
1305 entry->m_eventType = eventType;
1306 entry->m_id = id;
1307 entry->m_lastId = lastId;
1308 entry->m_fn = func;
1309 entry->m_callbackUserData = userData;
1310#else // !WXWIN_COMPATIBILITY_EVENT_TYPES
0b5eceb6 1311 wxDynamicEventTableEntry *entry =
65b17727 1312 new wxDynamicEventTableEntry(eventType, id, lastId, func, userData, eventSink);
cbee8f8d 1313#endif // WXWIN_COMPATIBILITY_EVENT_TYPES/!WXWIN_COMPATIBILITY_EVENT_TYPES
0b746ba8
VZ
1314
1315 if (!m_dynamicEvents)
1316 m_dynamicEvents = new wxList;
1317
92309201
RD
1318 // Insert at the front of the list so most recent additions are found first
1319 m_dynamicEvents->Insert( (wxObject*) entry );
fe71f65c 1320}
97d7bfb8
RR
1321
1322bool wxEvtHandler::Disconnect( int id, int lastId, wxEventType eventType,
1323 wxObjectEventFunction func,
65b17727
JS
1324 wxObject *userData,
1325 wxEvtHandler* eventSink )
97d7bfb8
RR
1326{
1327 if (!m_dynamicEvents)
1c624631 1328 return false;
cfe17b74 1329
df5168c4 1330 wxList::compatibility_iterator node = m_dynamicEvents->GetFirst();
97d7bfb8
RR
1331 while (node)
1332 {
2e4df4bf 1333#if WXWIN_COMPATIBILITY_EVENT_TYPES
b1d4dd7a 1334 wxEventTableEntry *entry = (wxEventTableEntry*)node->GetData();
2e4df4bf 1335#else // !WXWIN_COMPATIBILITY_EVENT_TYPES
b1d4dd7a 1336 wxDynamicEventTableEntry *entry = (wxDynamicEventTableEntry*)node->GetData();
2e4df4bf
VZ
1337#endif // WXWIN_COMPATIBILITY_EVENT_TYPES/!WXWIN_COMPATIBILITY_EVENT_TYPES
1338
97d7bfb8 1339 if ((entry->m_id == id) &&
1a18887b 1340 ((entry->m_lastId == lastId) || (lastId == wxID_ANY)) &&
97d7bfb8
RR
1341 ((entry->m_eventType == eventType) || (eventType == wxEVT_NULL)) &&
1342 ((entry->m_fn == func) || (func == (wxObjectEventFunction)NULL)) &&
65b17727 1343 ((entry->m_eventSink == eventSink) || (eventSink == (wxEvtHandler*)NULL)) &&
97d7bfb8
RR
1344 ((entry->m_callbackUserData == userData) || (userData == (wxObject*)NULL)))
1345 {
2e4df4bf
VZ
1346 if (entry->m_callbackUserData)
1347 delete entry->m_callbackUserData;
df5168c4 1348 m_dynamicEvents->Erase( node );
97d7bfb8 1349 delete entry;
1c624631 1350 return true;
97d7bfb8 1351 }
b1d4dd7a 1352 node = node->GetNext();
97d7bfb8 1353 }
1c624631 1354 return false;
97d7bfb8 1355}
fe71f65c
RR
1356
1357bool wxEvtHandler::SearchDynamicEventTable( wxEvent& event )
1358{
1c624631 1359 wxCHECK_MSG( m_dynamicEvents, false,
223d09f6 1360 wxT("caller should check that we have dynamic events") );
0b746ba8 1361
df5168c4 1362 wxList::compatibility_iterator node = m_dynamicEvents->GetFirst();
0b746ba8 1363 while (node)
fe71f65c 1364 {
2e4df4bf 1365#if WXWIN_COMPATIBILITY_EVENT_TYPES
1c624631 1366 wxEventTableEntry *entry = (wxEventTableEntry*)node->GetData();
2e4df4bf 1367#else // !WXWIN_COMPATIBILITY_EVENT_TYPES
1c624631 1368 wxDynamicEventTableEntry *entry = (wxDynamicEventTableEntry*)node->GetData();
2e4df4bf 1369#endif // WXWIN_COMPATIBILITY_EVENT_TYPES/!WXWIN_COMPATIBILITY_EVENT_TYPES
0b746ba8 1370
7fce89b9
VZ
1371 // get next node before (maybe) calling the event handler as it could
1372 // call Disconnect() invalidating the current node
1373 node = node->GetNext();
1374
ab1931f9 1375 if ((event.GetEventType() == entry->m_eventType) && (entry->m_fn != 0))
0b746ba8 1376 {
1c624631 1377 wxEvtHandler *handler =
65b17727 1378#if !WXWIN_COMPATIBILITY_EVENT_TYPES
1c624631
VZ
1379 entry->m_eventSink ? entry->m_eventSink
1380 :
b5a98acd 1381#endif
1c624631 1382 this;
0b746ba8 1383
1c624631
VZ
1384 if ( ProcessEventIfMatches(*entry, handler, event) )
1385 {
1386 return true;
0b746ba8
VZ
1387 }
1388 }
7b678698 1389 }
1c624631
VZ
1390
1391 return false;
4115960d 1392}
fe71f65c 1393
b88c44e7
RD
1394void wxEvtHandler::DoSetClientObject( wxClientData *data )
1395{
1396 wxASSERT_MSG( m_clientDataType != wxClientData_Void,
1397 wxT("can't have both object and void client data") );
1398
1399 if ( m_clientObject )
1400 delete m_clientObject;
1401
1402 m_clientObject = data;
1403 m_clientDataType = wxClientData_Object;
1404}
1405
1406wxClientData *wxEvtHandler::DoGetClientObject() const
1407{
1408 // it's not an error to call GetClientObject() on a window which doesn't
1409 // have client data at all - NULL will be returned
1410 wxASSERT_MSG( m_clientDataType != wxClientData_Void,
1411 wxT("this window doesn't have object client data") );
1412
1413 return m_clientObject;
1414}
1415
1416void wxEvtHandler::DoSetClientData( void *data )
1417{
1418 wxASSERT_MSG( m_clientDataType != wxClientData_Object,
1419 wxT("can't have both object and void client data") );
1420
1421 m_clientData = data;
1422 m_clientDataType = wxClientData_Void;
1423}
1424
1425void *wxEvtHandler::DoGetClientData() const
1426{
1427 // it's not an error to call GetClientData() on a window which doesn't have
1428 // client data at all - NULL will be returned
1429 wxASSERT_MSG( m_clientDataType != wxClientData_Object,
1430 wxT("this window doesn't have void client data") );
1431
1432 return m_clientData;
1433}
1434
4caf847c
VZ
1435#endif // wxUSE_BASE
1436
e90c1d2a
VZ
1437#if wxUSE_GUI
1438
e702ff0f
JS
1439// Find a window with the focus, that is also a descendant of the given window.
1440// This is used to determine the window to initially send commands to.
1441wxWindow* wxFindFocusDescendant(wxWindow* ancestor)
1442{
1443 // Process events starting with the window with the focus, if any.
1444 wxWindow* focusWin = wxWindow::FindFocus();
1445 wxWindow* win = focusWin;
1446
1447 // Check if this is a descendant of this frame.
1448 // If not, win will be set to NULL.
1449 while (win)
1450 {
1451 if (win == ancestor)
1452 break;
1453 else
1454 win = win->GetParent();
1455 }
1456 if (win == (wxWindow*) NULL)
1457 focusWin = (wxWindow*) NULL;
1458
1459 return focusWin;
1460}
1461
e90c1d2a 1462#endif // wxUSE_GUI