]> git.saurik.com Git - wxWidgets.git/blobdiff - samples/notebook/notebook.h
Always draw the selection of selected items, not just when they have
[wxWidgets.git] / samples / notebook / notebook.h
index 776edf7d14435065f3cd26a1dea52ecf3b595a4a..41d44068c868c27777c403f6c5ec43ba80634d05 100644 (file)
@@ -48,10 +48,15 @@ public:
     void OnDeleteCurPage(wxCommandEvent& event);
     void OnDeleteLastPage(wxCommandEvent& event);
     void OnNextPage(wxCommandEvent& event);
+    void OnGoHome(wxCommandEvent &event);
 
     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);
@@ -143,7 +148,11 @@ enum ID_COMMANDS
     ID_NEXT_PAGE,
     ID_ADD_PAGE_BEFORE,
     ID_ADD_SUB_PAGE,
+    ID_GO_HOME,
 
+#if wxUSE_HELP
+    ID_CONTEXT_HELP,
+#endif // wxUSE_HELP
     ID_HITTEST
 };