- @b Generic event table macros
-
-
-
-
-
-
- @b EVT_CUSTOM(event, id, func)
-
-
-
-
- Allows you to add a custom event table
- entry by specifying the event identifier (such as wxEVT_SIZE), the window identifier,
- and a member function to call.
-
-
-
-
-
- @b EVT_CUSTOM_RANGE(event, id1, id2, func)
-
-
+ @subsection overview_eventhandling_custom_generic Generic event table macros
+
+ @beginTable
+ @row2col{EVT_CUSTOM(event\, id\, func),
+ Allows you to add a custom event table
+ entry by specifying the event identifier (such as wxEVT_SIZE),
+ the window identifier, and a member function to call.}
+ @row2col{EVT_CUSTOM_RANGE(event\, id1\, id2\, func),
+ The same as EVT_CUSTOM, but responds to a range of window identifiers.}
+ @row2col{EVT_COMMAND(id\, event\, func),
+ The same as EVT_CUSTOM, but expects a member function with a
+ wxCommandEvent argument.}
+ @row2col{EVT_COMMAND_RANGE(id1\, id2\, event\, func),
+ The same as EVT_CUSTOM_RANGE, but
+ expects a member function with a wxCommandEvent argument.}
+ @row2col{EVT_NOTIFY(event\, id\, func),
+ The same as EVT_CUSTOM, but
+ expects a member function with a wxNotifyEvent argument.}
+ @row2col{EVT_NOTIFY_RANGE(event\, id1\, id2\, func),
+ The same as EVT_CUSTOM_RANGE, but
+ expects a member function with a wxNotifyEvent argument.}
+ @endTable
+
+
+ @subsection overview_eventhandling_custom_ownclass Defining your own event class