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