X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/7c14fc8ccaea1a0c7fd074d75936713d6f61c87e..184abb52a8ae838ef8586ce45a550b4e8ef96e54:/interface/wx/notebook.h?ds=inline diff --git a/interface/wx/notebook.h b/interface/wx/notebook.h index 2e2003e884..59829ac0d8 100644 --- a/interface/wx/notebook.h +++ b/interface/wx/notebook.h @@ -3,9 +3,29 @@ // Purpose: interface of wxNotebook // Author: wxWidgets team // RCS-ID: $Id$ -// Licence: wxWindows license +// Licence: wxWindows licence ///////////////////////////////////////////////////////////////////////////// +enum +{ + wxNB_HITTEST_NOWHERE = wxBK_HITTEST_NOWHERE, + wxNB_HITTEST_ONICON = wxBK_HITTEST_ONICON, + wxNB_HITTEST_ONLABEL = wxBK_HITTEST_ONLABEL, + wxNB_HITTEST_ONITEM = wxBK_HITTEST_ONITEM, + wxNB_HITTEST_ONPAGE = wxBK_HITTEST_ONPAGE +}; + +#define wxNB_DEFAULT wxBK_DEFAULT +#define wxNB_TOP wxBK_TOP +#define wxNB_BOTTOM wxBK_BOTTOM +#define wxNB_LEFT wxBK_LEFT +#define wxNB_RIGHT wxBK_RIGHT + +#define wxNB_FIXEDWIDTH 0x0100 +#define wxNB_MULTILINE 0x0200 +#define wxNB_NOPAGETHEME 0x0400 +#define wxNB_FLAT 0x0800 + /** @class wxNotebook @@ -42,7 +62,7 @@ The styles wxNB_LEFT, RIGHT and BOTTOM are not supported under Microsoft Windows XP when using visual themes. - @beginEventTable{wxBookCtrlEvent} + @beginEventEmissionTable{wxBookCtrlEvent} @event{EVT_NOTEBOOK_PAGE_CHANGED(id, func)} The page selection was changed. Processes a @c wxEVT_COMMAND_NOTEBOOK_PAGE_CHANGED event. @@ -65,7 +85,7 @@ To disable themed pages globally: @code - wxSystemOptions::SetOption(wxT("msw.notebook.themed-background"), 0); + wxSystemOptions::SetOption("msw.notebook.themed-background", 0); @endcode Set the value to 1 to enable it again. @@ -73,7 +93,7 @@ overall theme, use: @code wxColour col = notebook->GetThemeBackgroundColour(); - if (col.Ok()) + if (col.IsOk()) { page->SetBackgroundColour(col); } @@ -85,7 +105,7 @@ @library{wxcore} - @category{miscwnd} + @category{bookctrl} @appearance{notebook.png} @see wxBookCtrl, wxBookCtrlEvent, wxImageList, @ref page_samples_notebook @@ -166,5 +186,17 @@ public: @note The vertical padding cannot be changed in wxGTK. */ virtual void SetPadding(const wxSize& padding); + + // implementations of pure virtuals + virtual int GetPageImage(size_t nPage) const; + virtual bool SetPageImage(size_t page, int image); + virtual wxString GetPageText(size_t nPage) const; + virtual bool SetPageText(size_t page, const wxString& text); + virtual int GetSelection() const; + virtual int SetSelection(size_t page); + virtual int ChangeSelection(size_t page); + virtual bool InsertPage(size_t index, wxWindow * page, const wxString & text, + bool select = false, int imageId = NO_IMAGE); + };