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