]> git.saurik.com Git - wxWidgets.git/blame - src/common/event.cpp
filename workaround CW bug in debug builds
[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$
8// Copyright: (c) Julian Smart and Markus Holzem
e90c1d2a 9// Licence: wxWindows licence
c801d85f
KB
10/////////////////////////////////////////////////////////////////////////////
11
8e193f38
VZ
12// ============================================================================
13// declarations
14// ============================================================================
15
16// ----------------------------------------------------------------------------
17// headers
18// ----------------------------------------------------------------------------
19
c801d85f 20#ifdef __GNUG__
0b746ba8 21 #pragma implementation "event.h"
c801d85f
KB
22#endif
23
24// For compilers that support precompilation, includes "wx.h".
25#include "wx/wxprec.h"
26
27#ifdef __BORLANDC__
0b746ba8 28 #pragma hdrstop
c801d85f
KB
29#endif
30
31#ifndef WX_PRECOMP
0b746ba8 32 #include "wx/defs.h"
0b746ba8 33 #include "wx/app.h"
e90c1d2a
VZ
34 #include "wx/list.h"
35
36 #if wxUSE_GUI
37 #include "wx/control.h"
38 #include "wx/utils.h"
39 #include "wx/dc.h"
40 #endif // wxUSE_GUI
c801d85f
KB
41#endif
42
43#include "wx/event.h"
e90c1d2a
VZ
44
45#if wxUSE_GUI
46 #include "wx/validate.h"
47#endif // wxUSE_GUI
c801d85f 48
8e193f38
VZ
49// ----------------------------------------------------------------------------
50// wxWin macros
51// ----------------------------------------------------------------------------
52
23f681ec
VZ
53IMPLEMENT_DYNAMIC_CLASS(wxEvtHandler, wxObject)
54IMPLEMENT_ABSTRACT_CLASS(wxEvent, wxObject)
e90c1d2a 55
23f681ec 56#if wxUSE_GUI
6b55490a 57 IMPLEMENT_DYNAMIC_CLASS(wxIdleEvent, wxEvent)
23f681ec
VZ
58 IMPLEMENT_DYNAMIC_CLASS(wxCommandEvent, wxEvent)
59 IMPLEMENT_DYNAMIC_CLASS(wxNotifyEvent, wxCommandEvent)
60 IMPLEMENT_DYNAMIC_CLASS(wxScrollEvent, wxCommandEvent)
61 IMPLEMENT_DYNAMIC_CLASS(wxScrollWinEvent, wxEvent)
62 IMPLEMENT_DYNAMIC_CLASS(wxMouseEvent, wxEvent)
63 IMPLEMENT_DYNAMIC_CLASS(wxKeyEvent, wxEvent)
64 IMPLEMENT_DYNAMIC_CLASS(wxSizeEvent, wxEvent)
65 IMPLEMENT_DYNAMIC_CLASS(wxPaintEvent, wxEvent)
1e6feb95 66 IMPLEMENT_DYNAMIC_CLASS(wxNcPaintEvent, wxEvent)
23f681ec
VZ
67 IMPLEMENT_DYNAMIC_CLASS(wxEraseEvent, wxEvent)
68 IMPLEMENT_DYNAMIC_CLASS(wxMoveEvent, wxEvent)
69 IMPLEMENT_DYNAMIC_CLASS(wxFocusEvent, wxEvent)
456bc6d9 70 IMPLEMENT_DYNAMIC_CLASS(wxChildFocusEvent, wxCommandEvent)
23f681ec
VZ
71 IMPLEMENT_DYNAMIC_CLASS(wxCloseEvent, wxEvent)
72 IMPLEMENT_DYNAMIC_CLASS(wxShowEvent, wxEvent)
73 IMPLEMENT_DYNAMIC_CLASS(wxMaximizeEvent, wxEvent)
74 IMPLEMENT_DYNAMIC_CLASS(wxIconizeEvent, wxEvent)
75 IMPLEMENT_DYNAMIC_CLASS(wxMenuEvent, wxEvent)
76 IMPLEMENT_DYNAMIC_CLASS(wxJoystickEvent, wxEvent)
77 IMPLEMENT_DYNAMIC_CLASS(wxDropFilesEvent, wxEvent)
78 IMPLEMENT_DYNAMIC_CLASS(wxActivateEvent, wxEvent)
79 IMPLEMENT_DYNAMIC_CLASS(wxInitDialogEvent, wxEvent)
8e72b8b5 80 IMPLEMENT_DYNAMIC_CLASS(wxSetCursorEvent, wxEvent)
23f681ec 81 IMPLEMENT_DYNAMIC_CLASS(wxSysColourChangedEvent, wxEvent)
574c939e 82 IMPLEMENT_DYNAMIC_CLASS(wxDisplayChangedEvent, wxEvent)
23f681ec
VZ
83 IMPLEMENT_DYNAMIC_CLASS(wxUpdateUIEvent, wxCommandEvent)
84 IMPLEMENT_DYNAMIC_CLASS(wxNavigationKeyEvent, wxCommandEvent)
85 IMPLEMENT_DYNAMIC_CLASS(wxPaletteChangedEvent, wxEvent)
86 IMPLEMENT_DYNAMIC_CLASS(wxQueryNewPaletteEvent, wxEvent)
87 IMPLEMENT_DYNAMIC_CLASS(wxWindowCreateEvent, wxEvent)
88 IMPLEMENT_DYNAMIC_CLASS(wxWindowDestroyEvent, wxEvent)
b96340e6 89 IMPLEMENT_DYNAMIC_CLASS(wxHelpEvent, wxCommandEvent)
69231000 90 IMPLEMENT_DYNAMIC_CLASS(wxContextMenuEvent, wxCommandEvent)
a5e84126 91 IMPLEMENT_DYNAMIC_CLASS(wxMouseCaptureChangedEvent, wxEvent)
23f681ec 92#endif // wxUSE_GUI
0b746ba8 93
23f681ec
VZ
94const wxEventTable *wxEvtHandler::GetEventTable() const
95 { return &wxEvtHandler::sm_eventTable; }
0b746ba8 96
23f681ec
VZ
97const wxEventTable wxEvtHandler::sm_eventTable =
98 { (const wxEventTable *)NULL, &wxEvtHandler::sm_eventTableEntries[0] };
0b746ba8 99
23f681ec 100const wxEventTableEntry wxEvtHandler::sm_eventTableEntries[] =
9aaf9bed 101 { DECLARE_EVENT_TABLE_ENTRY(wxEVT_NULL, 0, 0, (wxObjectEventFunction)NULL, NULL) };
c801d85f 102
8e193f38
VZ
103// ----------------------------------------------------------------------------
104// global variables
105// ----------------------------------------------------------------------------
106
107// To put pending event handlers
108wxList *wxPendingEvents = (wxList *)NULL;
109
7214297d 110#if wxUSE_THREADS
8e193f38
VZ
111 // protects wxPendingEvents list
112 wxCriticalSection *wxPendingEventsLocker = (wxCriticalSection *)NULL;
7214297d
GL
113#endif
114
cbee8f8d
VZ
115#if !WXWIN_COMPATIBILITY_EVENT_TYPES
116
2e4df4bf
VZ
117// common event types are defined here, other event types are defined by the
118// components which use them
119
461697c2 120DEFINE_EVENT_TYPE(wxEVT_NULL)
2e4df4bf
VZ
121DEFINE_EVENT_TYPE(wxEVT_COMMAND_BUTTON_CLICKED)
122DEFINE_EVENT_TYPE(wxEVT_COMMAND_CHECKBOX_CLICKED)
123DEFINE_EVENT_TYPE(wxEVT_COMMAND_CHOICE_SELECTED)
124DEFINE_EVENT_TYPE(wxEVT_COMMAND_LISTBOX_SELECTED)
125DEFINE_EVENT_TYPE(wxEVT_COMMAND_LISTBOX_DOUBLECLICKED)
126DEFINE_EVENT_TYPE(wxEVT_COMMAND_CHECKLISTBOX_TOGGLED)
2e4df4bf
VZ
127DEFINE_EVENT_TYPE(wxEVT_COMMAND_MENU_SELECTED)
128DEFINE_EVENT_TYPE(wxEVT_COMMAND_SLIDER_UPDATED)
129DEFINE_EVENT_TYPE(wxEVT_COMMAND_RADIOBOX_SELECTED)
130DEFINE_EVENT_TYPE(wxEVT_COMMAND_RADIOBUTTON_SELECTED)
131DEFINE_EVENT_TYPE(wxEVT_COMMAND_SCROLLBAR_UPDATED)
132DEFINE_EVENT_TYPE(wxEVT_COMMAND_VLBOX_SELECTED)
133DEFINE_EVENT_TYPE(wxEVT_COMMAND_COMBOBOX_SELECTED)
134DEFINE_EVENT_TYPE(wxEVT_COMMAND_TOOL_RCLICKED)
135DEFINE_EVENT_TYPE(wxEVT_COMMAND_TOOL_ENTER)
136DEFINE_EVENT_TYPE(wxEVT_COMMAND_SPINCTRL_UPDATED)
0b5eceb6
VZ
137
138// Sockets and timers send events, too
2e4df4bf
VZ
139DEFINE_EVENT_TYPE(wxEVT_SOCKET)
140DEFINE_EVENT_TYPE(wxEVT_TIMER)
0b5eceb6
VZ
141
142// Mouse event types
2e4df4bf
VZ
143DEFINE_EVENT_TYPE(wxEVT_LEFT_DOWN)
144DEFINE_EVENT_TYPE(wxEVT_LEFT_UP)
145DEFINE_EVENT_TYPE(wxEVT_MIDDLE_DOWN)
146DEFINE_EVENT_TYPE(wxEVT_MIDDLE_UP)
147DEFINE_EVENT_TYPE(wxEVT_RIGHT_DOWN)
148DEFINE_EVENT_TYPE(wxEVT_RIGHT_UP)
149DEFINE_EVENT_TYPE(wxEVT_MOTION)
150DEFINE_EVENT_TYPE(wxEVT_ENTER_WINDOW)
151DEFINE_EVENT_TYPE(wxEVT_LEAVE_WINDOW)
152DEFINE_EVENT_TYPE(wxEVT_LEFT_DCLICK)
153DEFINE_EVENT_TYPE(wxEVT_MIDDLE_DCLICK)
154DEFINE_EVENT_TYPE(wxEVT_RIGHT_DCLICK)
155DEFINE_EVENT_TYPE(wxEVT_SET_FOCUS)
156DEFINE_EVENT_TYPE(wxEVT_KILL_FOCUS)
456bc6d9 157DEFINE_EVENT_TYPE(wxEVT_CHILD_FOCUS)
d2c52078 158DEFINE_EVENT_TYPE(wxEVT_MOUSEWHEEL)
0b5eceb6
VZ
159
160// Non-client mouse events
2e4df4bf
VZ
161DEFINE_EVENT_TYPE(wxEVT_NC_LEFT_DOWN)
162DEFINE_EVENT_TYPE(wxEVT_NC_LEFT_UP)
163DEFINE_EVENT_TYPE(wxEVT_NC_MIDDLE_DOWN)
164DEFINE_EVENT_TYPE(wxEVT_NC_MIDDLE_UP)
165DEFINE_EVENT_TYPE(wxEVT_NC_RIGHT_DOWN)
166DEFINE_EVENT_TYPE(wxEVT_NC_RIGHT_UP)
167DEFINE_EVENT_TYPE(wxEVT_NC_MOTION)
168DEFINE_EVENT_TYPE(wxEVT_NC_ENTER_WINDOW)
169DEFINE_EVENT_TYPE(wxEVT_NC_LEAVE_WINDOW)
170DEFINE_EVENT_TYPE(wxEVT_NC_LEFT_DCLICK)
171DEFINE_EVENT_TYPE(wxEVT_NC_MIDDLE_DCLICK)
172DEFINE_EVENT_TYPE(wxEVT_NC_RIGHT_DCLICK)
0b5eceb6
VZ
173
174// Character input event type
2e4df4bf
VZ
175DEFINE_EVENT_TYPE(wxEVT_CHAR)
176DEFINE_EVENT_TYPE(wxEVT_CHAR_HOOK)
177DEFINE_EVENT_TYPE(wxEVT_NAVIGATION_KEY)
178DEFINE_EVENT_TYPE(wxEVT_KEY_DOWN)
179DEFINE_EVENT_TYPE(wxEVT_KEY_UP)
0b5eceb6
VZ
180
181// Set cursor event
2e4df4bf 182DEFINE_EVENT_TYPE(wxEVT_SET_CURSOR)
0b5eceb6
VZ
183
184// wxScrollbar and wxSlider event identifiers
2e4df4bf
VZ
185DEFINE_EVENT_TYPE(wxEVT_SCROLL_TOP)
186DEFINE_EVENT_TYPE(wxEVT_SCROLL_BOTTOM)
187DEFINE_EVENT_TYPE(wxEVT_SCROLL_LINEUP)
188DEFINE_EVENT_TYPE(wxEVT_SCROLL_LINEDOWN)
189DEFINE_EVENT_TYPE(wxEVT_SCROLL_PAGEUP)
190DEFINE_EVENT_TYPE(wxEVT_SCROLL_PAGEDOWN)
191DEFINE_EVENT_TYPE(wxEVT_SCROLL_THUMBTRACK)
192DEFINE_EVENT_TYPE(wxEVT_SCROLL_THUMBRELEASE)
0b5eceb6
VZ
193
194// Scroll events from wxWindow
2e4df4bf
VZ
195DEFINE_EVENT_TYPE(wxEVT_SCROLLWIN_TOP)
196DEFINE_EVENT_TYPE(wxEVT_SCROLLWIN_BOTTOM)
197DEFINE_EVENT_TYPE(wxEVT_SCROLLWIN_LINEUP)
198DEFINE_EVENT_TYPE(wxEVT_SCROLLWIN_LINEDOWN)
199DEFINE_EVENT_TYPE(wxEVT_SCROLLWIN_PAGEUP)
200DEFINE_EVENT_TYPE(wxEVT_SCROLLWIN_PAGEDOWN)
201DEFINE_EVENT_TYPE(wxEVT_SCROLLWIN_THUMBTRACK)
202DEFINE_EVENT_TYPE(wxEVT_SCROLLWIN_THUMBRELEASE)
0b5eceb6
VZ
203
204// System events
2e4df4bf
VZ
205DEFINE_EVENT_TYPE(wxEVT_SIZE)
206DEFINE_EVENT_TYPE(wxEVT_MOVE)
207DEFINE_EVENT_TYPE(wxEVT_CLOSE_WINDOW)
208DEFINE_EVENT_TYPE(wxEVT_END_SESSION)
209DEFINE_EVENT_TYPE(wxEVT_QUERY_END_SESSION)
210DEFINE_EVENT_TYPE(wxEVT_ACTIVATE_APP)
211DEFINE_EVENT_TYPE(wxEVT_POWER)
212DEFINE_EVENT_TYPE(wxEVT_ACTIVATE)
213DEFINE_EVENT_TYPE(wxEVT_CREATE)
214DEFINE_EVENT_TYPE(wxEVT_DESTROY)
215DEFINE_EVENT_TYPE(wxEVT_SHOW)
216DEFINE_EVENT_TYPE(wxEVT_ICONIZE)
217DEFINE_EVENT_TYPE(wxEVT_MAXIMIZE)
218DEFINE_EVENT_TYPE(wxEVT_MOUSE_CAPTURE_CHANGED)
219DEFINE_EVENT_TYPE(wxEVT_PAINT)
220DEFINE_EVENT_TYPE(wxEVT_ERASE_BACKGROUND)
221DEFINE_EVENT_TYPE(wxEVT_NC_PAINT)
222DEFINE_EVENT_TYPE(wxEVT_PAINT_ICON)
ccef86c7
VZ
223DEFINE_EVENT_TYPE(wxEVT_MENU_OPEN)
224DEFINE_EVENT_TYPE(wxEVT_MENU_CLOSE)
2e4df4bf 225DEFINE_EVENT_TYPE(wxEVT_MENU_HIGHLIGHT)
2e4df4bf
VZ
226DEFINE_EVENT_TYPE(wxEVT_CONTEXT_MENU)
227DEFINE_EVENT_TYPE(wxEVT_SYS_COLOUR_CHANGED)
574c939e 228DEFINE_EVENT_TYPE(wxEVT_DISPLAY_CHANGED)
2e4df4bf
VZ
229DEFINE_EVENT_TYPE(wxEVT_SETTING_CHANGED)
230DEFINE_EVENT_TYPE(wxEVT_QUERY_NEW_PALETTE)
231DEFINE_EVENT_TYPE(wxEVT_PALETTE_CHANGED)
232DEFINE_EVENT_TYPE(wxEVT_JOY_BUTTON_DOWN)
233DEFINE_EVENT_TYPE(wxEVT_JOY_BUTTON_UP)
234DEFINE_EVENT_TYPE(wxEVT_JOY_MOVE)
235DEFINE_EVENT_TYPE(wxEVT_JOY_ZMOVE)
236DEFINE_EVENT_TYPE(wxEVT_DROP_FILES)
237DEFINE_EVENT_TYPE(wxEVT_DRAW_ITEM)
238DEFINE_EVENT_TYPE(wxEVT_MEASURE_ITEM)
239DEFINE_EVENT_TYPE(wxEVT_COMPARE_ITEM)
240DEFINE_EVENT_TYPE(wxEVT_INIT_DIALOG)
241DEFINE_EVENT_TYPE(wxEVT_IDLE)
242DEFINE_EVENT_TYPE(wxEVT_UPDATE_UI)
0b5eceb6
VZ
243
244// Generic command events
245// Note: a click is a higher-level event than button down/up
2e4df4bf
VZ
246DEFINE_EVENT_TYPE(wxEVT_COMMAND_LEFT_CLICK)
247DEFINE_EVENT_TYPE(wxEVT_COMMAND_LEFT_DCLICK)
248DEFINE_EVENT_TYPE(wxEVT_COMMAND_RIGHT_CLICK)
249DEFINE_EVENT_TYPE(wxEVT_COMMAND_RIGHT_DCLICK)
250DEFINE_EVENT_TYPE(wxEVT_COMMAND_SET_FOCUS)
251DEFINE_EVENT_TYPE(wxEVT_COMMAND_KILL_FOCUS)
252DEFINE_EVENT_TYPE(wxEVT_COMMAND_ENTER)
0b5eceb6
VZ
253
254// Help events
2e4df4bf
VZ
255DEFINE_EVENT_TYPE(wxEVT_HELP)
256DEFINE_EVENT_TYPE(wxEVT_DETAILED_HELP)
6164f93c
VZ
257
258#endif // !WXWIN_COMPATIBILITY_EVENT_TYPES
259
260// ============================================================================
261// implementation
262// ============================================================================
0b5eceb6 263
0b5eceb6
VZ
264// ----------------------------------------------------------------------------
265// event initialization
266// ----------------------------------------------------------------------------
267
268int wxNewEventType()
269{
270 // MT-FIXME
271 static int s_lastUsedEventType = wxEVT_FIRST;
272
cbee8f8d
VZ
273#if WXWIN_COMPATIBILITY_2
274 // check that we don't overlap with the user-defined types: if it does
275 // happen, the best solution is probably to update the existing code to
276 // use wxNewEventType() instead of wxEVT_USER_FIRST
6164f93c
VZ
277 //
278 // due to the uncertainty
cbee8f8d
VZ
279 wxASSERT_MSG( s_lastUsedEventType < wxEVT_USER_FIRST - 1,
280 _T("possible event type conflict") );
281#endif // WXWIN_COMPATIBILITY_2
282
0b5eceb6
VZ
283 return s_lastUsedEventType++;
284}
285
8e193f38
VZ
286// ----------------------------------------------------------------------------
287// wxEvent
288// ----------------------------------------------------------------------------
289
c801d85f
KB
290/*
291 * General wxWindows events, covering
292 * all interesting things that might happen (button clicking, resizing,
293 * setting text in widgets, etc.).
294 *
295 * For each completely new event type, derive a new event class.
296 *
297 */
298
8e72b8b5 299wxEvent::wxEvent(int theId, wxEventType commandType )
c801d85f 300{
8e72b8b5 301 m_eventType = commandType;
0b746ba8 302 m_eventObject = (wxObject *) NULL;
0b746ba8
VZ
303 m_timeStamp = 0;
304 m_id = theId;
305 m_skipped = FALSE;
306 m_callbackUserData = (wxObject *) NULL;
193bf013 307 m_isCommandEvent = FALSE;
c801d85f
KB
308}
309
8e72b8b5 310wxEvent::wxEvent(const wxEvent &src)
e6a6feba
GD
311 : wxObject()
312 , m_eventObject(src.m_eventObject)
313 , m_eventType(src.m_eventType)
314 , m_timeStamp(src.m_timeStamp)
315 , m_id(src.m_id)
316 , m_callbackUserData(src.m_callbackUserData)
317 , m_skipped(src.m_skipped)
318 , m_isCommandEvent(src.m_isCommandEvent)
a737331d 319{
a737331d
GL
320}
321
e90c1d2a
VZ
322#if wxUSE_GUI
323
c801d85f
KB
324/*
325 * Command events
326 *
327 */
328
7798a18e 329wxCommandEvent::wxCommandEvent(wxEventType commandType, int theId)
e6a6feba 330 : wxEvent(theId, commandType)
c801d85f 331{
0b746ba8
VZ
332 m_clientData = (char *) NULL;
333 m_clientObject = (wxClientData *) NULL;
334 m_extraLong = 0;
335 m_commandInt = 0;
04392d70 336 m_commandString = wxEmptyString;
193bf013 337 m_isCommandEvent = TRUE;
c801d85f
KB
338}
339
340/*
341 * Scroll events
342 */
343
0b746ba8
VZ
344wxScrollEvent::wxScrollEvent(wxEventType commandType,
345 int id,
346 int pos,
347 int orient)
e6a6feba 348 : wxCommandEvent(commandType, id)
c801d85f 349{
0b746ba8
VZ
350 m_extraLong = orient;
351 m_commandInt = pos;
c801d85f
KB
352}
353
d1367c3d
RR
354/*
355 * ScrollWin events
356 */
357
358wxScrollWinEvent::wxScrollWinEvent(wxEventType commandType,
359 int pos,
360 int orient)
d1367c3d 361{
c5b42c87 362 m_eventType = commandType;
d1367c3d
RR
363 m_extraLong = orient;
364 m_commandInt = pos;
365}
366
c801d85f
KB
367/*
368 * Mouse events
369 *
370 */
371
7798a18e 372wxMouseEvent::wxMouseEvent(wxEventType commandType)
c801d85f 373{
0b746ba8
VZ
374 m_eventType = commandType;
375 m_metaDown = FALSE;
376 m_altDown = FALSE;
377 m_controlDown = FALSE;
378 m_shiftDown = FALSE;
379 m_leftDown = FALSE;
380 m_rightDown = FALSE;
381 m_middleDown = FALSE;
382 m_x = 0;
383 m_y = 0;
d2c52078
RD
384 m_wheelRotation = 0;
385 m_wheelDelta = 0;
386 m_linesPerAction = 0;
c801d85f
KB
387}
388
389// True if was a button dclick event (1 = left, 2 = middle, 3 = right)
390// or any button dclick event (but = -1)
391bool wxMouseEvent::ButtonDClick(int but) const
392{
0b746ba8
VZ
393 switch (but)
394 {
395 case -1:
396 return (LeftDClick() || MiddleDClick() || RightDClick());
397 case 1:
398 return LeftDClick();
399 case 2:
400 return MiddleDClick();
401 case 3:
402 return RightDClick();
403 default:
223d09f6 404 wxFAIL_MSG(wxT("invalid parameter in wxMouseEvent::ButtonDClick"));
0b746ba8
VZ
405 }
406
407 return FALSE;
c801d85f
KB
408}
409
410// True if was a button down event (1 = left, 2 = middle, 3 = right)
411// or any button down event (but = -1)
412bool wxMouseEvent::ButtonDown(int but) const
413{
0b746ba8
VZ
414 switch (but)
415 {
416 case -1:
417 return (LeftDown() || MiddleDown() || RightDown());
418 case 1:
419 return LeftDown();
420 case 2:
421 return MiddleDown();
422 case 3:
423 return RightDown();
424 default:
223d09f6 425 wxFAIL_MSG(wxT("invalid parameter in wxMouseEvent::ButtonDown"));
0b746ba8
VZ
426 }
427
428 return FALSE;
c801d85f
KB
429}
430
431// True if was a button up event (1 = left, 2 = middle, 3 = right)
432// or any button up event (but = -1)
433bool wxMouseEvent::ButtonUp(int but) const
434{
1e6feb95
VZ
435 switch (but)
436 {
0b746ba8
VZ
437 case -1:
438 return (LeftUp() || MiddleUp() || RightUp());
439 case 1:
440 return LeftUp();
441 case 2:
442 return MiddleUp();
443 case 3:
444 return RightUp();
445 default:
223d09f6 446 wxFAIL_MSG(wxT("invalid parameter in wxMouseEvent::ButtonUp"));
0b746ba8
VZ
447 }
448
449 return FALSE;
c801d85f
KB
450}
451
452// True if the given button is currently changing state
453bool wxMouseEvent::Button(int but) const
454{
1e6feb95
VZ
455 switch (but)
456 {
0b746ba8 457 case -1:
72cdf4c9 458 return (ButtonUp(-1) || ButtonDown(-1) || ButtonDClick(-1));
0b746ba8
VZ
459 case 1:
460 return (LeftDown() || LeftUp() || LeftDClick());
461 case 2:
462 return (MiddleDown() || MiddleUp() || MiddleDClick());
463 case 3:
464 return (RightDown() || RightUp() || RightDClick());
465 default:
223d09f6 466 wxFAIL_MSG(wxT("invalid parameter in wxMouseEvent::Button"));
0b746ba8
VZ
467 }
468
469 return FALSE;
c801d85f
KB
470}
471
472bool wxMouseEvent::ButtonIsDown(int but) const
473{
1e6feb95
VZ
474 switch (but)
475 {
0b746ba8
VZ
476 case -1:
477 return (LeftIsDown() || MiddleIsDown() || RightIsDown());
478 case 1:
479 return LeftIsDown();
480 case 2:
481 return MiddleIsDown();
482 case 3:
483 return RightIsDown();
484 default:
223d09f6 485 wxFAIL_MSG(wxT("invalid parameter in wxMouseEvent::ButtonIsDown"));
0b746ba8
VZ
486 }
487
488 return FALSE;
c801d85f
KB
489}
490
1e6feb95
VZ
491int wxMouseEvent::GetButton() const
492{
493 for ( int i = 1; i <= 3; i++ )
494 {
495 if ( Button(i) )
496 {
497 return i;
498 }
499 }
500
501 return -1;
502}
503
c801d85f
KB
504// Find the logical position of the event given the DC
505wxPoint wxMouseEvent::GetLogicalPosition(const wxDC& dc) const
506{
0757d27c
JS
507 wxPoint pt(dc.DeviceToLogicalX(m_x), dc.DeviceToLogicalY(m_y));
508 return pt;
c801d85f
KB
509}
510
511
512/*
8e72b8b5 513 * Keyboard event
c801d85f
KB
514 *
515 */
516
7798a18e 517wxKeyEvent::wxKeyEvent(wxEventType type)
c801d85f 518{
0b746ba8
VZ
519 m_eventType = type;
520 m_shiftDown = FALSE;
521 m_controlDown = FALSE;
522 m_metaDown = FALSE;
523 m_altDown = FALSE;
524 m_keyCode = 0;
b0e813a0 525 m_scanCode = 0;
c801d85f
KB
526}
527
aadbdf11 528
42e69d6b 529wxWindowCreateEvent::wxWindowCreateEvent(wxWindow *win)
42e69d6b 530{
cfe17b74 531 SetEventType(wxEVT_CREATE);
42e69d6b
VZ
532 SetEventObject(win);
533}
534
535wxWindowDestroyEvent::wxWindowDestroyEvent(wxWindow *win)
42e69d6b 536{
cfe17b74 537 SetEventType(wxEVT_DESTROY);
42e69d6b
VZ
538 SetEventObject(win);
539}
540
456bc6d9
VZ
541wxChildFocusEvent::wxChildFocusEvent(wxWindow *win)
542 : wxCommandEvent(wxEVT_CHILD_FOCUS)
543{
544 SetEventObject(win);
545}
546
dd070522
VZ
547#endif // wxUSE_GUI
548
456bc6d9
VZ
549// ----------------------------------------------------------------------------
550// wxEvtHandler
551// ----------------------------------------------------------------------------
552
c801d85f
KB
553/*
554 * Event handler
555 */
556
0b746ba8 557wxEvtHandler::wxEvtHandler()
c801d85f 558{
0b746ba8
VZ
559 m_nextHandler = (wxEvtHandler *) NULL;
560 m_previousHandler = (wxEvtHandler *) NULL;
561 m_enabled = TRUE;
562 m_dynamicEvents = (wxList *) NULL;
193bf013 563 m_isWindow = FALSE;
8e193f38 564 m_pendingEvents = (wxList *) NULL;
7214297d 565#if wxUSE_THREADS
41404da7 566# if !defined(__VISAGECPP__)
8e193f38 567 m_eventsLocker = new wxCriticalSection;
41404da7 568# endif
7214297d 569#endif
b88c44e7
RD
570 // no client data (yet)
571 m_clientData = NULL;
572 m_clientDataType = wxClientData_None;
c801d85f
KB
573}
574
0b746ba8 575wxEvtHandler::~wxEvtHandler()
c801d85f 576{
0b746ba8
VZ
577 // Takes itself out of the list of handlers
578 if (m_previousHandler)
579 m_previousHandler->m_nextHandler = m_nextHandler;
580
581 if (m_nextHandler)
582 m_nextHandler->m_previousHandler = m_previousHandler;
583
584 if (m_dynamicEvents)
fe71f65c 585 {
0b746ba8
VZ
586 wxNode *node = m_dynamicEvents->First();
587 while (node)
588 {
2e4df4bf
VZ
589#if WXWIN_COMPATIBILITY_EVENT_TYPES
590 wxEventTableEntry *entry = (wxEventTableEntry*)node->Data();
591#else // !WXWIN_COMPATIBILITY_EVENT_TYPES
77d4384e 592 wxDynamicEventTableEntry *entry = (wxDynamicEventTableEntry*)node->Data();
2e4df4bf
VZ
593#endif // WXWIN_COMPATIBILITY_EVENT_TYPES/!WXWIN_COMPATIBILITY_EVENT_TYPES
594
595 if (entry->m_callbackUserData)
596 delete entry->m_callbackUserData;
0b746ba8
VZ
597 delete entry;
598 node = node->Next();
599 }
600 delete m_dynamicEvents;
601 };
7214297d 602
8e193f38 603 delete m_pendingEvents;
7214297d 604
8e193f38 605#if wxUSE_THREADS
41404da7 606# if !defined(__VISAGECPP__)
7214297d 607 delete m_eventsLocker;
41404da7 608# endif
7214297d 609#endif
b88c44e7
RD
610
611 // we only delete object data, not untyped
612 if ( m_clientDataType == wxClientData_Object )
613 delete m_clientObject;
c801d85f
KB
614}
615
7214297d 616#if wxUSE_THREADS
aadbdf11 617
7214297d
GL
618bool wxEvtHandler::ProcessThreadEvent(wxEvent& event)
619{
7214297d 620 // check that we are really in a child thread
8e193f38
VZ
621 wxASSERT_MSG( !wxThread::IsMain(),
622 wxT("use ProcessEvent() in main thread") );
623
624 AddPendingEvent(event);
7214297d 625
8e193f38
VZ
626 return TRUE;
627}
628
629#endif // wxUSE_THREADS
630
631void wxEvtHandler::AddPendingEvent(wxEvent& event)
632{
16c1f79c
RR
633 // 1) Add event to list of pending events of this event handler
634
7a5c8ac4
VZ
635 wxEvent *eventCopy = event.Clone();
636
637 // we must be able to copy the events here so the event class must
638 // implement Clone() properly instead of just providing a NULL stab for it
639 wxCHECK_RET( eventCopy,
640 _T("events of this type aren't supposed to be posted") );
641
16c1f79c
RR
642#if defined(__VISAGECPP__)
643 wxENTER_CRIT_SECT( m_eventsLocker);
644#else
645 wxENTER_CRIT_SECT( *m_eventsLocker);
646#endif
647
8e193f38
VZ
648 if ( !m_pendingEvents )
649 m_pendingEvents = new wxList;
7214297d 650
7a5c8ac4 651 m_pendingEvents->Append(eventCopy);
7214297d 652
16c1f79c
RR
653#if defined(__VISAGECPP__)
654 wxLEAVE_CRIT_SECT( m_eventsLocker);
655#else
656 wxLEAVE_CRIT_SECT( *m_eventsLocker);
657#endif
658
659 // 2) Add this event handler to list of event handlers that
660 // have pending events.
cfe17b74 661
b568d04f 662 wxENTER_CRIT_SECT(*wxPendingEventsLocker);
72cdf4c9 663
8e193f38
VZ
664 if ( !wxPendingEvents )
665 wxPendingEvents = new wxList;
4d3a259a 666 wxPendingEvents->Append(this);
72cdf4c9 667
ce6d2511 668 wxLEAVE_CRIT_SECT(*wxPendingEventsLocker);
6164f93c 669
16c1f79c
RR
670 // 3) Inform the system that new pending events are somwehere,
671 // and that these should be processed in idle time.
bf9e3e73 672 wxWakeUpIdle();
7214297d
GL
673}
674
675void wxEvtHandler::ProcessPendingEvents()
676{
41404da7 677#if defined(__VISAGECPP__)
16c1f79c 678 wxENTER_CRIT_SECT( m_eventsLocker);
b568d04f 679#else
16c1f79c 680 wxENTER_CRIT_SECT( *m_eventsLocker);
41404da7 681#endif
8e193f38 682
7214297d 683 wxNode *node = m_pendingEvents->First();
8e193f38
VZ
684 while ( node )
685 {
16c1f79c
RR
686 wxEvent *event = (wxEvent *)node->Data();
687 delete node;
cfe17b74 688
16c1f79c 689 // In ProcessEvent, new events might get added and
6164f93c 690 // we can safely leave the crtical section here.
16c1f79c
RR
691#if defined(__VISAGECPP__)
692 wxLEAVE_CRIT_SECT( m_eventsLocker);
693#else
694 wxLEAVE_CRIT_SECT( *m_eventsLocker);
695#endif
8e193f38 696 ProcessEvent(*event);
9779893b 697 delete event;
16c1f79c
RR
698#if defined(__VISAGECPP__)
699 wxENTER_CRIT_SECT( m_eventsLocker);
700#else
701 wxENTER_CRIT_SECT( *m_eventsLocker);
702#endif
cfe17b74 703
8e193f38 704 node = m_pendingEvents->First();
7214297d 705 }
cfe17b74 706
16c1f79c
RR
707#if defined(__VISAGECPP__)
708 wxLEAVE_CRIT_SECT( m_eventsLocker);
709#else
710 wxLEAVE_CRIT_SECT( *m_eventsLocker);
711#endif
7214297d 712}
7214297d 713
c801d85f
KB
714/*
715 * Event table stuff
716 */
717
718bool wxEvtHandler::ProcessEvent(wxEvent& event)
719{
e90c1d2a 720#if wxUSE_GUI
1a77875b 721
01f944e6
GD
722 // We have to use the actual window or processing events from
723 // wxWindowNative destructor won't work (we don't see the wxWindow class)
1a77875b 724#ifdef __WXDEBUG__
8e193f38 725 // check that our flag corresponds to reality
1a77875b
JS
726 wxClassInfo* info = NULL;
727#ifdef __WXUNIVERSAL__
728# if defined(__WXMSW__)
729 info = CLASSINFO(wxWindowMSW);
730# elif defined(__WXGTK__)
731 info = CLASSINFO(wxWindowGTK);
ea596687
JS
732# elif defined(__WXX11__)
733 info = CLASSINFO(wxWindowX11);
1a77875b
JS
734# elif defined(__WXMGL__)
735 info = CLASSINFO(wxWindowMGL);
19193a2c
KB
736# elif defined(__WXPM__)
737 info = CLASSINFO(wxWindowOS2);
1a77875b
JS
738# elif defined(__WXMAC__)
739 info = CLASSINFO(wxWindowMac);
740# elif defined(__WXMOTIF__)
741 info = CLASSINFO(wxWindowMotif);
742# endif
743#else
744 info = CLASSINFO(wxWindow);
745#endif
746
747 wxASSERT_MSG( m_isWindow == IsKindOf(info),
01f944e6 748 wxString(GetClassInfo()->GetClassName()) + _T(" should [not] be a window but it is [not]") );
1a77875b
JS
749#endif
750
e90c1d2a 751#endif // wxUSE_GUI
0b746ba8 752
8e193f38 753 // An event handler can be enabled or disabled
0b746ba8 754 if ( GetEvtHandlerEnabled() )
c801d85f 755 {
6164f93c 756
924ef850
RR
757#if 0
758/*
759 What is this? When using GUI threads, a non main
760 threads can send an event and process it itself.
761 This breaks GTK's GUI threads, so please explain.
762*/
763
8e193f38
VZ
764 // Check whether we are in a child thread.
765 if ( !wxThread::IsMain() )
7214297d 766 return ProcessThreadEvent(event);
924ef850 767#endif
0757d27c 768
8e193f38 769 // Handle per-instance dynamic event tables first
193bf013 770 if ( m_dynamicEvents && SearchDynamicEventTable(event) )
0757d27c 771 return TRUE;
0b746ba8 772
8e193f38 773 // Then static per-class event tables
0b746ba8
VZ
774 const wxEventTable *table = GetEventTable();
775
e90c1d2a 776#if wxUSE_GUI && wxUSE_VALIDATORS
0b746ba8
VZ
777 // Try the associated validator first, if this is a window.
778 // Problem: if the event handler of the window has been replaced,
779 // this wxEvtHandler may no longer be a window.
780 // Therefore validators won't be processed if the handler
781 // has been replaced with SetEventHandler.
782 // THIS CAN BE CURED if PushEventHandler is used instead of
783 // SetEventHandler, and then processing will be passed down the
784 // chain of event handlers.
ce4169a4 785 if (m_isWindow)
0b746ba8
VZ
786 {
787 wxWindow *win = (wxWindow *)this;
788
789 // Can only use the validator of the window which
790 // is receiving the event
193bf013 791 if ( win == event.GetEventObject() )
0b746ba8 792 {
193bf013
VZ
793 wxValidator *validator = win->GetValidator();
794 if ( validator && validator->ProcessEvent(event) )
795 {
796 return TRUE;
797 }
0b746ba8
VZ
798 }
799 }
ce4169a4 800#endif
0b746ba8
VZ
801
802 // Search upwards through the inheritance hierarchy
ce4169a4 803 while (table)
0b746ba8 804 {
193bf013 805 if ( SearchEventTable((wxEventTable&)*table, event) )
0b746ba8
VZ
806 return TRUE;
807 table = table->baseTable;
808 }
c801d85f
KB
809 }
810
0b746ba8
VZ
811 // Try going down the event handler chain
812 if ( GetNextHandler() )
c801d85f 813 {
0b746ba8
VZ
814 if ( GetNextHandler()->ProcessEvent(event) )
815 return TRUE;
c801d85f 816 }
c801d85f 817
e90c1d2a 818#if wxUSE_GUI
3bdc265d
VZ
819 // Carry on up the parent-child hierarchy, but only if event is a command
820 // event: it wouldn't make sense for a parent to receive a child's size
821 // event, for example
193bf013 822 if ( m_isWindow && event.IsCommandEvent() )
0b746ba8
VZ
823 {
824 wxWindow *win = (wxWindow *)this;
3bdc265d 825
e4b713a2
VZ
826 // honour the requests to stop propagation at this window: this is
827 // used by the dialogs, for example, to prevent processing the events
828 // from the dialog controls in the parent frame which rarely, if ever,
829 // makes sense
830 if ( !(win->GetExtraStyle() & wxWS_EX_BLOCK_EVENTS) )
3bdc265d
VZ
831 {
832 wxWindow *parent = win->GetParent();
e4b713a2 833 if ( parent && !parent->IsBeingDeleted() )
3bdc265d
VZ
834 return parent->GetEventHandler()->ProcessEvent(event);
835 }
0b746ba8 836 }
e90c1d2a 837#endif // wxUSE_GUI
0b746ba8
VZ
838
839 // Last try - application object.
193bf013 840 if ( wxTheApp && (this != wxTheApp) )
0b746ba8 841 {
193bf013
VZ
842 // Special case: don't pass wxEVT_IDLE to wxApp, since it'll always
843 // swallow it. wxEVT_IDLE is sent explicitly to wxApp so it will be
844 // processed appropriately via SearchEventTable.
845 if ( event.GetEventType() != wxEVT_IDLE )
846 {
847 if ( wxTheApp->ProcessEvent(event) )
848 return TRUE;
849 }
0b746ba8
VZ
850 }
851
c801d85f
KB
852 return FALSE;
853}
854
855bool wxEvtHandler::SearchEventTable(wxEventTable& table, wxEvent& event)
856{
68662769
VZ
857 wxEventType eventType = event.GetEventType();
858 int eventId = event.GetId();
0b746ba8 859
68662769
VZ
860 // BC++ doesn't like testing for m_fn without != 0
861 for ( int i = 0; table.entries[i].m_fn != 0; i++ )
c801d85f 862 {
6e58645e
VZ
863 // the line using reference exposes a bug in gcc: although it _seems_
864 // to work, it leads to weird crashes later on during program
865 // execution
866#ifdef __GNUG__
867 wxEventTableEntry entry = table.entries[i];
868#else
68662769 869 const wxEventTableEntry& entry = table.entries[i];
6e58645e 870#endif
68662769
VZ
871
872 // match only if the event type is the same and the id is either -1 in
873 // the event table (meaning "any") or the event id matches the id
874 // specified in the event table either exactly or by falling into
875 // range between first and last
876 if ( eventType == entry.m_eventType )
0b746ba8 877 {
68662769
VZ
878 int tableId1 = entry.m_id,
879 tableId2 = entry.m_lastId;
880
881 if ( (tableId1 == -1) ||
882 (tableId2 == -1 && eventId == tableId1) ||
883 (tableId2 != -1 &&
884 (eventId >= tableId1 && eventId <= tableId2)) )
885 {
886 event.Skip(FALSE);
887 event.m_callbackUserData = entry.m_callbackUserData;
0b746ba8 888
68662769 889 (this->*((wxEventFunction) (entry.m_fn)))(event);
0b746ba8 890
68662769
VZ
891 return !event.GetSkipped();
892 }
0b746ba8 893 }
c801d85f 894 }
68662769 895
0b746ba8 896 return FALSE;
c801d85f 897}
97d7bfb8 898
debe6624 899void wxEvtHandler::Connect( int id, int lastId,
77d4384e 900 int eventType,
0b746ba8
VZ
901 wxObjectEventFunction func,
902 wxObject *userData )
fe71f65c 903{
cbee8f8d 904#if WXWIN_COMPATIBILITY_EVENT_TYPES
2e4df4bf 905 wxEventTableEntry *entry = new wxEventTableEntry;
cbee8f8d
VZ
906 entry->m_eventType = eventType;
907 entry->m_id = id;
908 entry->m_lastId = lastId;
909 entry->m_fn = func;
910 entry->m_callbackUserData = userData;
911#else // !WXWIN_COMPATIBILITY_EVENT_TYPES
0b5eceb6
VZ
912 wxDynamicEventTableEntry *entry =
913 new wxDynamicEventTableEntry(eventType, id, lastId, func, userData);
cbee8f8d 914#endif // WXWIN_COMPATIBILITY_EVENT_TYPES/!WXWIN_COMPATIBILITY_EVENT_TYPES
0b746ba8
VZ
915
916 if (!m_dynamicEvents)
917 m_dynamicEvents = new wxList;
918
919 m_dynamicEvents->Append( (wxObject*) entry );
fe71f65c 920}
97d7bfb8
RR
921
922bool wxEvtHandler::Disconnect( int id, int lastId, wxEventType eventType,
923 wxObjectEventFunction func,
924 wxObject *userData )
925{
926 if (!m_dynamicEvents)
927 return FALSE;
cfe17b74 928
97d7bfb8
RR
929 wxNode *node = m_dynamicEvents->First();
930 while (node)
931 {
2e4df4bf
VZ
932#if WXWIN_COMPATIBILITY_EVENT_TYPES
933 wxEventTableEntry *entry = (wxEventTableEntry*)node->Data();
934#else // !WXWIN_COMPATIBILITY_EVENT_TYPES
935 wxDynamicEventTableEntry *entry = (wxDynamicEventTableEntry*)node->Data();
936#endif // WXWIN_COMPATIBILITY_EVENT_TYPES/!WXWIN_COMPATIBILITY_EVENT_TYPES
937
97d7bfb8
RR
938 if ((entry->m_id == id) &&
939 ((entry->m_lastId == lastId) || (lastId == -1)) &&
940 ((entry->m_eventType == eventType) || (eventType == wxEVT_NULL)) &&
941 ((entry->m_fn == func) || (func == (wxObjectEventFunction)NULL)) &&
942 ((entry->m_callbackUserData == userData) || (userData == (wxObject*)NULL)))
943 {
2e4df4bf
VZ
944 if (entry->m_callbackUserData)
945 delete entry->m_callbackUserData;
97d7bfb8
RR
946 m_dynamicEvents->DeleteNode( node );
947 delete entry;
948 return TRUE;
949 }
950 node = node->Next();
951 }
952 return FALSE;
953}
fe71f65c
RR
954
955bool wxEvtHandler::SearchDynamicEventTable( wxEvent& event )
956{
193bf013 957 wxCHECK_MSG( m_dynamicEvents, FALSE,
223d09f6 958 wxT("caller should check that we have dynamic events") );
0b746ba8
VZ
959
960 int commandId = event.GetId();
961
962 wxNode *node = m_dynamicEvents->First();
963 while (node)
fe71f65c 964 {
2e4df4bf
VZ
965#if WXWIN_COMPATIBILITY_EVENT_TYPES
966 wxEventTableEntry *entry = (wxEventTableEntry*)node->Data();
967#else // !WXWIN_COMPATIBILITY_EVENT_TYPES
968 wxDynamicEventTableEntry *entry = (wxDynamicEventTableEntry*)node->Data();
969#endif // WXWIN_COMPATIBILITY_EVENT_TYPES/!WXWIN_COMPATIBILITY_EVENT_TYPES
0b746ba8
VZ
970
971 if (entry->m_fn)
972 {
973 // Match, if event spec says any id will do (id == -1)
974 if ( (event.GetEventType() == entry->m_eventType) &&
975 (entry->m_id == -1 ||
976 (entry->m_lastId == -1 && commandId == entry->m_id) ||
977 (entry->m_lastId != -1 &&
978 (commandId >= entry->m_id && commandId <= entry->m_lastId))) )
979 {
980 event.Skip(FALSE);
981 event.m_callbackUserData = entry->m_callbackUserData;
982
983 (this->*((wxEventFunction) (entry->m_fn)))(event);
984
985 if (event.GetSkipped())
986 return FALSE;
987 else
988 return TRUE;
989 }
990 }
991 node = node->Next();
7b678698 992 }
0b746ba8 993 return FALSE;
fe71f65c
RR
994};
995
b88c44e7
RD
996void wxEvtHandler::DoSetClientObject( wxClientData *data )
997{
998 wxASSERT_MSG( m_clientDataType != wxClientData_Void,
999 wxT("can't have both object and void client data") );
1000
1001 if ( m_clientObject )
1002 delete m_clientObject;
1003
1004 m_clientObject = data;
1005 m_clientDataType = wxClientData_Object;
1006}
1007
1008wxClientData *wxEvtHandler::DoGetClientObject() const
1009{
1010 // it's not an error to call GetClientObject() on a window which doesn't
1011 // have client data at all - NULL will be returned
1012 wxASSERT_MSG( m_clientDataType != wxClientData_Void,
1013 wxT("this window doesn't have object client data") );
1014
1015 return m_clientObject;
1016}
1017
1018void wxEvtHandler::DoSetClientData( void *data )
1019{
1020 wxASSERT_MSG( m_clientDataType != wxClientData_Object,
1021 wxT("can't have both object and void client data") );
1022
1023 m_clientData = data;
1024 m_clientDataType = wxClientData_Void;
1025}
1026
1027void *wxEvtHandler::DoGetClientData() const
1028{
1029 // it's not an error to call GetClientData() on a window which doesn't have
1030 // client data at all - NULL will be returned
1031 wxASSERT_MSG( m_clientDataType != wxClientData_Object,
1032 wxT("this window doesn't have void client data") );
1033
1034 return m_clientData;
1035}
1036
1037
e3065973 1038#if WXWIN_COMPATIBILITY
0b746ba8 1039bool wxEvtHandler::OnClose()
c801d85f 1040{
0b746ba8
VZ
1041 if (GetNextHandler())
1042 return GetNextHandler()->OnClose();
1043 else
1044 return FALSE;
c801d85f 1045}
193bf013 1046#endif // WXWIN_COMPATIBILITY
e3065973 1047
e90c1d2a
VZ
1048#if wxUSE_GUI
1049
e702ff0f
JS
1050// Find a window with the focus, that is also a descendant of the given window.
1051// This is used to determine the window to initially send commands to.
1052wxWindow* wxFindFocusDescendant(wxWindow* ancestor)
1053{
1054 // Process events starting with the window with the focus, if any.
1055 wxWindow* focusWin = wxWindow::FindFocus();
1056 wxWindow* win = focusWin;
1057
1058 // Check if this is a descendant of this frame.
1059 // If not, win will be set to NULL.
1060 while (win)
1061 {
1062 if (win == ancestor)
1063 break;
1064 else
1065 win = win->GetParent();
1066 }
1067 if (win == (wxWindow*) NULL)
1068 focusWin = (wxWindow*) NULL;
1069
1070 return focusWin;
1071}
1072
e90c1d2a 1073#endif // wxUSE_GUI