reSWIGged

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@37584 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
Robin Dunn
2006-02-14 22:13:50 +00:00
parent e17b4db3f8
commit b1fcee843e
67 changed files with 2976 additions and 460 deletions

View File

@@ -440,6 +440,15 @@ class TopLevelWindow(_core.Window):
"""MacGetMetalAppearance(self) -> bool"""
return _windows_.TopLevelWindow_MacGetMetalAppearance(*args, **kwargs)
def CenterOnScreen(*args, **kwargs):
"""
CenterOnScreen(self, int dir=BOTH)
Center the window on screen
"""
return _windows_.TopLevelWindow_CenterOnScreen(*args, **kwargs)
CentreOnScreen = CenterOnScreen
class TopLevelWindowPtr(TopLevelWindow):
def __init__(self, this):
@@ -649,6 +658,22 @@ class Dialog(TopLevelWindow):
"""GetReturnCode(self) -> int"""
return _windows_.Dialog_GetReturnCode(*args, **kwargs)
def SetAffirmativeId(*args, **kwargs):
"""SetAffirmativeId(self, int affirmativeId)"""
return _windows_.Dialog_SetAffirmativeId(*args, **kwargs)
def GetAffirmativeId(*args, **kwargs):
"""GetAffirmativeId(self) -> int"""
return _windows_.Dialog_GetAffirmativeId(*args, **kwargs)
def SetEscapeId(*args, **kwargs):
"""SetEscapeId(self, int escapeId)"""
return _windows_.Dialog_SetEscapeId(*args, **kwargs)
def GetEscapeId(*args, **kwargs):
"""GetEscapeId(self) -> int"""
return _windows_.Dialog_GetEscapeId(*args, **kwargs)
def CreateTextSizer(*args, **kwargs):
"""CreateTextSizer(self, String message) -> Sizer"""
return _windows_.Dialog_CreateTextSizer(*args, **kwargs)