X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/ae3c17b4013e80b99976c750c19fca47729517f6..4d98817cfab2654773755cb5c540057c5f3d4fd6:/interface/wx/listbook.h diff --git a/interface/wx/listbook.h b/interface/wx/listbook.h index 28855b7ef3..5578ddd221 100644 --- a/interface/wx/listbook.h +++ b/interface/wx/listbook.h @@ -3,25 +3,21 @@ // Purpose: interface of wxListbook // Author: wxWidgets team // RCS-ID: $Id$ -// Licence: wxWindows license +// Licence: wxWindows licence ///////////////////////////////////////////////////////////////////////////// /** @class wxListbook - @wxheader{listbook.h} - wxListbook is a class similar to wxNotebook but which - uses a wxListCtrl to show the labels instead of the - tabs. + wxListbook is a class similar to wxNotebook but which uses a wxListCtrl + to show the labels instead of the tabs. The underlying wxListCtrl displays page labels in a one-column report view - by default. Calling wxListbook::SetImageList will implicitly switch the + by default. Calling wxBookCtrl::SetImageList will implicitly switch the control to use an icon view. - There is no documentation for this class yet but its usage is - identical to wxNotebook (except for the features clearly related to tabs - only), so please refer to that class documentation for now. You can also - use the @ref overview_samplenotebook "notebook sample" to see wxListbook in + For usage documentation of this class, please refer to the base abstract class + wxBookCtrl. You can also use the @ref page_samples_notebook to see wxListbook in action. @beginStyleTable @@ -38,24 +34,42 @@ Place labels below the page area. @endStyleTable + @beginEventEmissionTable{wxBookCtrlEvent} + @event{EVT_LISTBOOK_PAGE_CHANGED(id, func)} + The page selection was changed. + Processes a @c wxEVT_COMMAND_LISTBOOK_PAGE_CHANGED event. + @event{EVT_LISTBOOK_PAGE_CHANGING(id, func)} + The page selection is about to be changed. + Processes a @c wxEVT_COMMAND_LISTBOOK_PAGE_CHANGING event. + This event can be vetoed. + @endEventTable + @library{wxcore} - @category{miscwnd} + @category{bookctrl} + @appearance{listbook.png} - @see wxBookCtrl(), wxNotebook, @ref overview_samplenotebook "notebook sample" + @see wxBookCtrl, wxNotebook, @ref page_samples_notebook */ -class wxListbook : public wxBookCtrl overview +class wxListbook : public wxBookCtrlBase { public: - //@{ /** - Constructs a listbook control. + Default ctor. */ wxListbook(); + + /** + Constructs a listbook control. + */ wxListbook(wxWindow* parent, wxWindowID id, const wxPoint& pos = wxDefaultPosition, const wxSize& size = wxDefaultSize, long style = 0, - const wxString& name = wxEmptyStr); - //@} + const wxString& name = wxEmptyString); + + /** + Returns the wxListView associated with the control. + */ + wxListView* GetListView() const; };