X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/6a6ff5640dc0c7c4153f494d311d7ab1d8b33947..9e58eb5674cfac859568c9a4b1030012e1f0eb64:/wxPython/demo/wxWizard.py diff --git a/wxPython/demo/wxWizard.py b/wxPython/demo/wxWizard.py index 053567fadc..7c7d5d80f6 100644 --- a/wxPython/demo/wxWizard.py +++ b/wxPython/demo/wxWizard.py @@ -1,45 +1,119 @@ +# 11/22/2003 - Jeff Grimmett (grimmtooth@softhome.net) +# +# o Updated for wx namespace +# +# 11/3-/2003 - Jeff Grimmett (grimmtooth@softhome.net) +# +# o WizardPage* doesn't support GetId() +# + +import wx +import wx.wizard as wiz +import images -from wxPython.wx import * -from wxPython.wizard import * +#---------------------------------------------------------------------- + +def makePageTitle(wizPg, title): + sizer = wx.BoxSizer(wx.VERTICAL) + wizPg.SetSizer(sizer) + title = wx.StaticText(wizPg, -1, title) + title.SetFont(wx.Font(18, wx.SWISS, wx.NORMAL, wx.BOLD)) + sizer.AddWindow(title, 0, wx.ALIGN_CENTRE|wx.ALL, 5) + sizer.AddWindow(wx.StaticLine(wizPg, -1), 0, wx.EXPAND|wx.ALL, 5) + return sizer + +#---------------------------------------------------------------------- + +class TitledPage(wiz.WizardPageSimple): + def __init__(self, parent, title): + wiz.WizardPageSimple.__init__(self, parent) + self.sizer = makePageTitle(self, title) -import images #---------------------------------------------------------------------- -class TitledPage(wxWizardPageSimple): +class SkipNextPage(wiz.PyWizardPage): def __init__(self, parent, title): - wxWizardPageSimple.__init__(self, parent) - self.sizer = sizer = wxBoxSizer(wxVERTICAL) - self.SetSizer(sizer) + wiz.PyWizardPage.__init__(self, parent) + self.next = self.prev = None + self.sizer = makePageTitle(self, title) + + self.cb = wx.CheckBox(self, -1, "Skip next page") + self.sizer.Add(self.cb, 0, wx.ALL, 5) + + def SetNext(self, next): + self.next = next - title = wxStaticText(self, -1, title) - title.SetFont(wxFont(18, wxSWISS, wxNORMAL, wxBOLD)) - sizer.AddWindow(title, 0, wxALIGN_CENTRE|wxALL, 5) - sizer.AddWindow(wxStaticLine(self, -1), 0, wxEXPAND|wxALL, 5) + def SetPrev(self, prev): + self.prev = prev + # Classes derived from wxPyWizardPanel must override + # GetNext and GetPrev, and may also override GetBitmap + # as well as all those methods overridable by + # wx.PyWindow. + + def GetNext(self): + """If the checkbox is set then return the next page's next page""" + next = self.next + if self.cb.GetValue(): + next = next.GetNext() + return next + + def GetPrev(self): + return self.prev #---------------------------------------------------------------------- +class UseAltBitmapPage(wiz.PyWizardPage): + def __init__(self, parent, title): + wiz.PyWizardPage.__init__(self, parent) + self.next = self.prev = None + self.sizer = makePageTitle(self, title) + + self.sizer.Add(wx.StaticText(self, -1, "This page uses a different bitmap"), + 0, wx.ALL, 5) + + def SetNext(self, next): + self.next = next + + def SetPrev(self, prev): + self.prev = prev + + def GetNext(self): + return self.next + + def GetPrev(self): + return self.prev + + def GetBitmap(self): + # You usually wouldn't need to override this method + # since you can set a non-default bitmap in the + # wxWizardPageSimple constructor, but if you need to + # dynamically change the bitmap based on the + # contents of the wizard, or need to also change the + # next/prev order then it can be done by overriding + # GetBitmap. + return images.getWizTest2Bitmap() #---------------------------------------------------------------------- -class TestPanel(wxPanel): - ID_wiz = wxNewId() +class TestPanel(wx.Panel): + ID_wiz = wx.NewId() def __init__(self, parent, log): self.log = log - wxPanel.__init__(self, parent, -1) + wx.Panel.__init__(self, parent, -1) - b = wxButton(self, -1, "Run Simple Wizard", pos=(50, 50)) - EVT_BUTTON(self, b.GetId(), self.OnRunSimpleWizard) + b = wx.Button(self, -1, "Run Simple Wizard", pos=(50, 50)) + self.Bind(wx.EVT_BUTTON, self.OnRunSimpleWizard, b) - b = wxButton(self, -1, "Run Dynamic Wizard", pos=(50, 100)) - EVT_BUTTON(self, b.GetId(), self.OnRunDynamicWizard) + b = wx.Button(self, -1, "Run Dynamic Wizard", pos=(50, 100)) + self.Bind(wx.EVT_BUTTON, self.OnRunDynamicWizard, b) - EVT_WIZARD_PAGE_CHANGED(self, self.ID_wiz, self.OnWizPageChanged) - EVT_WIZARD_PAGE_CHANGING(self, self.ID_wiz, self.OnWizPageChanging) - EVT_WIZARD_CANCEL(self, self.ID_wiz, self.OnWizCancel) + wiz.EVT_WIZARD_PAGE_CHANGED(self, self.ID_wiz, self.OnWizPageChanged) + wiz.EVT_WIZARD_PAGE_CHANGING(self, self.ID_wiz, self.OnWizPageChanging) + wiz.EVT_WIZARD_CANCEL(self, self.ID_wiz, self.OnWizCancel) def OnWizPageChanged(self, evt): @@ -47,6 +121,7 @@ class TestPanel(wxPanel): dir = "forward" else: dir = "backward" + page = evt.GetPage() self.log.write("OnWizPageChanged: %s, %s\n" % (dir, page.__class__)) @@ -56,44 +131,93 @@ class TestPanel(wxPanel): dir = "forward" else: dir = "backward" + page = evt.GetPage() self.log.write("OnWizPageChanging: %s, %s\n" % (dir, page.__class__)) def OnWizCancel(self, evt): - pass + page = evt.GetPage() + self.log.write("OnWizCancel: %s\n" % page.__class__) + # Show how to prevent cancelling of the wizard. The + # other events can be Veto'd too. + if page is self.page1: + wx.MessageBox("Cancelling on the first page has been prevented.", "Sorry") + evt.Veto() + + def OnWizFinished(self, evt): + self.log.write("OnWizFinished\n") + def OnRunSimpleWizard(self, evt): # Create the wizard and the pages - wizard = wxWizard(self, self.ID_wiz, "Simple Wizard", + wizard = wiz.Wizard(self, self.ID_wiz, "Simple Wizard", images.getWizTest1Bitmap()) page1 = TitledPage(wizard, "Page 1") page2 = TitledPage(wizard, "Page 2") page3 = TitledPage(wizard, "Page 3") page4 = TitledPage(wizard, "Page 4") + self.page1 = page1 - page1.sizer.Add(wxStaticText(page1, -1, """\ + page1.sizer.Add(wx.StaticText(page1, -1, """ This wizard is totally useless, but is meant to show how to chain simple wizard pages together in a non-dynamic manner. IOW, the order of the pages never changes, and so the wxWizardPageSimple class can easily be used for the pages.""")) wizard.FitToPage(page1) + page4.sizer.Add(wx.StaticText(page4, -1, "\nThis is the last page.")) # Use the convenience Chain function to connect the pages - wxWizardPageSimple_Chain(page1, page2) - wxWizardPageSimple_Chain(page2, page3) - wxWizardPageSimple_Chain(page3, page4) + wiz.WizardPageSimple_Chain(page1, page2) + wiz.WizardPageSimple_Chain(page2, page3) + wiz.WizardPageSimple_Chain(page3, page4) if wizard.RunWizard(page1): - wxMessageBox("Wizard completed successfully", "That's all folks!") + wx.MessageBox("Wizard completed successfully", "That's all folks!") else: - wxMessageBox("Wizard was cancelled", "That's all folks!") + wx.MessageBox("Wizard was cancelled", "That's all folks!") def OnRunDynamicWizard(self, evt): - pass + # Create the wizard and the pages + #wizard = wx.PreWizard() + #wizard.SetExtraStyle(wx.WIZARD_EX_HELPBUTTON) + #wizard.Create(self, self.ID_wiz, "Simple Wizard", + # images.getWizTest1Bitmap()) + wizard = wiz.Wizard(self, self.ID_wiz, "Simple Wizard", + images.getWizTest1Bitmap()) + + page1 = TitledPage(wizard, "Page 1") + page2 = SkipNextPage(wizard, "Page 2") + page3 = TitledPage(wizard, "Page 3") + page4 = UseAltBitmapPage(wizard, "Page 4") + page5 = TitledPage(wizard, "Page 5") + self.page1 = page1 + + page1.sizer.Add(wx.StaticText(page1, -1, """ +This wizard shows the ability to choose at runtime the order +of the pages and also which bitmap is shown. +""")) + wizard.FitToPage(page1) + page5.sizer.Add(wx.StaticText(page5, -1, "\nThis is the last page.")) + + # Set the initial order of the pages + page1.SetNext(page2) + page2.SetPrev(page1) + page2.SetNext(page3) + page3.SetPrev(page2) + page3.SetNext(page4) + page4.SetPrev(page3) + page4.SetNext(page5) + page5.SetPrev(page4) + + + if wizard.RunWizard(page1): + wx.MessageBox("Wizard completed successfully", "That's all folks!") + else: + wx.MessageBox("Wizard was cancelled", "That's all folks!") #----------------------------------------------------------------------