]> git.saurik.com Git - wxWidgets.git/blobdiff - samples/notebook/notebook.h
[ 1557102 ] wxCombobox + keyboard selection + TEXT_ENTER Event
[wxWidgets.git] / samples / notebook / notebook.h
index 4fdc8f98a366b9a0c1fb4100d24f5e48201ae4f0..68b732e7b4db6251b7dde612f8e9a2b917c75c65 100644 (file)
@@ -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
@@ -51,6 +52,12 @@ public:
     void OnAddSubPage(wxCommandEvent& event);
     void OnAddPageBefore(wxCommandEvent& event);
 
+#if wxUSE_HELP
+    void OnContextHelp(wxCommandEvent& event);
+#endif // wxUSE_HELP
+
+    void OnHitTest(wxCommandEvent& event);
+
     void OnBookCtrl(wxBookCtrlBaseEvent& event);
 #if wxUSE_NOTEBOOK
     void OnNotebook(wxNotebookEvent& event) { OnBookCtrl(event); }
@@ -64,6 +71,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 +88,8 @@ 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;
+    void AddFlagStrIfFlagPresent(wxString & flagStr, long flags, long flag, const wxChar * flagName) const;
 
     // Sample setup
     enum BookType
@@ -87,6 +98,7 @@ private:
         Type_Listbook,
         Type_Choicebook,
         Type_Treebook,
+        Type_Toolbook,
         Type_Max
     } m_type;
     int m_orient;
@@ -117,6 +129,7 @@ enum ID_COMMANDS
     ID_BOOK_LISTBOOK,
     ID_BOOK_CHOICEBOOK,
     ID_BOOK_TREEBOOK,
+    ID_BOOK_TOOLBOOK,
     ID_BOOK_MAX,
 
     ID_ORIENT_DEFAULT,
@@ -133,7 +146,12 @@ enum ID_COMMANDS
     ID_DELETE_LAST_PAGE,
     ID_NEXT_PAGE,
     ID_ADD_PAGE_BEFORE,
-    ID_ADD_SUB_PAGE
+    ID_ADD_SUB_PAGE,
+
+#if wxUSE_HELP
+    ID_CONTEXT_HELP,
+#endif // wxUSE_HELP
+    ID_HITTEST
 };
 
 /*