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