mirror of
https://github.com/wxWidgets/Phoenix.git
synced 2026-01-05 11:30:06 +01:00
Add wx.adv.Wizard
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxPython/Phoenix/trunk@71695 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
12
etg/_adv.py
12
etg/_adv.py
@@ -48,17 +48,7 @@ INCLUDES = [
|
||||
'richtooltip',
|
||||
'timectrl',
|
||||
'treelist',
|
||||
|
||||
|
||||
# TODOs -
|
||||
# These modules are also in the C++ adv lib and so should be included here:
|
||||
#
|
||||
#'wizard',
|
||||
|
||||
# Except for these, which have, or will have their own extension modules
|
||||
#'dataview',
|
||||
#'grid',
|
||||
#'propdlg',
|
||||
'wizard',
|
||||
]
|
||||
|
||||
|
||||
|
||||
74
etg/wizard.py
Normal file
74
etg/wizard.py
Normal file
@@ -0,0 +1,74 @@
|
||||
#---------------------------------------------------------------------------
|
||||
# Name: etg/wizard.py
|
||||
# Author: Robin Dunn
|
||||
#
|
||||
# Created: 06-Jun-2012
|
||||
# Copyright: (c) 2012 by Total Control Software
|
||||
# License: wxWindows License
|
||||
#---------------------------------------------------------------------------
|
||||
|
||||
import etgtools
|
||||
import etgtools.tweaker_tools as tools
|
||||
|
||||
PACKAGE = "wx"
|
||||
MODULE = "_adv"
|
||||
NAME = "wizard" # Base name of the file to generate to for this script
|
||||
DOCSTRING = ""
|
||||
|
||||
# The classes and/or the basename of the Doxygen XML files to be processed by
|
||||
# this script.
|
||||
ITEMS = [ "wxWizardPage",
|
||||
"wxWizardPageSimple",
|
||||
"wxWizard",
|
||||
"wxWizardEvent",
|
||||
]
|
||||
|
||||
#---------------------------------------------------------------------------
|
||||
|
||||
def run():
|
||||
# Parse the XML file(s) building a collection of Extractor objects
|
||||
module = etgtools.ModuleDef(PACKAGE, MODULE, NAME, DOCSTRING)
|
||||
etgtools.parseDoxyXML(module, ITEMS)
|
||||
|
||||
#-----------------------------------------------------------------
|
||||
# Tweak the parsed meta objects in the module object as needed for
|
||||
# customizing the generated code and docstrings.
|
||||
|
||||
c = module.find('wxWizardPage')
|
||||
assert isinstance(c, etgtools.ClassDef)
|
||||
tools.fixWindowClass(c, False)
|
||||
|
||||
|
||||
c = module.find('wxWizardPageSimple')
|
||||
tools.fixWindowClass(c, False)
|
||||
c.addItem(etgtools.WigCode("""\
|
||||
virtual wxWizardPage* GetNext() const;
|
||||
virtual wxWizardPage* GetPrev() const;
|
||||
"""))
|
||||
|
||||
|
||||
c = module.find('wxWizard')
|
||||
tools.fixWindowClass(c, False)
|
||||
|
||||
|
||||
c = module.find('wxWizardEvent')
|
||||
tools.fixEventClass(c)
|
||||
c.addPyCode("""\
|
||||
EVT_WIZARD_PAGE_CHANGED = wx.PyEventBinder( wxEVT_WIZARD_PAGE_CHANGED, 1)
|
||||
EVT_WIZARD_PAGE_CHANGING = wx.PyEventBinder( wxEVT_WIZARD_PAGE_CHANGING, 1)
|
||||
EVT_WIZARD_CANCEL = wx.PyEventBinder( wxEVT_WIZARD_CANCEL, 1)
|
||||
EVT_WIZARD_HELP = wx.PyEventBinder( wxEVT_WIZARD_HELP, 1)
|
||||
EVT_WIZARD_FINISHED = wx.PyEventBinder( wxEVT_WIZARD_FINISHED, 1)
|
||||
EVT_WIZARD_PAGE_SHOWN = wx.PyEventBinder( wxEVT_WIZARD_PAGE_SHOWN, 1)
|
||||
""")
|
||||
|
||||
|
||||
#-----------------------------------------------------------------
|
||||
tools.doCommonTweaks(module)
|
||||
tools.runGenerators(module)
|
||||
|
||||
|
||||
#---------------------------------------------------------------------------
|
||||
if __name__ == '__main__':
|
||||
run()
|
||||
|
||||
88
unittests/test_wizard.py
Normal file
88
unittests/test_wizard.py
Normal file
@@ -0,0 +1,88 @@
|
||||
import imp_unittest, unittest
|
||||
import wtc
|
||||
import wx
|
||||
import wx.adv
|
||||
import os
|
||||
|
||||
pngFile = os.path.join(os.path.dirname(__file__), 'wizard.png')
|
||||
|
||||
#---------------------------------------------------------------------------
|
||||
|
||||
class MySimpleWizPage(wx.adv.WizardPageSimple):
|
||||
def __init__(self, parent, title):
|
||||
wx.adv.WizardPageSimple.__init__(self, parent)
|
||||
st = wx.StaticText(self, label='Wizard Page: %s' % title)
|
||||
st.SetFont(wx.Font(24, wx.FONTFAMILY_SWISS))
|
||||
sizer = wx.BoxSizer(wx.VERTICAL)
|
||||
sizer.Add(st, 0, wx.ALIGN_CENTER)
|
||||
sizer.Add(wx.StaticLine(self), 0, wx.EXPAND)
|
||||
self.SetSizer(sizer)
|
||||
|
||||
|
||||
|
||||
class wizard_Tests(wtc.WidgetTestCase):
|
||||
|
||||
def test_wizard1(self):
|
||||
wx.adv.WIZARD_EX_HELPBUTTON
|
||||
wx.adv.WIZARD_VALIGN_TOP
|
||||
wx.adv.WIZARD_VALIGN_CENTRE
|
||||
wx.adv.WIZARD_VALIGN_BOTTOM
|
||||
wx.adv.WIZARD_HALIGN_LEFT
|
||||
wx.adv.WIZARD_HALIGN_CENTRE
|
||||
wx.adv.WIZARD_HALIGN_RIGHT
|
||||
wx.adv.WIZARD_TILE
|
||||
|
||||
def test_wizard2(self):
|
||||
# Create the wizard
|
||||
bmp = wx.Bitmap(pngFile)
|
||||
wiz = wx.adv.Wizard(self.frame, title="Test Wizard 2", bitmap=bmp)
|
||||
|
||||
# create the pages
|
||||
pages = []
|
||||
for i in xrange(5):
|
||||
pages.append(MySimpleWizPage(wiz, str(i+1)))
|
||||
|
||||
# set the next/prev pages
|
||||
for idx, p in enumerate(pages):
|
||||
p.SetNext(pages[idx+1] if idx < len(pages)-1 else None)
|
||||
p.SetPrev(pages[idx-1] if idx > 0 else None)
|
||||
|
||||
wiz.FitToPage(pages[0])
|
||||
wx.CallLater(100, self._autoPilot, wiz)
|
||||
wiz.RunWizard(pages[0])
|
||||
wiz.Destroy()
|
||||
|
||||
def test_wizard3(self):
|
||||
# Same as above but use the Chain function to connect the pages
|
||||
bmp = wx.Bitmap(pngFile)
|
||||
wiz = wx.adv.Wizard(self.frame, title="Test Wizard 2", bitmap=bmp)
|
||||
|
||||
pages = []
|
||||
for i in xrange(5):
|
||||
pages.append(MySimpleWizPage(wiz, str(i+1)))
|
||||
|
||||
wx.adv.WizardPageSimple.Chain(pages[0], pages[1])
|
||||
wx.adv.WizardPageSimple.Chain(pages[1], pages[2])
|
||||
wx.adv.WizardPageSimple.Chain(pages[2], pages[3])
|
||||
wx.adv.WizardPageSimple.Chain(pages[3], pages[4])
|
||||
|
||||
wiz.FitToPage(pages[0])
|
||||
wx.CallLater(100, self._autoPilot, wiz)
|
||||
wiz.RunWizard(pages[0])
|
||||
wiz.Destroy()
|
||||
|
||||
|
||||
def _autoPilot(self, wiz):
|
||||
# simulate clicking the next button until the wizard closes
|
||||
if not wiz or not wiz.GetCurrentPage():
|
||||
return
|
||||
btn = wiz.FindWindowById(wx.ID_FORWARD)
|
||||
evt = wx.CommandEvent(wx.EVT_BUTTON.typeId, wx.ID_FORWARD)
|
||||
evt.SetEventObject(btn)
|
||||
wx.PostEvent(btn, evt)
|
||||
wx.CallLater(100, self._autoPilot, wiz)
|
||||
|
||||
#---------------------------------------------------------------------------
|
||||
|
||||
if __name__ == '__main__':
|
||||
unittest.main()
|
||||
BIN
unittests/wizard.png
Normal file
BIN
unittests/wizard.png
Normal file
Binary file not shown.
|
After Width: | Height: | Size: 1.6 KiB |
Reference in New Issue
Block a user