]> git.saurik.com Git - wxWidgets.git/blobdiff - samples/notebook/test.h
updated samples makefiles
[wxWidgets.git] / samples / notebook / test.h
index 9cbcc2d0ff93a4b2fb8fc6af07dc8e8b3cd34d91..6690464ae10333f7ff2b583fa0033d789306396f 100644 (file)
 class MyApp: public wxApp
 {
 public:
-    bool OnInit(void);
+    bool OnInit();
     void InitTabView(wxNotebook* notebook, wxPanel* window);
 
     wxButton*   m_okButton;
     wxButton*   m_cancelButton;
-    wxButton*   m_addPageButton;
+    wxButton*   m_addPageButton, *m_insertPageButton;
+    wxButton*   m_nextPageButton;
 };
 
 DECLARE_APP(MyApp)
@@ -35,7 +36,7 @@ public:
 
     void OnOK(wxCommandEvent& event);
     void OnCloseWindow(wxCloseEvent& event);
-    void Init(void);
+    void Init();
 
 protected:
     wxNotebook* m_notebook;
@@ -54,6 +55,8 @@ public:
     void OnOK(wxCommandEvent& event);
     void OnCloseWindow(wxCloseEvent& event);
     void OnAddPage(wxCommandEvent& event);
+    void OnInsertPage(wxCommandEvent& event);
+    void OnNextPage(wxCommandEvent& event);
     void OnDeletePage(wxCommandEvent& event);
     void OnIdle(wxIdleEvent& event);
 
@@ -88,4 +91,6 @@ protected:
 #define ID_NOTEBOOK         1000
 #define ID_ADD_PAGE         1200
 #define ID_DELETE_PAGE      1201
+#define ID_NEXT_PAGE        1202
+#define ID_INSERT_PAGE      1203