reSWIGged

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@37375 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
Robin Dunn
2006-02-07 04:42:55 +00:00
parent b06b3e70d1
commit 7f7aa1664c
14 changed files with 2719 additions and 1431 deletions

View File

@@ -2682,27 +2682,10 @@ class DC(_core.Object):
if self.thisown: destroy(self)
except: pass
def BeginDrawing(*args, **kwargs):
"""
BeginDrawing(self)
Allows for optimization of drawing code on platforms that need it. On
other platforms this is just an empty function and is harmless. To
take advantage of this postential optimization simply enclose each
group of calls to the drawing primitives within calls to
`BeginDrawing` and `EndDrawing`.
"""
return _gdi_.DC_BeginDrawing(*args, **kwargs)
def EndDrawing(*args, **kwargs):
"""
EndDrawing(self)
Ends the group of drawing primitives started with `BeginDrawing`, and
invokes whatever optimization is available for this DC type on the
current platform.
"""
return _gdi_.DC_EndDrawing(*args, **kwargs)
# These have been deprecated in wxWidgets. Since they never
# really did anything to begin with, just make them be NOPs.
def BeginDrawing(self): pass
def EndDrawing(self): pass
def FloodFill(*args, **kwargs):
"""