X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/eca15c0d5497309e402d4bb91f8e479b4fb70fa9..b0d8bfa6cd4042d3ea8680ad0145f79e3cb15268:/samples/notebook/notebook.h diff --git a/samples/notebook/notebook.h b/samples/notebook/notebook.h index 42bd6088af..e194dbf5db 100644 --- a/samples/notebook/notebook.h +++ b/samples/notebook/notebook.h @@ -13,6 +13,7 @@ #include "wx/listbook.h" #include "wx/treebook.h" #include "wx/notebook.h" +#include "wx/toolbook.h" #if wxUSE_LOG && !defined( __SMARTPHONE__ ) #define USE_LOG 1 @@ -64,6 +65,9 @@ public: #if wxUSE_TREEBOOK void OnTreebook(wxTreebookEvent& event) { OnBookCtrl(event); } #endif +#if wxUSE_TOOLBOOK + void OnToolbook(wxToolbookEvent& event) { OnBookCtrl(event); } +#endif void OnIdle(wxIdleEvent& event); @@ -78,15 +82,16 @@ private: void RecreateBook(); wxPanel *CreateNewPage() const; - int TranslateBookFlag(int nb, int lb, int chb, int tbk) const; + int TranslateBookFlag(int nb, int lb, int chb, int tbk, int toolbk) const; // Sample setup enum BookType { Type_Notebook, - Type_Choicebook, Type_Listbook, + Type_Choicebook, Type_Treebook, + Type_Toolbook, Type_Max } m_type; int m_orient; @@ -117,6 +122,7 @@ enum ID_COMMANDS ID_BOOK_LISTBOOK, ID_BOOK_CHOICEBOOK, ID_BOOK_TREEBOOK, + ID_BOOK_TOOLBOOK, ID_BOOK_MAX, ID_ORIENT_DEFAULT,