reSWIGged

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@37374 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
Robin Dunn
2006-02-07 04:36:54 +00:00
parent 2ea1b3733b
commit b06b3e70d1
15 changed files with 2715 additions and 1435 deletions

View File

@@ -143,77 +143,250 @@ class PyWizardPage(WizardPage):
"""_setCallbackInfo(self, PyObject self, PyObject _class)"""
return _wizard.PyWizardPage__setCallbackInfo(*args, **kwargs)
def base_DoMoveWindow(*args, **kwargs):
"""base_DoMoveWindow(self, int x, int y, int width, int height)"""
return _wizard.PyWizardPage_base_DoMoveWindow(*args, **kwargs)
def DoMoveWindow(*args, **kwargs):
"""DoMoveWindow(self, int x, int y, int width, int height)"""
return _wizard.PyWizardPage_DoMoveWindow(*args, **kwargs)
def base_DoSetSize(*args, **kwargs):
"""base_DoSetSize(self, int x, int y, int width, int height, int sizeFlags=SIZE_AUTO)"""
return _wizard.PyWizardPage_base_DoSetSize(*args, **kwargs)
def DoSetSize(*args, **kwargs):
"""DoSetSize(self, int x, int y, int width, int height, int sizeFlags=SIZE_AUTO)"""
return _wizard.PyWizardPage_DoSetSize(*args, **kwargs)
def base_DoSetClientSize(*args, **kwargs):
"""base_DoSetClientSize(self, int width, int height)"""
return _wizard.PyWizardPage_base_DoSetClientSize(*args, **kwargs)
def DoSetClientSize(*args, **kwargs):
"""DoSetClientSize(self, int width, int height)"""
return _wizard.PyWizardPage_DoSetClientSize(*args, **kwargs)
def base_DoSetVirtualSize(*args, **kwargs):
"""base_DoSetVirtualSize(self, int x, int y)"""
return _wizard.PyWizardPage_base_DoSetVirtualSize(*args, **kwargs)
def DoSetVirtualSize(*args, **kwargs):
"""DoSetVirtualSize(self, int x, int y)"""
return _wizard.PyWizardPage_DoSetVirtualSize(*args, **kwargs)
def base_DoGetSize(*args, **kwargs):
"""base_DoGetSize() -> (width, height)"""
return _wizard.PyWizardPage_base_DoGetSize(*args, **kwargs)
def DoGetSize(*args, **kwargs):
"""DoGetSize() -> (width, height)"""
return _wizard.PyWizardPage_DoGetSize(*args, **kwargs)
def base_DoGetClientSize(*args, **kwargs):
"""base_DoGetClientSize() -> (width, height)"""
return _wizard.PyWizardPage_base_DoGetClientSize(*args, **kwargs)
def DoGetClientSize(*args, **kwargs):
"""DoGetClientSize() -> (width, height)"""
return _wizard.PyWizardPage_DoGetClientSize(*args, **kwargs)
def base_DoGetPosition(*args, **kwargs):
"""base_DoGetPosition() -> (x,y)"""
return _wizard.PyWizardPage_base_DoGetPosition(*args, **kwargs)
def DoGetPosition(*args, **kwargs):
"""DoGetPosition() -> (x,y)"""
return _wizard.PyWizardPage_DoGetPosition(*args, **kwargs)
def base_DoGetVirtualSize(*args, **kwargs):
"""base_DoGetVirtualSize(self) -> Size"""
return _wizard.PyWizardPage_base_DoGetVirtualSize(*args, **kwargs)
def DoGetVirtualSize(*args, **kwargs):
"""DoGetVirtualSize(self) -> Size"""
return _wizard.PyWizardPage_DoGetVirtualSize(*args, **kwargs)
def base_DoGetBestSize(*args, **kwargs):
"""base_DoGetBestSize(self) -> Size"""
return _wizard.PyWizardPage_base_DoGetBestSize(*args, **kwargs)
def DoGetBestSize(*args, **kwargs):
"""DoGetBestSize(self) -> Size"""
return _wizard.PyWizardPage_DoGetBestSize(*args, **kwargs)
def base_InitDialog(*args, **kwargs):
"""base_InitDialog(self)"""
return _wizard.PyWizardPage_base_InitDialog(*args, **kwargs)
def InitDialog(*args, **kwargs):
"""
InitDialog(self)
def base_TransferDataToWindow(*args, **kwargs):
"""base_TransferDataToWindow(self) -> bool"""
return _wizard.PyWizardPage_base_TransferDataToWindow(*args, **kwargs)
Sends an EVT_INIT_DIALOG event, whose handler usually transfers data
to the dialog via validators.
"""
return _wizard.PyWizardPage_InitDialog(*args, **kwargs)
def base_TransferDataFromWindow(*args, **kwargs):
"""base_TransferDataFromWindow(self) -> bool"""
return _wizard.PyWizardPage_base_TransferDataFromWindow(*args, **kwargs)
def TransferDataToWindow(*args, **kwargs):
"""
TransferDataToWindow(self) -> bool
def base_Validate(*args, **kwargs):
"""base_Validate(self) -> bool"""
return _wizard.PyWizardPage_base_Validate(*args, **kwargs)
Transfers values to child controls from data areas specified by their
validators. If the window has wx.WS_EX_VALIDATE_RECURSIVELY extra
style flag set, the method will also call TransferDataToWindow() of
all child windows.
"""
return _wizard.PyWizardPage_TransferDataToWindow(*args, **kwargs)
def base_AcceptsFocus(*args, **kwargs):
"""base_AcceptsFocus(self) -> bool"""
return _wizard.PyWizardPage_base_AcceptsFocus(*args, **kwargs)
def TransferDataFromWindow(*args, **kwargs):
"""
TransferDataFromWindow(self) -> bool
def base_AcceptsFocusFromKeyboard(*args, **kwargs):
"""base_AcceptsFocusFromKeyboard(self) -> bool"""
return _wizard.PyWizardPage_base_AcceptsFocusFromKeyboard(*args, **kwargs)
Transfers values from child controls to data areas specified by their
validators. Returns false if a transfer failed. If the window has
wx.WS_EX_VALIDATE_RECURSIVELY extra style flag set, the method will
also call TransferDataFromWindow() of all child windows.
"""
return _wizard.PyWizardPage_TransferDataFromWindow(*args, **kwargs)
def base_GetMaxSize(*args, **kwargs):
"""base_GetMaxSize(self) -> Size"""
return _wizard.PyWizardPage_base_GetMaxSize(*args, **kwargs)
def Validate(*args, **kwargs):
"""
Validate(self) -> bool
def base_AddChild(*args, **kwargs):
"""base_AddChild(self, Window child)"""
return _wizard.PyWizardPage_base_AddChild(*args, **kwargs)
Validates the current values of the child controls using their
validators. If the window has wx.WS_EX_VALIDATE_RECURSIVELY extra
style flag set, the method will also call Validate() of all child
windows. Returns false if any of the validations failed.
"""
return _wizard.PyWizardPage_Validate(*args, **kwargs)
def base_RemoveChild(*args, **kwargs):
"""base_RemoveChild(self, Window child)"""
return _wizard.PyWizardPage_base_RemoveChild(*args, **kwargs)
def AcceptsFocus(*args, **kwargs):
"""
AcceptsFocus(self) -> bool
Can this window have focus?
"""
return _wizard.PyWizardPage_AcceptsFocus(*args, **kwargs)
def AcceptsFocusFromKeyboard(*args, **kwargs):
"""
AcceptsFocusFromKeyboard(self) -> bool
Can this window be given focus by keyboard navigation? if not, the
only way to give it focus (provided it accepts it at all) is to click
it.
"""
return _wizard.PyWizardPage_AcceptsFocusFromKeyboard(*args, **kwargs)
def GetMaxSize(*args, **kwargs):
"""GetMaxSize(self) -> Size"""
return _wizard.PyWizardPage_GetMaxSize(*args, **kwargs)
def AddChild(*args, **kwargs):
"""
AddChild(self, Window child)
Adds a child window. This is called automatically by window creation
functions so should not be required by the application programmer.
"""
return _wizard.PyWizardPage_AddChild(*args, **kwargs)
def RemoveChild(*args, **kwargs):
"""
RemoveChild(self, Window child)
Removes a child window. This is called automatically by window
deletion functions so should not be required by the application
programmer.
"""
return _wizard.PyWizardPage_RemoveChild(*args, **kwargs)
def ShouldInheritColours(*args, **kwargs):
"""
ShouldInheritColours(self) -> bool
Return true from here to allow the colours of this window to be
changed by InheritAttributes, returning false forbids inheriting them
from the parent window.
The base class version returns false, but this method is overridden in
wxControl where it returns true.
"""
return _wizard.PyWizardPage_ShouldInheritColours(*args, **kwargs)
def GetDefaultAttributes(*args, **kwargs):
"""GetDefaultAttributes(self) -> VisualAttributes"""
return _wizard.PyWizardPage_GetDefaultAttributes(*args, **kwargs)
def OnInternalIdle(*args, **kwargs):
"""OnInternalIdle(self)"""
return _wizard.PyWizardPage_OnInternalIdle(*args, **kwargs)
def base_DoMoveWindow(*args, **kw):
return PyWizardPage.DoMoveWindow(*args, **kw)
base_DoMoveWindow = wx._deprecated(base_DoMoveWindow,
"Please use PyWizardPage.DoMoveWindow instead.")
def base_DoSetSize(*args, **kw):
return PyWizardPage.DoSetSize(*args, **kw)
base_DoSetSize = wx._deprecated(base_DoSetSize,
"Please use PyWizardPage.DoSetSize instead.")
def base_DoSetClientSize(*args, **kw):
return PyWizardPage.DoSetClientSize(*args, **kw)
base_DoSetClientSize = wx._deprecated(base_DoSetClientSize,
"Please use PyWizardPage.DoSetClientSize instead.")
def base_DoSetVirtualSize(*args, **kw):
return PyWizardPage.DoSetVirtualSize(*args, **kw)
base_DoSetVirtualSize = wx._deprecated(base_DoSetVirtualSize,
"Please use PyWizardPage.DoSetVirtualSize instead.")
def base_DoGetSize(*args, **kw):
return PyWizardPage.DoGetSize(*args, **kw)
base_DoGetSize = wx._deprecated(base_DoGetSize,
"Please use PyWizardPage.DoGetSize instead.")
def base_DoGetClientSize(*args, **kw):
return PyWizardPage.DoGetClientSize(*args, **kw)
base_DoGetClientSize = wx._deprecated(base_DoGetClientSize,
"Please use PyWizardPage.DoGetClientSize instead.")
def base_DoGetPosition(*args, **kw):
return PyWizardPage.DoGetPosition(*args, **kw)
base_DoGetPosition = wx._deprecated(base_DoGetPosition,
"Please use PyWizardPage.DoGetPosition instead.")
def base_DoGetVirtualSize(*args, **kw):
return PyWizardPage.DoGetVirtualSize(*args, **kw)
base_DoGetVirtualSize = wx._deprecated(base_DoGetVirtualSize,
"Please use PyWizardPage.DoGetVirtualSize instead.")
def base_DoGetBestSize(*args, **kw):
return PyWizardPage.DoGetBestSize(*args, **kw)
base_DoGetBestSize = wx._deprecated(base_DoGetBestSize,
"Please use PyWizardPage.DoGetBestSize instead.")
def base_InitDialog(*args, **kw):
return PyWizardPage.InitDialog(*args, **kw)
base_InitDialog = wx._deprecated(base_InitDialog,
"Please use PyWizardPage.InitDialog instead.")
def base_TransferDataToWindow(*args, **kw):
return PyWizardPage.TransferDataToWindow(*args, **kw)
base_TransferDataToWindow = wx._deprecated(base_TransferDataToWindow,
"Please use PyWizardPage.TransferDataToWindow instead.")
def base_TransferDataFromWindow(*args, **kw):
return PyWizardPage.TransferDataFromWindow(*args, **kw)
base_TransferDataFromWindow = wx._deprecated(base_TransferDataFromWindow,
"Please use PyWizardPage.TransferDataFromWindow instead.")
def base_Validate(*args, **kw):
return PyWizardPage.Validate(*args, **kw)
base_Validate = wx._deprecated(base_Validate,
"Please use PyWizardPage.Validate instead.")
def base_AcceptsFocus(*args, **kw):
return PyWizardPage.AcceptsFocus(*args, **kw)
base_AcceptsFocus = wx._deprecated(base_AcceptsFocus,
"Please use PyWizardPage.AcceptsFocus instead.")
def base_AcceptsFocusFromKeyboard(*args, **kw):
return PyWizardPage.AcceptsFocusFromKeyboard(*args, **kw)
base_AcceptsFocusFromKeyboard = wx._deprecated(base_AcceptsFocusFromKeyboard,
"Please use PyWizardPage.AcceptsFocusFromKeyboard instead.")
def base_GetMaxSize(*args, **kw):
return PyWizardPage.GetMaxSize(*args, **kw)
base_GetMaxSize = wx._deprecated(base_GetMaxSize,
"Please use PyWizardPage.GetMaxSize instead.")
def base_AddChild(*args, **kw):
return PyWizardPage.AddChild(*args, **kw)
base_AddChild = wx._deprecated(base_AddChild,
"Please use PyWizardPage.AddChild instead.")
def base_RemoveChild(*args, **kw):
return PyWizardPage.RemoveChild(*args, **kw)
base_RemoveChild = wx._deprecated(base_RemoveChild,
"Please use PyWizardPage.RemoveChild instead.")
def base_ShouldInheritColours(*args, **kw):
return PyWizardPage.ShouldInheritColours(*args, **kw)
base_ShouldInheritColours = wx._deprecated(base_ShouldInheritColours,
"Please use PyWizardPage.ShouldInheritColours instead.")
def base_GetDefaultAttributes(*args, **kw):
return PyWizardPage.GetDefaultAttributes(*args, **kw)
base_GetDefaultAttributes = wx._deprecated(base_GetDefaultAttributes,
"Please use PyWizardPage.GetDefaultAttributes instead.")
def base_OnInternalIdle(*args, **kw):
return PyWizardPage.OnInternalIdle(*args, **kw)
base_OnInternalIdle = wx._deprecated(base_OnInternalIdle,
"Please use PyWizardPage.OnInternalIdle instead.")
class PyWizardPagePtr(PyWizardPage):