X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/526954c5968baa29218c994ec48e476ae2bd4b9f..35f95708e3aee076d779ba31c6b871afb5c50daf:/docs/doxygen/overviews/bookctrl.h?ds=sidebyside diff --git a/docs/doxygen/overviews/bookctrl.h b/docs/doxygen/overviews/bookctrl.h index f71f172757..d711755651 100644 --- a/docs/doxygen/overviews/bookctrl.h +++ b/docs/doxygen/overviews/bookctrl.h @@ -10,24 +10,7 @@ @page overview_bookctrl wxBookCtrl Overview -Classes: - -@li wxChoicebook -@li wxListbook -@li wxNotebook -@li wxTreebook -@li wxToolbook - -Sections: - -@li @ref overview_bookctrl_intro -@li @ref overview_bookctrl_bestbookctrl - - -
- - -@section overview_bookctrl_intro Introduction +@tableofcontents A book control is a convenient way of displaying multiple pages of information, displayed one page at a time. wxWidgets has five variants of this control: @@ -35,11 +18,19 @@ displayed one page at a time. wxWidgets has five variants of this control: @li wxChoicebook: controlled by a wxChoice @li wxListbook: controlled by a wxListCtrl @li wxNotebook: uses a row of tabs +@li wxSimplebook: doesn't allow the user to change the page at all. @li wxTreebook: controlled by a wxTreeCtrl @li wxToolbook: controlled by a wxToolBar See the @ref page_samples_notebook for an example of wxBookCtrl usage. +Notice that wxSimplebook is special in that it only allows the program to +change the selection, thus it's usually used in slightly different +circumstances than the other variants. + +@see @ref group_class_bookctrl + + @section overview_bookctrl_bestbookctrl Best Book