From: Bryan Petty Date: Wed, 18 Feb 2009 00:19:22 +0000 (+0000) Subject: Fix manual references to the events overview after it's page ID was changed in r58712... X-Git-Url: https://git.saurik.com/wxWidgets.git/commitdiff_plain/830b7aa7b235888198fcc80c6b1fd0e792b143c6 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 --- diff --git a/docs/doxygen/groups/class_events.h b/docs/doxygen/groups/class_events.h index 89cb965d58..9c020b38d7 100644 --- a/docs/doxygen/groups/class_events.h +++ b/docs/doxygen/groups/class_events.h @@ -14,7 +14,7 @@ An event object contains information about a specific event. Event handlers (usually member functions) have a single, event argument. -Related Overviews: @ref overview_eventhandling +Related Overviews: @ref overview_events Related macros/global-functions group: @ref group_funcmacro_events diff --git a/docs/doxygen/images/overview_eventhandling_chain.dia b/docs/doxygen/images/overview_eventhandling_chain.dia deleted file mode 100644 index b9d12e342b..0000000000 Binary files a/docs/doxygen/images/overview_eventhandling_chain.dia and /dev/null differ diff --git a/docs/doxygen/images/overview_eventhandling_chain.png b/docs/doxygen/images/overview_eventhandling_chain.png deleted file mode 100644 index fa4c931fe3..0000000000 Binary files a/docs/doxygen/images/overview_eventhandling_chain.png and /dev/null differ diff --git a/docs/doxygen/images/overview_eventhandling_winstack.dia b/docs/doxygen/images/overview_eventhandling_winstack.dia deleted file mode 100644 index 8b82bea5bc..0000000000 Binary files a/docs/doxygen/images/overview_eventhandling_winstack.dia and /dev/null differ diff --git a/docs/doxygen/images/overview_eventhandling_winstack.png b/docs/doxygen/images/overview_eventhandling_winstack.png deleted file mode 100644 index 397a97cb13..0000000000 Binary files a/docs/doxygen/images/overview_eventhandling_winstack.png and /dev/null differ diff --git a/docs/doxygen/images/overview_events_chain.dia b/docs/doxygen/images/overview_events_chain.dia new file mode 100644 index 0000000000..b9d12e342b Binary files /dev/null and b/docs/doxygen/images/overview_events_chain.dia differ diff --git a/docs/doxygen/images/overview_events_chain.png b/docs/doxygen/images/overview_events_chain.png new file mode 100644 index 0000000000..fa4c931fe3 Binary files /dev/null and b/docs/doxygen/images/overview_events_chain.png differ diff --git a/docs/doxygen/images/overview_events_winstack.dia b/docs/doxygen/images/overview_events_winstack.dia new file mode 100644 index 0000000000..8b82bea5bc Binary files /dev/null and b/docs/doxygen/images/overview_events_winstack.dia differ diff --git a/docs/doxygen/images/overview_events_winstack.png b/docs/doxygen/images/overview_events_winstack.png new file mode 100644 index 0000000000..397a97cb13 Binary files /dev/null and b/docs/doxygen/images/overview_events_winstack.png differ diff --git a/docs/doxygen/mainpages/cat_classes.h b/docs/doxygen/mainpages/cat_classes.h index bdcd856b53..f402f64ec8 100644 --- a/docs/doxygen/mainpages/cat_classes.h +++ b/docs/doxygen/mainpages/cat_classes.h @@ -406,7 +406,7 @@ Related Overviews: @ref overview_bitmap An event object contains information about a specific event. Event handlers (usually member functions) have a single, event argument. -Related Overviews: @ref overview_eventhandling +Related Overviews: @ref overview_events @li wxActivateEvent: A window or application activation event @li wxCalendarEvent: Used with wxCalendarCtrl diff --git a/docs/doxygen/overviews/eventhandling.h b/docs/doxygen/overviews/eventhandling.h index 0e4c7f2392..60e483927d 100644 --- a/docs/doxygen/overviews/eventhandling.h +++ b/docs/doxygen/overviews/eventhandling.h @@ -7,9 +7,10 @@ ///////////////////////////////////////////////////////////////////////////// /** - @page overview_events Events and Event Handling - Related classes: wxEvtHandler, wxWindow, wxEvent +@page overview_events Events and Event Handling + +Related classes: wxEvtHandler, wxWindow, wxEvent @li @ref overview_events_introduction @li @ref overview_events_eventhandling diff --git a/docs/doxygen/overviews/validator.h b/docs/doxygen/overviews/validator.h index d6ca08f83e..641f969844 100644 --- a/docs/doxygen/overviews/validator.h +++ b/docs/doxygen/overviews/validator.h @@ -90,7 +90,7 @@ internally. You can optionally define event handlers for the validator, to implement filtering. These handlers will capture events before the control itself does -(see @ref overview_eventhandling_processing). +(see @ref overview_events_processing). For an example implementation, see the @c valtext.h and @c valtext.cpp files in the wxWidgets library. diff --git a/interface/wx/event.h b/interface/wx/event.h index bb19a3c7c7..eaf87f1135 100644 --- a/interface/wx/event.h +++ b/interface/wx/event.h @@ -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 diff --git a/interface/wx/laywin.h b/interface/wx/laywin.h index 852c635ac2..9c30c52e2f 100644 --- a/interface/wx/laywin.h +++ b/interface/wx/laywin.h @@ -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 { diff --git a/interface/wx/process.h b/interface/wx/process.h index f64eb96774..996f0911c4 100644 --- a/interface/wx/process.h +++ b/interface/wx/process.h @@ -270,7 +270,7 @@ public: @library{wxbase} @category{events} - @see wxProcess, @ref overview_eventhandling + @see wxProcess, @ref overview_events */ class wxProcessEvent : public wxEvent { diff --git a/interface/wx/radiobox.h b/interface/wx/radiobox.h index bf5f170776..159d5791b3 100644 --- a/interface/wx/radiobox.h +++ b/interface/wx/radiobox.h @@ -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 { diff --git a/interface/wx/radiobut.h b/interface/wx/radiobut.h index 439fc32bfd..8deb1ec5b2 100644 --- a/interface/wx/radiobut.h +++ b/interface/wx/radiobut.h @@ -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 { diff --git a/interface/wx/sashwin.h b/interface/wx/sashwin.h index da59269f0a..78cc5e2022 100644 --- a/interface/wx/sashwin.h +++ b/interface/wx/sashwin.h @@ -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 { diff --git a/interface/wx/scrolbar.h b/interface/wx/scrolbar.h index 76d5bba01a..45bc3e3824 100644 --- a/interface/wx/scrolbar.h +++ b/interface/wx/scrolbar.h @@ -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 { diff --git a/interface/wx/slider.h b/interface/wx/slider.h index 6bb50161b8..504b4d549c 100644 --- a/interface/wx/slider.h +++ b/interface/wx/slider.h @@ -107,7 +107,7 @@ @category{ctrl} @appearance{slider.png} - @see @ref overview_eventhandling, wxScrollBar + @see @ref overview_events, wxScrollBar */ class wxSlider : public wxControl { diff --git a/interface/wx/splitter.h b/interface/wx/splitter.h index 7934d3db1e..345fa0fdbe 100644 --- a/interface/wx/splitter.h +++ b/interface/wx/splitter.h @@ -423,7 +423,7 @@ public: @library{wxcore} @category{events} - @see wxSplitterWindow, @ref overview_eventhandling + @see wxSplitterWindow, @ref overview_events */ class wxSplitterEvent : public wxNotifyEvent { diff --git a/interface/wx/window.h b/interface/wx/window.h index fc5e5c9e57..3580eb0fc2 100644 --- a/interface/wx/window.h +++ b/interface/wx/window.h @@ -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.