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