X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/423f194a1411e8aac372de29ef4a7ab5f90acb04..d1b3039b9f78214fd3d45b6f123d6a0d964038ad:/wxPython/src/msw/wizard.py diff --git a/wxPython/src/msw/wizard.py b/wxPython/src/msw/wizard.py index 55feb72b34..fd98bc0f72 100644 --- a/wxPython/src/msw/wizard.py +++ b/wxPython/src/msw/wizard.py @@ -19,12 +19,13 @@ EVT_WIZARD_HELP = wx.PyEventBinder( wxEVT_WIZARD_HELP, 1) EVT_WIZARD_FINISHED = wx.PyEventBinder( wxEVT_WIZARD_FINISHED, 1) class WizardEvent(core.NotifyEvent): - """""" def __repr__(self): return "<%s.%s; proxy of C++ wxWizardEvent instance at %s>" % (self.__class__.__module__, self.__class__.__name__, self.this,) def __init__(self, *args, **kwargs): - """__init__(wxEventType type=wxEVT_NULL, int id=-1, bool direction=True, - WizardPage page=None) -> WizardEvent""" + """ + __init__(wxEventType type=wxEVT_NULL, int id=-1, bool direction=True, + WizardPage page=None) -> WizardEvent + """ newobj = _wizard.new_WizardEvent(*args, **kwargs) self.this = newobj.this self.thisown = 1 @@ -46,12 +47,11 @@ class WizardEventPtr(WizardEvent): _wizard.WizardEvent_swigregister(WizardEventPtr) class WizardPage(windows.Panel): - """""" def __init__(self): raise RuntimeError, "No constructor defined" def __repr__(self): return "<%s.%s; proxy of C++ wxWizardPage instance at %s>" % (self.__class__.__module__, self.__class__.__name__, self.this,) def Create(*args, **kwargs): - """Create(Wizard parent, wxBitmap bitmap=wxNullBitmap, wxString resource=wxPyEmptyString) -> bool""" + """Create(Wizard parent, Bitmap bitmap=wxNullBitmap, String resource=EmptyString) -> bool""" return _wizard.WizardPage_Create(*args, **kwargs) def GetPrev(*args, **kwargs): @@ -63,7 +63,7 @@ class WizardPage(windows.Panel): return _wizard.WizardPage_GetNext(*args, **kwargs) def GetBitmap(*args, **kwargs): - """GetBitmap() -> wxBitmap""" + """GetBitmap() -> Bitmap""" return _wizard.WizardPage_GetBitmap(*args, **kwargs) @@ -75,11 +75,10 @@ class WizardPagePtr(WizardPage): _wizard.WizardPage_swigregister(WizardPagePtr) class PyWizardPage(WizardPage): - """""" def __repr__(self): return "<%s.%s; proxy of C++ wxPyWizardPage instance at %s>" % (self.__class__.__module__, self.__class__.__name__, self.this,) def __init__(self, *args, **kwargs): - """__init__(Wizard parent, wxBitmap bitmap=&wxNullBitmap, wxString resource=&wxPyEmptyString) -> PyWizardPage""" + """__init__(Wizard parent, Bitmap bitmap=&wxNullBitmap, String resource=&wxPyEmptyString) -> PyWizardPage""" newobj = _wizard.new_PyWizardPage(*args, **kwargs) self.this = newobj.this self.thisown = 1 @@ -87,7 +86,7 @@ class PyWizardPage(WizardPage): self._setCallbackInfo(self, PyWizardPage);self._setOORInfo(self) def Create(*args, **kwargs): - """Create(Wizard parent, wxBitmap bitmap=wxNullBitmap, wxString resource=wxPyEmptyString) -> bool""" + """Create(Wizard parent, Bitmap bitmap=wxNullBitmap, String resource=EmptyString) -> bool""" return _wizard.PyWizardPage_Create(*args, **kwargs) def _setCallbackInfo(*args, **kwargs): @@ -111,15 +110,15 @@ class PyWizardPage(WizardPage): return _wizard.PyWizardPage_base_DoSetVirtualSize(*args, **kwargs) def base_DoGetSize(*args, **kwargs): - """base_DoGetSize(int OUTPUT, int OUTPUT)""" + """base_DoGetSize() -> (width, height)""" return _wizard.PyWizardPage_base_DoGetSize(*args, **kwargs) def base_DoGetClientSize(*args, **kwargs): - """base_DoGetClientSize(int OUTPUT, int OUTPUT)""" + """base_DoGetClientSize() -> (width, height)""" return _wizard.PyWizardPage_base_DoGetClientSize(*args, **kwargs) def base_DoGetPosition(*args, **kwargs): - """base_DoGetPosition(int OUTPUT, int OUTPUT)""" + """base_DoGetPosition() -> (x,y)""" return _wizard.PyWizardPage_base_DoGetPosition(*args, **kwargs) def base_DoGetVirtualSize(*args, **kwargs): @@ -181,12 +180,13 @@ def PrePyWizardPage(*args, **kwargs): return val class WizardPageSimple(WizardPage): - """""" def __repr__(self): return "<%s.%s; proxy of C++ wxWizardPageSimple instance at %s>" % (self.__class__.__module__, self.__class__.__name__, self.this,) def __init__(self, *args, **kwargs): - """__init__(Wizard parent, WizardPage prev=None, WizardPage next=None, - wxBitmap bitmap=wxNullBitmap, wxChar resource=None) -> WizardPageSimple""" + """ + __init__(Wizard parent, WizardPage prev=None, WizardPage next=None, + Bitmap bitmap=wxNullBitmap, wxChar resource=None) -> WizardPageSimple + """ newobj = _wizard.new_WizardPageSimple(*args, **kwargs) self.this = newobj.this self.thisown = 1 @@ -194,8 +194,10 @@ class WizardPageSimple(WizardPage): self._setOORInfo(self) def Create(*args, **kwargs): - """Create(Wizard parent=None, WizardPage prev=None, WizardPage next=None, - wxBitmap bitmap=wxNullBitmap, wxChar resource=None) -> bool""" + """ + Create(Wizard parent=None, WizardPage prev=None, WizardPage next=None, + Bitmap bitmap=wxNullBitmap, wxChar resource=None) -> bool + """ return _wizard.WizardPageSimple_Create(*args, **kwargs) def SetPrev(*args, **kwargs): @@ -207,7 +209,7 @@ class WizardPageSimple(WizardPage): return _wizard.WizardPageSimple_SetNext(*args, **kwargs) def Chain(*args, **kwargs): - """WizardPageSimple.Chain(WizardPageSimple first, WizardPageSimple second)""" + """Chain(WizardPageSimple first, WizardPageSimple second)""" return _wizard.WizardPageSimple_Chain(*args, **kwargs) Chain = staticmethod(Chain) @@ -230,13 +232,14 @@ def WizardPageSimple_Chain(*args, **kwargs): return _wizard.WizardPageSimple_Chain(*args, **kwargs) class Wizard(windows.Dialog): - """""" def __repr__(self): return "<%s.%s; proxy of C++ wxWizard instance at %s>" % (self.__class__.__module__, self.__class__.__name__, self.this,) def __init__(self, *args, **kwargs): - """__init__(Window parent, int id=-1, wxString title=wxEmptyString, - wxBitmap bitmap=wxNullBitmap, Point pos=DefaultPosition, - long style=DEFAULT_DIALOG_STYLE) -> Wizard""" + """ + __init__(Window parent, int id=-1, String title=EmptyString, + Bitmap bitmap=wxNullBitmap, Point pos=DefaultPosition, + long style=DEFAULT_DIALOG_STYLE) -> Wizard + """ newobj = _wizard.new_Wizard(*args, **kwargs) self.this = newobj.this self.thisown = 1 @@ -244,8 +247,10 @@ class Wizard(windows.Dialog): self._setOORInfo(self) def Create(*args, **kwargs): - """Create(Window parent, int id=-1, wxString title=wxEmptyString, - wxBitmap bitmap=wxNullBitmap, Point pos=DefaultPosition) -> bool""" + """ + Create(Window parent, int id=-1, String title=EmptyString, + Bitmap bitmap=wxNullBitmap, Point pos=DefaultPosition) -> bool + """ return _wizard.Wizard_Create(*args, **kwargs) def Init(*args, **kwargs):