reSWIGged

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@33376 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
Robin Dunn
2005-04-06 04:28:28 +00:00
parent a22318a0a9
commit 3215336ed0
6 changed files with 82 additions and 2 deletions

View File

@@ -8290,6 +8290,18 @@ def FindWindowByLabel(*args, **kwargs):
def Window_FromHWND(*args, **kwargs):
"""Window_FromHWND(Window parent, unsigned long _hWnd) -> Window"""
return _core_.Window_FromHWND(*args, **kwargs)
def GetTopLevelWindows(*args, **kwargs):
"""
GetTopLevelWindows() -> PyObject
Returns a list of the the application's top-level windows, (frames,
dialogs, etc.) NOTE: Currently this is a copy of the list maintained
by wxWidgets, and so it is only valid as long as no top-level windows
are closed or new top-level windows are created.
"""
return _core_.GetTopLevelWindows(*args, **kwargs)
#---------------------------------------------------------------------------
class Validator(EvtHandler):