-//
-class MyNotebook : public wxNotebook
-{
-public:
- MyNotebook(wxWindow *parent, wxWindowID id = wxID_ANY,
- const wxPoint& pos = wxDefaultPosition,
- const wxSize& size = wxDefaultSize, long style = 0);
-
- void CreateInitialPages();
-
- wxPanel *CreatePage(const wxString& pageName);
-
- wxPanel *CreateUserCreatedPage();
-
- int GetIconIndex() const;
-
-private:
- wxPanel *CreateInsertPage();
- wxPanel *CreateRadioButtonsPage();
- wxPanel *CreateVetoPage();
- wxPanel *CreateBigButtonPage();
-};