]> git.saurik.com Git - wxWidgets.git/commitdiff
Extra testing code
authorRobin Dunn <robin@alldunn.com>
Fri, 22 Aug 2003 22:44:36 +0000 (22:44 +0000)
committerRobin Dunn <robin@alldunn.com>
Fri, 22 Aug 2003 22:44:36 +0000 (22:44 +0000)
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@23118 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775

wxPython/demo/wxToolBar.py
wxPython/demo/wxWizard.py

index 83b99599ccc8fa16a90da9edcb0aa03c276c9329..a22833e37ae4fbe8965b8e0cb0081da1089b7ea2 100644 (file)
@@ -23,6 +23,8 @@ class TestToolBar(wxFrame):
         #               wxTB_HORIZONTAL | wxNO_BORDER | wxTB_FLAT)
         #self.SetToolBar(tb)
 
+        log.write("Default toolbar tool size: %s\n" % tb.GetToolBitmapSize())
+
         self.CreateStatusBar()
 
         tb.AddSimpleTool(10, images.getNewBitmap(), "New", "Long help for 'New'")
index 402a307031b31ee6707243316081d88b5dee2ec5..9c6d4830cc9a33005635b20a69d0dac1bd93ddaf 100644 (file)
@@ -170,6 +170,10 @@ wxWizardPageSimple class can easily be used for the pages."""))
 
     def OnRunDynamicWizard(self, evt):
         # Create the wizard and the pages
+        #wizard = wxPreWizard()
+        #wizard.SetExtraStyle(wxWIZARD_EX_HELPBUTTON)
+        #wizard.Create(self, self.ID_wiz, "Simple Wizard",
+        #              images.getWizTest1Bitmap())
         wizard = wxWizard(self, self.ID_wiz, "Simple Wizard",
                           images.getWizTest1Bitmap())