wxGraphicsRenderer
(wx)See external documentation: wxGraphicsRenderer.
See external documentation:
Functions
getDefaultRenderer() -> wxGraphicsRenderer()
See
createContext(This, Dc) -> wxGraphicsContext:wxGraphicsContext()
See
createPen(This, Pen) -> wxGraphicsPen:wxGraphicsPen()
This = wxGraphicsRenderer()
Pen = wxPen:wxPen()
See
createBrush(This, Brush) -> wxGraphicsBrush:wxGraphicsBrush()
This = wxGraphicsRenderer()
Brush = wxBrush:wxBrush()
See
createLinearGradientBrush(This, X1, Y1, X2, Y2, C1, C2) -> wxGraphicsBrush:wxGraphicsBrush()
This = wxGraphicsRenderer()
X1 = number()
Y1 = number()
X2 = number()
Y2 = number()
C1 = wx:wx_colour()
C2 = wx:wx_colour()
This function is deprecated: deprecated function not available in wxWidgets-2.9 and later
See
createRadialGradientBrush(This, Xo, Yo, Xc, Yc, Radius, OColor, CColor) -> wxGraphicsBrush:wxGraphicsBrush()
This = wxGraphicsRenderer()
Xo = number()
Yo = number()
Xc = number()
Yc = number()
Radius = number()
OColor = wx:wx_colour()
CColor = wx:wx_colour()
This function is deprecated: deprecated function not available in wxWidgets-2.9 and later
See
createFont(This, Font) -> wxGraphicsFont:wxGraphicsFont()
This = wxGraphicsRenderer()
Font = wxFont:wxFont()
Equivalent to createFont(This, Font, []).
createFont(This, Font, Options::[Option]) -> wxGraphicsFont:wxGraphicsFont()
This = wxGraphicsRenderer()
Font = wxFont:wxFont()
Option = {col, wx:wx_colour()}
See
createMatrix(This) -> wxGraphicsMatrix:wxGraphicsMatrix()
This = wxGraphicsRenderer()
Equivalent to createMatrix(This, []).
createMatrix(This, Options::[Option]) -> wxGraphicsMatrix:wxGraphicsMatrix()
This = wxGraphicsRenderer()
Option = {a, number()} | {b, number()} | {c, number()} | {d, number()} | {tx, number()} | {ty, number()}
See
createPath(This) -> wxGraphicsPath:wxGraphicsPath()
This = wxGraphicsRenderer()
See