wxGraphicsRenderer

See external documentation: wxGraphicsRenderer.

See external documentation: wxGraphicsRenderer.

Types


wxGraphicsRenderer() = wx:wx_object()

Functions


getDefaultRenderer() -> wxGraphicsRenderer()

See external documentation.

createContext(This, Dc) -> wxGraphicsContext() (see module wxGraphicsContext)

  • This = wxGraphicsRenderer()
  • Dc = wxWindowDC() (see module wxWindowDC) | wxWindow() (see module wxWindow)

See external documentation.

createPen(This, Pen) -> wxGraphicsPen() (see module wxGraphicsPen)

  • This = wxGraphicsRenderer()
  • Pen = wxPen() (see module wxPen)

See external documentation.

createBrush(This, Brush) -> wxGraphicsBrush() (see module wxGraphicsBrush)

  • This = wxGraphicsRenderer()
  • Brush = wxBrush() (see module wxBrush)

See external documentation.

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 external documentation.

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 external documentation.

createFont(This, Font) -> wxGraphicsFont() (see module wxGraphicsFont)

  • This = wxGraphicsRenderer()
  • Font = wxFont() (see module wxFont)

createFont(This, Font, Options::[Option]) -> wxGraphicsFont() (see module wxGraphicsFont)

  • This = wxGraphicsRenderer()
  • Font = wxFont() (see module wxFont)
  • Option = {col, wx_colour() (see module wx)}

See external documentation.

createMatrix(This) -> wxGraphicsMatrix() (see module wxGraphicsMatrix)

  • This = wxGraphicsRenderer()

Equivalent to createMatrix(This, []).

createMatrix(This, Options::[Option]) -> wxGraphicsMatrix() (see module wxGraphicsMatrix)

  • This = wxGraphicsRenderer()
  • Option = {a, number()} | {b, number()} | {c, number()} | {d, number()} | {tx, number()} | {ty, number()}

See external documentation.

createPath(This) -> wxGraphicsPath() (see module wxGraphicsPath)

  • This = wxGraphicsRenderer()

See external documentation.