reSWIGged

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@43093 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
Robin Dunn
2006-11-05 22:07:02 +00:00
parent edd13c9d8a
commit f89238b9fe
18 changed files with 372 additions and 396 deletions

View File

@@ -5369,6 +5369,17 @@ class GraphicsContext(GraphicsObject):
return val
Create = staticmethod(Create)
def CreateMeasuringContext(*args):
"""
CreateMeasuringContext() -> GraphicsContext
Create a lightwieght context that can be used for measuring text only.
"""
val = _gdi_.GraphicsContext_CreateMeasuringContext(*args)
val.__dc = args[0] # save a ref so the dc will not be deleted before self
return val
CreateMeasuringContext = staticmethod(CreateMeasuringContext)
def CreateFromNative(*args, **kwargs):
"""
CreateFromNative(void context) -> GraphicsContext
@@ -5604,18 +5615,14 @@ class GraphicsContext(GraphicsObject):
def DrawText(*args, **kwargs):
"""
DrawText(self, String str, Double x, Double y)
DrawText(self, String str, Double x, Double y, GraphicsBrush backgroundBrush=NullGraphicsBrush)
Draws a text at the defined position.
Draws a text string at the defined position.
"""
return _gdi_.GraphicsContext_DrawText(*args, **kwargs)
def DrawRotatedText(*args, **kwargs):
"""
DrawRotatedText(self, String str, Double x, Double y, Double angle)
Draws a text at the defined position, at the given angle.
"""
"""DrawRotatedText(self, String str, Double x, Double y, Double angle, GraphicsBrush backgroundBrush=NullGraphicsBrush)"""
return _gdi_.GraphicsContext_DrawRotatedText(*args, **kwargs)
def GetFullTextExtent(*args, **kwargs):
@@ -5750,6 +5757,16 @@ def GraphicsContext_Create(*args):
val.__dc = args[0] # save a ref so the dc will not be deleted before self
return val
def GraphicsContext_CreateMeasuringContext(*args):
"""
GraphicsContext_CreateMeasuringContext() -> GraphicsContext
Create a lightwieght context that can be used for measuring text only.
"""
val = _gdi_.GraphicsContext_CreateMeasuringContext(*args)
val.__dc = args[0] # save a ref so the dc will not be deleted before self
return val
def GraphicsContext_CreateFromNative(*args, **kwargs):
"""
GraphicsContext_CreateFromNative(void context) -> GraphicsContext
@@ -5787,6 +5804,10 @@ class GraphicsRenderer(_core.Object):
"""
return _gdi_.GraphicsRenderer_CreateContext(*args)
def CreateMeasuringContext(*args, **kwargs):
"""CreateMeasuringContext(self) -> GraphicsContext"""
return _gdi_.GraphicsRenderer_CreateMeasuringContext(*args, **kwargs)
def CreateContextFromNativeContext(*args, **kwargs):
"""CreateContextFromNativeContext(self, void context) -> GraphicsContext"""
return _gdi_.GraphicsRenderer_CreateContextFromNativeContext(*args, **kwargs)