Beginings of wxX11 support. Much more to do but I have no more time

for it today.


git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@25111 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
Robin Dunn
2004-01-09 18:34:52 +00:00
parent 6d9d6350fd
commit f87da72205
18 changed files with 40 additions and 62 deletions

View File

@@ -579,7 +579,7 @@ class Icon(GDIObject):
def __repr__(self):
return "<%s.%s; proxy of C++ wxIcon instance at %s>" % (self.__class__.__module__, self.__class__.__name__, self.this,)
def __init__(self, *args, **kwargs):
"""__init__(String name, long flags, int desiredWidth=-1, int desiredHeight=-1) -> Icon"""
"""__init__(String name, int type, int desiredWidth=-1, int desiredHeight=-1) -> Icon"""
newobj = _gdi.new_Icon(*args, **kwargs)
self.this = newobj.this
self.thisown = 1
@@ -591,7 +591,7 @@ class Icon(GDIObject):
except: pass
def LoadFile(*args, **kwargs):
"""LoadFile(String name, long flags) -> bool"""
"""LoadFile(String name, int type) -> bool"""
return _gdi.Icon_LoadFile(*args, **kwargs)
def Ok(*args, **kwargs):