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

@@ -2729,6 +2729,34 @@ class DC(_core.Object):
"""
return _gdi_.DC_FloodFillPoint(*args, **kwargs)
def GradientFillConcentric(*args, **kwargs):
"""
GradientFillConcentric(self, Rect rect, Colour initialColour, Colour destColour,
Point circleCenter)
Fill the area specified by rect with a radial gradient, starting from
initialColour in the center of the circle and fading to destColour on
the outside of the circle. The circleCenter argument is the relative
coordinants of the center of the circle in the specified rect.
Note: Currently this function is very slow, don't use it for real-time
drawing.
"""
return _gdi_.DC_GradientFillConcentric(*args, **kwargs)
def GradientFillLinear(*args, **kwargs):
"""
GradientFillLinear(self, Rect rect, Colour initialColour, Colour destColour,
int nDirection=EAST)
Fill the area specified by rect with a linear gradient, starting from
initialColour and eventually fading to destColour. The nDirection
parameter specifies the direction of the colour change, default is to
use initialColour on the left part of the rectangle and destColour on
the right side.
"""
return _gdi_.DC_GradientFillLinear(*args, **kwargs)
def GetPixel(*args, **kwargs):
"""
GetPixel(self, int x, int y) -> Colour