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