]> git.saurik.com Git - wxWidgets.git/blob - src/common/event.cpp
* prgodlgg.h: Update() use wxString instead of 'char *'
[wxWidgets.git] / src / common / event.cpp
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
9 // Licence: wxWindows licence
10 /////////////////////////////////////////////////////////////////////////////
11
12 #ifdef __GNUG__
13 #pragma implementation "event.h"
14 #endif
15
16 // For compilers that support precompilation, includes "wx.h".
17 #include "wx/wxprec.h"
18
19 #ifdef __BORLANDC__
20 #pragma hdrstop
21 #endif
22
23 #ifndef WX_PRECOMP
24 #include "wx/defs.h"
25 #include "wx/control.h"
26 #include "wx/utils.h"
27 #include "wx/app.h"
28 #include "wx/dc.h"
29 #endif
30
31 #include "wx/event.h"
32 #include "wx/validate.h"
33
34 #if !USE_SHARED_LIBRARY
35 IMPLEMENT_DYNAMIC_CLASS(wxEvtHandler, wxObject)
36 IMPLEMENT_ABSTRACT_CLASS(wxEvent, wxObject)
37 IMPLEMENT_DYNAMIC_CLASS(wxCommandEvent, wxEvent)
38 IMPLEMENT_DYNAMIC_CLASS(wxNotifyEvent, wxCommandEvent)
39 IMPLEMENT_DYNAMIC_CLASS(wxScrollEvent, wxCommandEvent)
40 IMPLEMENT_DYNAMIC_CLASS(wxScrollWinEvent, wxEvent)
41 IMPLEMENT_DYNAMIC_CLASS(wxMouseEvent, wxEvent)
42 IMPLEMENT_DYNAMIC_CLASS(wxKeyEvent, wxEvent)
43 IMPLEMENT_DYNAMIC_CLASS(wxSizeEvent, wxEvent)
44 IMPLEMENT_DYNAMIC_CLASS(wxPaintEvent, wxEvent)
45 IMPLEMENT_DYNAMIC_CLASS(wxEraseEvent, wxEvent)
46 IMPLEMENT_DYNAMIC_CLASS(wxMoveEvent, wxEvent)
47 IMPLEMENT_DYNAMIC_CLASS(wxFocusEvent, wxEvent)
48 IMPLEMENT_DYNAMIC_CLASS(wxCloseEvent, wxEvent)
49 IMPLEMENT_DYNAMIC_CLASS(wxShowEvent, wxEvent)
50 IMPLEMENT_DYNAMIC_CLASS(wxMaximizeEvent, wxEvent)
51 IMPLEMENT_DYNAMIC_CLASS(wxIconizeEvent, wxEvent)
52 IMPLEMENT_DYNAMIC_CLASS(wxMenuEvent, wxEvent)
53 IMPLEMENT_DYNAMIC_CLASS(wxJoystickEvent, wxEvent)
54 IMPLEMENT_DYNAMIC_CLASS(wxDropFilesEvent, wxEvent)
55 IMPLEMENT_DYNAMIC_CLASS(wxActivateEvent, wxEvent)
56 IMPLEMENT_DYNAMIC_CLASS(wxInitDialogEvent, wxEvent)
57 IMPLEMENT_DYNAMIC_CLASS(wxSysColourChangedEvent, wxEvent)
58 IMPLEMENT_DYNAMIC_CLASS(wxIdleEvent, wxEvent)
59 IMPLEMENT_DYNAMIC_CLASS(wxUpdateUIEvent, wxCommandEvent)
60 IMPLEMENT_DYNAMIC_CLASS(wxNavigationKeyEvent, wxCommandEvent)
61 IMPLEMENT_DYNAMIC_CLASS(wxPaletteChangedEvent, wxEvent)
62 IMPLEMENT_DYNAMIC_CLASS(wxQueryNewPaletteEvent, wxEvent)
63
64 const wxEventTable *wxEvtHandler::GetEventTable() const
65 { return &wxEvtHandler::sm_eventTable; }
66
67 const wxEventTable wxEvtHandler::sm_eventTable =
68 { (const wxEventTable *)NULL, &wxEvtHandler::sm_eventTableEntries[0] };
69
70 const wxEventTableEntry wxEvtHandler::sm_eventTableEntries[] =
71 { { 0, 0, 0, (wxObjectEventFunction) NULL, (wxObject*) NULL } };
72
73 #endif // !USE_SHARED_LIBRARY
74
75 #if wxUSE_THREADS
76 /* To put pending event handlers */
77 extern wxList *wxPendingEvents;
78 extern wxCriticalSection *wxPendingEventsLocker;
79 #endif
80
81 /*
82 * General wxWindows events, covering
83 * all interesting things that might happen (button clicking, resizing,
84 * setting text in widgets, etc.).
85 *
86 * For each completely new event type, derive a new event class.
87 *
88 */
89
90 wxEvent::wxEvent(int theId)
91 {
92 m_eventType = wxEVT_NULL;
93 m_eventObject = (wxObject *) NULL;
94 m_eventHandle = (char *) NULL;
95 m_timeStamp = 0;
96 m_id = theId;
97 m_skipped = FALSE;
98 m_callbackUserData = (wxObject *) NULL;
99 m_isCommandEvent = FALSE;
100 }
101
102 void wxEvent::CopyObject(wxObject& object_dest) const
103 {
104 wxEvent *obj = (wxEvent *)&object_dest;
105 wxObject::CopyObject(object_dest);
106
107 obj->m_eventType = m_eventType;
108 obj->m_eventObject = m_eventObject;
109 obj->m_eventHandle = m_eventHandle;
110 obj->m_timeStamp = m_timeStamp;
111 obj->m_id = m_id;
112 obj->m_skipped = m_skipped;
113 obj->m_callbackUserData = m_callbackUserData;
114 obj->m_isCommandEvent = m_isCommandEvent;
115 }
116
117 /*
118 * Command events
119 *
120 */
121
122 wxCommandEvent::wxCommandEvent(wxEventType commandType, int theId)
123 {
124 m_eventType = commandType;
125 m_clientData = (char *) NULL;
126 m_clientObject = (wxClientData *) NULL;
127 m_extraLong = 0;
128 m_commandInt = 0;
129 m_id = theId;
130 m_commandString = (wxChar *) NULL;
131 m_isCommandEvent = TRUE;
132 }
133
134 void wxCommandEvent::CopyObject(wxObject& obj_d) const
135 {
136 wxCommandEvent *obj = (wxCommandEvent *)&obj_d;
137
138 wxEvent::CopyObject(obj_d);
139
140 obj->m_clientData = m_clientData;
141 obj->m_clientObject = m_clientObject;
142 obj->m_extraLong = m_extraLong;
143 obj->m_commandInt = m_commandInt;
144 }
145
146 /*
147 * Scroll events
148 */
149
150 wxScrollEvent::wxScrollEvent(wxEventType commandType,
151 int id,
152 int pos,
153 int orient)
154 : wxCommandEvent(commandType, id)
155 {
156 m_extraLong = orient;
157 m_commandInt = pos;
158 }
159
160 /*
161 * ScrollWin events
162 */
163
164 wxScrollWinEvent::wxScrollWinEvent(wxEventType commandType,
165 int pos,
166 int orient)
167 : wxEvent(commandType)
168 {
169 m_extraLong = orient;
170 m_commandInt = pos;
171 }
172
173 /*
174 * Mouse events
175 *
176 */
177
178 wxMouseEvent::wxMouseEvent(wxEventType commandType)
179 {
180 m_eventType = commandType;
181 m_metaDown = FALSE;
182 m_altDown = FALSE;
183 m_controlDown = FALSE;
184 m_shiftDown = FALSE;
185 m_leftDown = FALSE;
186 m_rightDown = FALSE;
187 m_middleDown = FALSE;
188 m_x = 0;
189 m_y = 0;
190 }
191
192 void wxMouseEvent::CopyObject(wxObject& obj_d) const
193 {
194 wxMouseEvent *obj = (wxMouseEvent *)&obj_d;
195
196 wxEvent::CopyObject(obj_d);
197
198 obj->m_metaDown = m_metaDown;
199 obj->m_altDown = m_altDown;
200 obj->m_controlDown = m_controlDown;
201 obj->m_shiftDown = m_shiftDown;
202 obj->m_leftDown = m_leftDown;
203 obj->m_rightDown = m_rightDown;
204 obj->m_middleDown = m_middleDown;
205 obj->m_x = m_x;
206 obj->m_y = m_y;
207 }
208
209 // True if was a button dclick event (1 = left, 2 = middle, 3 = right)
210 // or any button dclick event (but = -1)
211 bool wxMouseEvent::ButtonDClick(int but) const
212 {
213 switch (but)
214 {
215 case -1:
216 return (LeftDClick() || MiddleDClick() || RightDClick());
217 case 1:
218 return LeftDClick();
219 case 2:
220 return MiddleDClick();
221 case 3:
222 return RightDClick();
223 default:
224 wxFAIL_MSG(_T("invalid parameter in wxMouseEvent::ButtonDClick"));
225 }
226
227 return FALSE;
228 }
229
230 // True if was a button down event (1 = left, 2 = middle, 3 = right)
231 // or any button down event (but = -1)
232 bool wxMouseEvent::ButtonDown(int but) const
233 {
234 switch (but)
235 {
236 case -1:
237 return (LeftDown() || MiddleDown() || RightDown());
238 case 1:
239 return LeftDown();
240 case 2:
241 return MiddleDown();
242 case 3:
243 return RightDown();
244 default:
245 wxFAIL_MSG(_T("invalid parameter in wxMouseEvent::ButtonDown"));
246 }
247
248 return FALSE;
249 }
250
251 // True if was a button up event (1 = left, 2 = middle, 3 = right)
252 // or any button up event (but = -1)
253 bool wxMouseEvent::ButtonUp(int but) const
254 {
255 switch (but) {
256 case -1:
257 return (LeftUp() || MiddleUp() || RightUp());
258 case 1:
259 return LeftUp();
260 case 2:
261 return MiddleUp();
262 case 3:
263 return RightUp();
264 default:
265 wxFAIL_MSG(_T("invalid parameter in wxMouseEvent::ButtonUp"));
266 }
267
268 return FALSE;
269 }
270
271 // True if the given button is currently changing state
272 bool wxMouseEvent::Button(int but) const
273 {
274 switch (but) {
275 case -1:
276 return (ButtonUp(-1) || ButtonDown(-1) || ButtonDClick(-1)) ;
277 case 1:
278 return (LeftDown() || LeftUp() || LeftDClick());
279 case 2:
280 return (MiddleDown() || MiddleUp() || MiddleDClick());
281 case 3:
282 return (RightDown() || RightUp() || RightDClick());
283 default:
284 wxFAIL_MSG(_T("invalid parameter in wxMouseEvent::Button"));
285 }
286
287 return FALSE;
288 }
289
290 bool wxMouseEvent::ButtonIsDown(int but) const
291 {
292 switch (but) {
293 case -1:
294 return (LeftIsDown() || MiddleIsDown() || RightIsDown());
295 case 1:
296 return LeftIsDown();
297 case 2:
298 return MiddleIsDown();
299 case 3:
300 return RightIsDown();
301 default:
302 wxFAIL_MSG(_T("invalid parameter in wxMouseEvent::ButtonIsDown"));
303 }
304
305 return FALSE;
306 }
307
308 // Find the logical position of the event given the DC
309 wxPoint wxMouseEvent::GetLogicalPosition(const wxDC& dc) const
310 {
311 wxPoint pt(dc.DeviceToLogicalX(m_x), dc.DeviceToLogicalY(m_y));
312 return pt;
313 }
314
315
316 /*
317 * Keyboard events
318 *
319 */
320
321 wxKeyEvent::wxKeyEvent(wxEventType type)
322 {
323 m_eventType = type;
324 m_shiftDown = FALSE;
325 m_controlDown = FALSE;
326 m_metaDown = FALSE;
327 m_altDown = FALSE;
328 m_keyCode = 0;
329 m_scanCode = 0;
330 }
331
332 void wxKeyEvent::CopyObject(wxObject& obj_d) const
333 {
334 wxKeyEvent *obj = (wxKeyEvent *)&obj_d;
335 wxEvent::CopyObject(obj_d);
336
337 obj->m_shiftDown = m_shiftDown;
338 obj->m_controlDown = m_controlDown;
339 obj->m_metaDown = m_metaDown;
340 obj->m_altDown = m_altDown;
341 obj->m_keyCode = m_keyCode;
342 }
343
344
345 /*
346 * Misc events
347 */
348
349 void wxSizeEvent::CopyObject(wxObject& obj_d) const
350 {
351 wxSizeEvent *obj = (wxSizeEvent *)&obj_d;
352 wxEvent::CopyObject(obj_d);
353
354 obj->m_size = m_size;
355 }
356
357 void wxMoveEvent::CopyObject(wxObject& obj_d) const
358 {
359 wxMoveEvent *obj = (wxMoveEvent *)&obj_d;
360 wxEvent::CopyObject(obj_d);
361
362 obj->m_pos = m_pos;
363 }
364
365 void wxEraseEvent::CopyObject(wxObject& obj_d) const
366 {
367 wxEraseEvent *obj = (wxEraseEvent *)&obj_d;
368 wxEvent::CopyObject(obj_d);
369
370 obj->m_dc = m_dc;
371 }
372
373 void wxActivateEvent::CopyObject(wxObject& obj_d) const
374 {
375 wxActivateEvent *obj = (wxActivateEvent *)&obj_d;
376 wxEvent::CopyObject(obj_d);
377
378 obj->m_active = m_active;
379 }
380
381 void wxMenuEvent::CopyObject(wxObject& obj_d) const
382 {
383 wxMenuEvent *obj = (wxMenuEvent *)&obj_d;
384 wxEvent::CopyObject(obj_d);
385
386 obj->m_menuId = m_menuId;
387 }
388
389 void wxCloseEvent::CopyObject(wxObject& obj_d) const
390 {
391 wxCloseEvent *obj = (wxCloseEvent *)&obj_d;
392 wxEvent::CopyObject(obj_d);
393
394 obj->m_loggingOff = m_loggingOff;
395 obj->m_veto = m_veto;
396 #if WXWIN_COMPATIBILITY
397 obj->m_force = m_force;
398 #endif
399 obj->m_canVeto = m_canVeto;
400 }
401
402 void wxShowEvent::CopyObject(wxObject& obj_d) const
403 {
404 wxShowEvent *obj = (wxShowEvent *)&obj_d;
405 wxEvent::CopyObject(obj_d);
406
407 obj->m_show = m_show;
408 }
409
410 void wxJoystickEvent::CopyObject(wxObject& obj_d) const
411 {
412 wxJoystickEvent *obj = (wxJoystickEvent *)&obj_d;
413 wxEvent::CopyObject(obj_d);
414
415 obj->m_pos = m_pos;
416 obj->m_zPosition = m_zPosition;
417 obj->m_buttonChange = m_buttonChange;
418 obj->m_buttonState = m_buttonState;
419 obj->m_joyStick = m_joyStick;
420 }
421
422 void wxDropFilesEvent::CopyObject(wxObject& obj_d) const
423 {
424 wxDropFilesEvent *obj = (wxDropFilesEvent *)&obj_d;
425 wxEvent::CopyObject(obj_d);
426
427 obj->m_noFiles = m_noFiles;
428 obj->m_pos = m_pos;
429 // TODO: Problem with obj->m_files. It should be deallocated by the
430 // destructor of the event.
431 }
432
433 void wxIdleEvent::CopyObject(wxObject& obj_d) const
434 {
435 wxIdleEvent *obj = (wxIdleEvent *)&obj_d;
436 wxEvent::CopyObject(obj_d);
437
438 obj->m_requestMore = m_requestMore;
439 }
440
441 void wxUpdateUIEvent::CopyObject(wxObject &obj_d) const
442 {
443 wxUpdateUIEvent *obj = (wxUpdateUIEvent *)&obj_d;
444 wxEvent::CopyObject(obj_d);
445
446 obj->m_checked = m_checked;
447 obj->m_enabled = m_enabled;
448 obj->m_text = m_text;
449 obj->m_setText = m_setText;
450 obj->m_setChecked = m_setChecked;
451 obj->m_setEnabled = m_setEnabled;
452 }
453
454 void wxPaletteChangedEvent::CopyObject(wxObject &obj_d) const
455 {
456 wxPaletteChangedEvent *obj = (wxPaletteChangedEvent *)&obj_d;
457 wxEvent::CopyObject(obj_d);
458
459 obj->m_changedWindow = m_changedWindow;
460 }
461
462 void wxQueryNewPaletteEvent::CopyObject(wxObject& obj_d) const
463 {
464 wxQueryNewPaletteEvent *obj = (wxQueryNewPaletteEvent *)&obj_d;
465 wxEvent::CopyObject(obj_d);
466
467 obj->m_paletteRealized = m_paletteRealized;
468 }
469
470 /*
471 * Event handler
472 */
473
474 wxEvtHandler::wxEvtHandler()
475 {
476 m_nextHandler = (wxEvtHandler *) NULL;
477 m_previousHandler = (wxEvtHandler *) NULL;
478 m_enabled = TRUE;
479 m_dynamicEvents = (wxList *) NULL;
480 m_isWindow = FALSE;
481 #if wxUSE_THREADS
482 m_eventsLocker = new wxCriticalSection();
483 #endif
484 m_pendingEvents = (wxList *) NULL;
485 }
486
487 wxEvtHandler::~wxEvtHandler()
488 {
489 // Takes itself out of the list of handlers
490 if (m_previousHandler)
491 m_previousHandler->m_nextHandler = m_nextHandler;
492
493 if (m_nextHandler)
494 m_nextHandler->m_previousHandler = m_previousHandler;
495
496 if (m_dynamicEvents)
497 {
498 wxNode *node = m_dynamicEvents->First();
499 while (node)
500 {
501 wxEventTableEntry *entry = (wxEventTableEntry*)node->Data();
502 if (entry->m_callbackUserData) delete entry->m_callbackUserData;
503 delete entry;
504 node = node->Next();
505 }
506 delete m_dynamicEvents;
507 };
508
509 #if wxUSE_THREADS
510 if (m_pendingEvents)
511 delete m_pendingEvents;
512
513 delete m_eventsLocker;
514 #endif
515 }
516
517 #if wxUSE_THREADS
518
519 #ifdef __WXGTK__
520 extern bool g_isIdle;
521
522 extern void wxapp_install_idle_handler();
523 #endif
524
525 bool wxEvtHandler::ProcessThreadEvent(wxEvent& event)
526 {
527 wxEvent *event_main;
528 wxCriticalSectionLocker locker(*m_eventsLocker);
529
530 // check that we are really in a child thread
531 wxASSERT( !wxThread::IsMain() );
532
533 if (m_pendingEvents == NULL)
534 m_pendingEvents = new wxList();
535
536 event_main = (wxEvent *)event.Clone();
537
538 m_pendingEvents->Append(event_main);
539
540 wxPendingEventsLocker->Enter();
541 wxPendingEvents->Append(this);
542 wxPendingEventsLocker->Leave();
543
544 #ifdef __WXGTK__
545 // if (g_isIdle) wxapp_install_idle_handler();
546 #endif
547
548 return TRUE;
549 }
550
551 void wxEvtHandler::ProcessPendingEvents()
552 {
553 wxCriticalSectionLocker locker(*m_eventsLocker);
554 wxNode *node = m_pendingEvents->First();
555 wxEvent *event;
556
557 while (node != NULL) {
558 event = (wxEvent *)node->Data();
559 ProcessEvent(*event);
560 delete node;
561 node = m_pendingEvents->First();
562 }
563 }
564 #endif
565
566 /*
567 * Event table stuff
568 */
569
570 bool wxEvtHandler::ProcessEvent(wxEvent& event)
571 {
572 // check that our flag corresponds to reality
573 wxASSERT( m_isWindow == IsKindOf(CLASSINFO(wxWindow)) );
574
575 // An event handler can be enabled or disabled
576 if ( GetEvtHandlerEnabled() )
577 {
578 #if wxUSE_THREADS
579 // Check whether we are in a child thread.
580 if (!wxThread::IsMain())
581 return ProcessThreadEvent(event);
582 #endif
583 // Handle per-instance dynamic event tables first
584
585 if ( m_dynamicEvents && SearchDynamicEventTable(event) )
586 return TRUE;
587
588 // Then static per-class event tables
589
590 const wxEventTable *table = GetEventTable();
591
592 // Try the associated validator first, if this is a window.
593 // Problem: if the event handler of the window has been replaced,
594 // this wxEvtHandler may no longer be a window.
595 // Therefore validators won't be processed if the handler
596 // has been replaced with SetEventHandler.
597 // THIS CAN BE CURED if PushEventHandler is used instead of
598 // SetEventHandler, and then processing will be passed down the
599 // chain of event handlers.
600 if ( m_isWindow )
601 {
602 wxWindow *win = (wxWindow *)this;
603
604 // Can only use the validator of the window which
605 // is receiving the event
606 if ( win == event.GetEventObject() )
607 {
608 wxValidator *validator = win->GetValidator();
609 if ( validator && validator->ProcessEvent(event) )
610 {
611 return TRUE;
612 }
613 }
614 }
615
616 // Search upwards through the inheritance hierarchy
617 while ( table )
618 {
619 if ( SearchEventTable((wxEventTable&)*table, event) )
620 return TRUE;
621 table = table->baseTable;
622 }
623 }
624
625 // Try going down the event handler chain
626 if ( GetNextHandler() )
627 {
628 if ( GetNextHandler()->ProcessEvent(event) )
629 return TRUE;
630 }
631
632 // Carry on up the parent-child hierarchy,
633 // but only if event is a command event: it wouldn't
634 // make sense for a parent to receive a child's size event, for example
635 if ( m_isWindow && event.IsCommandEvent() )
636 {
637 wxWindow *win = (wxWindow *)this;
638 wxWindow *parent = win->GetParent();
639 if (parent && !parent->IsBeingDeleted())
640 return parent->GetEventHandler()->ProcessEvent(event);
641 }
642
643 // Last try - application object.
644 if ( wxTheApp && (this != wxTheApp) )
645 {
646 // Special case: don't pass wxEVT_IDLE to wxApp, since it'll always
647 // swallow it. wxEVT_IDLE is sent explicitly to wxApp so it will be
648 // processed appropriately via SearchEventTable.
649 if ( event.GetEventType() != wxEVT_IDLE )
650 {
651 if ( wxTheApp->ProcessEvent(event) )
652 return TRUE;
653 }
654 }
655
656 return FALSE;
657 }
658
659 bool wxEvtHandler::SearchEventTable(wxEventTable& table, wxEvent& event)
660 {
661 int i = 0;
662 int commandId = event.GetId();
663
664 // BC++ doesn't like while (table.entries[i].m_fn)
665
666 #ifdef __SC__
667 while (table.entries[i].m_fn != 0)
668 #else
669 while (table.entries[i].m_fn != 0L)
670 #endif
671 {
672 if ((event.GetEventType() == table.entries[i].m_eventType) &&
673 (table.entries[i].m_id == -1 || // Match, if event spec says any id will do (id == -1)
674 (table.entries[i].m_lastId == -1 && commandId == table.entries[i].m_id) ||
675 (table.entries[i].m_lastId != -1 &&
676 (commandId >= table.entries[i].m_id && commandId <= table.entries[i].m_lastId))))
677 {
678 event.Skip(FALSE);
679 event.m_callbackUserData = table.entries[i].m_callbackUserData;
680
681 (this->*((wxEventFunction) (table.entries[i].m_fn)))(event);
682
683 if ( event.GetSkipped() )
684 return FALSE;
685 else
686 return TRUE;
687 }
688 i++;
689 }
690 return FALSE;
691 }
692 void wxEvtHandler::Connect( int id, int lastId,
693 wxEventType eventType,
694 wxObjectEventFunction func,
695 wxObject *userData )
696 {
697 wxEventTableEntry *entry = new wxEventTableEntry;
698 entry->m_id = id;
699 entry->m_lastId = lastId;
700 entry->m_eventType = eventType;
701 entry->m_fn = func;
702 entry->m_callbackUserData = userData;
703
704 if (!m_dynamicEvents)
705 m_dynamicEvents = new wxList;
706
707 m_dynamicEvents->Append( (wxObject*) entry );
708 }
709
710 bool wxEvtHandler::SearchDynamicEventTable( wxEvent& event )
711 {
712 wxCHECK_MSG( m_dynamicEvents, FALSE,
713 _T("caller should check that we have dynamic events") );
714
715 int commandId = event.GetId();
716
717 wxNode *node = m_dynamicEvents->First();
718 while (node)
719 {
720 wxEventTableEntry *entry = (wxEventTableEntry*)node->Data();
721
722 if (entry->m_fn)
723 {
724 // Match, if event spec says any id will do (id == -1)
725 if ( (event.GetEventType() == entry->m_eventType) &&
726 (entry->m_id == -1 ||
727 (entry->m_lastId == -1 && commandId == entry->m_id) ||
728 (entry->m_lastId != -1 &&
729 (commandId >= entry->m_id && commandId <= entry->m_lastId))) )
730 {
731 event.Skip(FALSE);
732 event.m_callbackUserData = entry->m_callbackUserData;
733
734 (this->*((wxEventFunction) (entry->m_fn)))(event);
735
736 if (event.GetSkipped())
737 return FALSE;
738 else
739 return TRUE;
740 }
741 }
742 node = node->Next();
743 }
744 return FALSE;
745 };
746
747 #if WXWIN_COMPATIBILITY
748 bool wxEvtHandler::OnClose()
749 {
750 if (GetNextHandler())
751 return GetNextHandler()->OnClose();
752 else
753 return FALSE;
754 }
755 #endif // WXWIN_COMPATIBILITY
756
757 // Find a window with the focus, that is also a descendant of the given window.
758 // This is used to determine the window to initially send commands to.
759 wxWindow* wxFindFocusDescendant(wxWindow* ancestor)
760 {
761 // Process events starting with the window with the focus, if any.
762 wxWindow* focusWin = wxWindow::FindFocus();
763 wxWindow* win = focusWin;
764
765 // Check if this is a descendant of this frame.
766 // If not, win will be set to NULL.
767 while (win)
768 {
769 if (win == ancestor)
770 break;
771 else
772 win = win->GetParent();
773 }
774 if (win == (wxWindow*) NULL)
775 focusWin = (wxWindow*) NULL;
776
777 return focusWin;
778 }
779