X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/d709457c8dbbb814299ec5c41862bd479d2d8adc..3d1706f8ee545ffb9ab3ad282654e29921959b53:/samples/notebook/notebook.h diff --git a/samples/notebook/notebook.h b/samples/notebook/notebook.h index e194dbf5db..2c1587215b 100644 --- a/samples/notebook/notebook.h +++ b/samples/notebook/notebook.h @@ -44,14 +44,22 @@ public: void OnExit(wxCommandEvent& event); void OnAddPage(wxCommandEvent& event); + void OnAddPageNoSelect(wxCommandEvent& event); void OnInsertPage(wxCommandEvent& event); 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); #if wxUSE_NOTEBOOK void OnNotebook(wxNotebookEvent& event) { OnBookCtrl(event); } @@ -83,6 +91,7 @@ private: void RecreateBook(); wxPanel *CreateNewPage() 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 @@ -134,12 +143,19 @@ enum ID_COMMANDS ID_SHOW_IMAGES, ID_MULTI, ID_ADD_PAGE, + ID_ADD_PAGE_NO_SELECT, ID_INSERT_PAGE, ID_DELETE_CUR_PAGE, ID_DELETE_LAST_PAGE, ID_NEXT_PAGE, ID_ADD_PAGE_BEFORE, - ID_ADD_SUB_PAGE + ID_ADD_SUB_PAGE, + ID_GO_HOME, + +#if wxUSE_HELP + ID_CONTEXT_HELP, +#endif // wxUSE_HELP + ID_HITTEST }; /*