reSWIGged

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@40375 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
Robin Dunn
2006-07-29 23:30:45 +00:00
parent 10044bf187
commit 1eeb270e7c
22 changed files with 5343 additions and 846 deletions

View File

@@ -200,6 +200,8 @@ ID_HELP_CONTENTS = _core_.ID_HELP_CONTENTS
ID_HELP_COMMANDS = _core_.ID_HELP_COMMANDS
ID_HELP_PROCEDURES = _core_.ID_HELP_PROCEDURES
ID_HELP_CONTEXT = _core_.ID_HELP_CONTEXT
ID_HELP_INDEX = _core_.ID_HELP_INDEX
ID_HELP_SEARCH = _core_.ID_HELP_SEARCH
ID_CLOSE_ALL = _core_.ID_CLOSE_ALL
ID_PREFERENCES = _core_.ID_PREFERENCES
ID_CUT = _core_.ID_CUT
@@ -844,6 +846,14 @@ class Size(object):
"""
return _core_.Size_DecTo(*args, **kwargs)
def Scale(*args, **kwargs):
"""
Scale(self, float xscale, float yscale)
Scales the dimensions of this object by the given factors.
"""
return _core_.Size_Scale(*args, **kwargs)
def Set(*args, **kwargs):
"""
Set(self, int w, int h)
@@ -8277,39 +8287,6 @@ class Window(EvtHandler):
"""
return _core_.Window_AcceptsFocusFromKeyboard(*args, **kwargs)
def GetDefaultItem(*args, **kwargs):
"""
GetDefaultItem(self) -> Window
Get the default child of this parent, i.e. the one which is activated
by pressing <Enter> such as the OK button on a wx.Dialog.
"""
return _core_.Window_GetDefaultItem(*args, **kwargs)
def SetDefaultItem(*args, **kwargs):
"""
SetDefaultItem(self, Window child) -> Window
Set this child as default, return the old default.
"""
return _core_.Window_SetDefaultItem(*args, **kwargs)
def SetTmpDefaultItem(*args, **kwargs):
"""
SetTmpDefaultItem(self, Window win)
Set this child as temporary default
"""
return _core_.Window_SetTmpDefaultItem(*args, **kwargs)
def GetTmpDefaultItem(*args, **kwargs):
"""
GetTmpDefaultItem(self) -> Window
Return the temporary default item, which can be None.
"""
return _core_.Window_GetTmpDefaultItem(*args, **kwargs)
def Navigate(*args, **kwargs):
"""
Navigate(self, int flags=NavigationKeyEvent.IsForward) -> bool
@@ -9173,6 +9150,10 @@ class Window(EvtHandler):
"""
return _core_.Window_PopupMenu(*args, **kwargs)
def HasMultiplePages(*args, **kwargs):
"""HasMultiplePages(self) -> bool"""
return _core_.Window_HasMultiplePages(*args, **kwargs)
def GetHandle(*args, **kwargs):
"""
GetHandle(self) -> long
@@ -10403,6 +10384,23 @@ class Control(Window):
"""
return _core_.Control_Create(*args, **kwargs)
def GetAlignment(*args, **kwargs):
"""
GetAlignment(self) -> int
Get the control alignment (left/right/centre, top/bottom/centre)
"""
return _core_.Control_GetAlignment(*args, **kwargs)
def GetLabelText(*args):
"""
GetLabelText(self, String label) -> String
GetLabelText(self) -> String
Get just the text of the label, without mnemonic characters ('&')
"""
return _core_.Control_GetLabelText(*args)
def Command(*args, **kwargs):
"""
Command(self, CommandEvent event)