+ return panel;
+}
+
+void MyNotebook::CreateInitialPages()
+{
+ wxPanel *panel = (wxPanel *) NULL;
+
+ // Create and add some panels to the notebook
+
+ panel = CreateRadioButtonsPage();
+ AddPage( panel, RADIOBUTTONS_PAGE_NAME, FALSE, GetIconIndex() );
+
+ panel = CreateVetoPage();
+ AddPage( panel, VETO_PAGE_NAME, FALSE, GetIconIndex() );
+
+ panel = CreateBigButtonPage();
+ AddPage( panel, MAXIMIZED_BUTTON_PAGE_NAME, FALSE, GetIconIndex() );
+
+ panel = CreateInsertPage();
+ InsertPage( 0, panel, I_WAS_INSERTED_PAGE_NAME, FALSE, GetIconIndex() );