]> git.saurik.com Git - wxWidgets.git/blame - wxPython/wxPython/wizard.py
attempt to disable experimental font dialog for OS X 10.2 (to fix the tinderbox build)
[wxWidgets.git] / wxPython / wxPython / wizard.py
CommitLineData
d14a1e28
RD
1## This file reverse renames symbols in the wx package to give
2## them their wx prefix again, for backwards compatibility.
3##
237302e7 4## Generated by BuildRenamers in config.py
d14a1e28
RD
5
6# This silly stuff here is so the wxPython.wx module doesn't conflict
7# with the wx package. We need to import modules from the wx package
8# here, then we'll put the wxPython.wx entry back in sys.modules.
9import sys
10_wx = None
11if sys.modules.has_key('wxPython.wx'):
12 _wx = sys.modules['wxPython.wx']
13 del sys.modules['wxPython.wx']
14
15import wx.wizard
16
17sys.modules['wxPython.wx'] = _wx
18del sys, _wx
19
20
21# Now assign all the reverse-renamed names:
22wxWIZARD_EX_HELPBUTTON = wx.wizard.WIZARD_EX_HELPBUTTON
23wxEVT_WIZARD_PAGE_CHANGED = wx.wizard.wxEVT_WIZARD_PAGE_CHANGED
24wxEVT_WIZARD_PAGE_CHANGING = wx.wizard.wxEVT_WIZARD_PAGE_CHANGING
25wxEVT_WIZARD_CANCEL = wx.wizard.wxEVT_WIZARD_CANCEL
26wxEVT_WIZARD_HELP = wx.wizard.wxEVT_WIZARD_HELP
27wxEVT_WIZARD_FINISHED = wx.wizard.wxEVT_WIZARD_FINISHED
28wxWizardEvent = wx.wizard.WizardEvent
29wxWizardPage = wx.wizard.WizardPage
d14a1e28 30wxPyWizardPage = wx.wizard.PyWizardPage
bf5ff0c3 31wxPrePyWizardPage = wx.wizard.PrePyWizardPage
d14a1e28 32wxWizardPageSimple = wx.wizard.WizardPageSimple
bf5ff0c3
RD
33wxPreWizardPageSimple = wx.wizard.PreWizardPageSimple
34wxWizardPageSimple_Chain = wx.wizard.WizardPageSimple_Chain
d14a1e28 35wxWizard = wx.wizard.Wizard
bf5ff0c3 36wxPreWizard = wx.wizard.PreWizard
d14a1e28
RD
37
38
39d = globals()
40for k, v in wx.wizard.__dict__.iteritems():
41 if k.startswith('EVT'):
42 d[k] = v
43del d, k, v
44
45
46