X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/d709457c8dbbb814299ec5c41862bd479d2d8adc..cdbce971ecd2a3f39ddcc56c0ef7769663fbdf23:/samples/notebook/notebook.h diff --git a/samples/notebook/notebook.h b/samples/notebook/notebook.h index e194dbf5db..68b732e7b4 100644 --- a/samples/notebook/notebook.h +++ b/samples/notebook/notebook.h @@ -52,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); } @@ -83,6 +89,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 @@ -139,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 }; /*