X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/136bafcd3957f958062bbe5774d3c10c060e3a83..b0d8bfa6cd4042d3ea8680ad0145f79e3cb15268:/samples/notebook/notebook.h diff --git a/samples/notebook/notebook.h b/samples/notebook/notebook.h index 4fdc8f98a3..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,7 +82,7 @@ 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 @@ -87,6 +91,7 @@ private: 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,