Fix manual references to the events overview after it's page ID was changed in r58712 (VZ).
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@58978 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
@@ -455,7 +455,7 @@ public:
|
||||
function was found, in which case the function exits.
|
||||
-# The search is applied down the entire chain of event handlers (usually the
|
||||
chain has a length of one). This chain can be formed using wxEvtHandler::SetNextHandler():
|
||||
@image html overview_eventhandling_chain.png
|
||||
@image html overview_events_chain.png
|
||||
(referring to the image, if @c A->ProcessEvent is called and it doesn't handle
|
||||
the event, @c B->ProcessEvent will be called and so on...).
|
||||
Note that in the case of wxWindow you can build a stack of event handlers
|
||||
|
@@ -106,7 +106,7 @@ enum wxLayoutAlignment
|
||||
@library{wxadv}
|
||||
@category{winlayout}
|
||||
|
||||
@see wxSashEvent, wxSashLayoutWindow, @ref overview_eventhandling
|
||||
@see wxSashEvent, wxSashLayoutWindow, @ref overview_events
|
||||
*/
|
||||
class wxLayoutAlgorithm : public wxObject
|
||||
{
|
||||
@@ -169,7 +169,7 @@ public:
|
||||
@library{wxadv}
|
||||
@category{miscwnd}
|
||||
|
||||
@see wxLayoutAlgorithm, wxSashWindow, @ref overview_eventhandling
|
||||
@see wxLayoutAlgorithm, wxSashWindow, @ref overview_events
|
||||
*/
|
||||
class wxSashLayoutWindow : public wxSashWindow
|
||||
{
|
||||
|
@@ -270,7 +270,7 @@ public:
|
||||
@library{wxbase}
|
||||
@category{events}
|
||||
|
||||
@see wxProcess, @ref overview_eventhandling
|
||||
@see wxProcess, @ref overview_events
|
||||
*/
|
||||
class wxProcessEvent : public wxEvent
|
||||
{
|
||||
|
@@ -34,7 +34,7 @@
|
||||
@category{ctrl}
|
||||
@appearance{radiobox.png}
|
||||
|
||||
@see @ref overview_eventhandling, wxRadioButton, wxCheckBox
|
||||
@see @ref overview_events, wxRadioButton, wxCheckBox
|
||||
*/
|
||||
class wxRadioBox : public wxControl, wxItemContainerImmutable
|
||||
{
|
||||
|
@@ -40,7 +40,7 @@
|
||||
@category{ctrl}
|
||||
@appearance{radiobutton.png}
|
||||
|
||||
@see @ref overview_eventhandling, wxRadioBox, wxCheckBox
|
||||
@see @ref overview_events, wxRadioBox, wxCheckBox
|
||||
*/
|
||||
class wxRadioButton : public wxControl
|
||||
{
|
||||
|
@@ -63,7 +63,7 @@ enum wxSashDragStatus
|
||||
@library{wxadv}
|
||||
@category{miscwnd}
|
||||
|
||||
@see wxSashEvent, wxSashLayoutWindow, @ref overview_eventhandling
|
||||
@see wxSashEvent, wxSashLayoutWindow, @ref overview_events
|
||||
*/
|
||||
class wxSashWindow : public wxWindow
|
||||
{
|
||||
@@ -222,7 +222,7 @@ public:
|
||||
@library{wxadv}
|
||||
@category{events}
|
||||
|
||||
@see wxSashWindow, @ref overview_eventhandling
|
||||
@see wxSashWindow, @ref overview_events
|
||||
*/
|
||||
class wxSashEvent : public wxCommandEvent
|
||||
{
|
||||
|
@@ -107,7 +107,7 @@
|
||||
@category{ctrl}
|
||||
@appearance{scrollbar.png}
|
||||
|
||||
@see @ref overview_scrolling, @ref overview_eventhandling, wxScrolled
|
||||
@see @ref overview_scrolling, @ref overview_events, wxScrolled
|
||||
*/
|
||||
class wxScrollBar : public wxControl
|
||||
{
|
||||
|
@@ -107,7 +107,7 @@
|
||||
@category{ctrl}
|
||||
@appearance{slider.png}
|
||||
|
||||
@see @ref overview_eventhandling, wxScrollBar
|
||||
@see @ref overview_events, wxScrollBar
|
||||
*/
|
||||
class wxSlider : public wxControl
|
||||
{
|
||||
|
@@ -423,7 +423,7 @@ public:
|
||||
@library{wxcore}
|
||||
@category{events}
|
||||
|
||||
@see wxSplitterWindow, @ref overview_eventhandling
|
||||
@see wxSplitterWindow, @ref overview_events
|
||||
*/
|
||||
class wxSplitterEvent : public wxNotifyEvent
|
||||
{
|
||||
|
@@ -1702,7 +1702,7 @@ public:
|
||||
Removes and returns the top-most event handler on the event handler stack.
|
||||
|
||||
E.g. in the case of:
|
||||
@image html overview_eventhandling_winstack.png
|
||||
@image html overview_events_winstack.png
|
||||
when calling @c W->PopEventHandler(), the event handler @c A will be
|
||||
removed and @c B will be the first handler of the stack.
|
||||
|
||||
@@ -1737,7 +1737,7 @@ public:
|
||||
W->PushEventHandler(B);
|
||||
@endcode
|
||||
you will end up with the following situation:
|
||||
@image html overview_eventhandling_winstack.png
|
||||
@image html overview_events_winstack.png
|
||||
|
||||
Note that you can use wxWindow::PopEventHandler to remove the event handler.
|
||||
|
||||
|
Reference in New Issue
Block a user