Document the order in which event tables are examined.

Static event tables are search top to bottom while dynamic event tables are
searched in the most-recently-bound to the most-early-bound order.

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@75285 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
Vadim Zeitlin
2013-11-25 12:12:24 +00:00
parent 2203c7e436
commit 2194719b21
2 changed files with 13 additions and 6 deletions

View File

@@ -453,14 +453,19 @@ doesn't count as having handled the event and the search continues):
Bind<>() was called, is consulted. Notice that this is done before
checking the static event table entries, so if both a dynamic and a static
event handler match the same event, the static one is never going to be
used unless wxEvent::Skip() is called in the dynamic one.
used unless wxEvent::Skip() is called in the dynamic one. Also note that
the dynamically bound handlers are searched in order of their registration
during program run-time, i.e. later bound handlers take priority over the
previously bound ones.
</li>
<li value="4">
The event table containing all the handlers defined using the event table
macros in this class and its base classes is examined. Notice that this
means that any event handler defined in a base class will be executed at
this step.
macros in this class and its base classes is examined. The search in an
event table respects the order of the event macros appearance in the source
code, i.e. earlier occurring entries take precedence over later occurring
ones. Notice that this means that any event handler defined in a base class
will be executed at this step.
</li>
<li value="5">