X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/1677253b36065db2d6639ecc00e8b056b00b1ad2..4e15d1caa03346c126015019c1fdf093033ef40b:/docs/doxygen/overviews/eventhandling.h diff --git a/docs/doxygen/overviews/eventhandling.h b/docs/doxygen/overviews/eventhandling.h index 10a1c6543a..405b3e1f36 100644 --- a/docs/doxygen/overviews/eventhandling.h +++ b/docs/doxygen/overviews/eventhandling.h @@ -10,19 +10,7 @@ @page overview_events Events and Event Handling -Related classes: wxEvtHandler, wxWindow, wxEvent - -@li @ref overview_events_introduction -@li @ref overview_events_eventhandling -@li @ref overview_events_processing -@li @ref overview_events_custom -@li @ref overview_events_misc - - -
- - -@section overview_events_introduction Introduction to Events +@tableofcontents Like with all the other GUI frameworks, the control of flow in wxWidgets applications is event-based: the program normally performs most of its actions @@ -57,6 +45,9 @@ To be more precise, each event is described by: event), checking the event source object or its id allows to distinguish between them. +@see wxEvtHandler, wxWindow, wxEvent + + @section overview_events_eventhandling Event Handling @@ -374,7 +365,7 @@ MyFunctor myFunctor; MyFrame::MyFrame() { - Bind( wxEVT_COMMAND_MENU_SELECTED, &myFunctor, wxID_EXIT ); + Bind( wxEVT_COMMAND_MENU_SELECTED, myFunctor, wxID_EXIT ); } @endcode @@ -872,11 +863,10 @@ your identifiers don't conflict accidentally. -@subsection overview_events_list List of wxWidgets events +@subsection overview_events_list List of wxWidgets Events For the full list of event classes, please see the @ref group_class_events "event classes group page". */ -