Appendix H. How wxWidgets Processes Events
This appendix takes a closer look at how wxWidgets processes events, going into details omitted from the simplified view we've seen so far.When an event is received from the windowing system, wxWidgets calls wxEvtHandler::ProcessEvent on the first event handler object belonging to the window generating the event.Figure H-1 summarizes the order of event table searching by ProcessEvent. Here's how it works:
Figure H-1. Event processing flow
