SPH
|
#include <RenderContext.h>
Public Member Functions | |
PreviewRenderContext (Bitmap< Rgba > &bitmap) | |
virtual Pixel | size () const override |
Returns the size of the canvas associated with the context. More... | |
virtual void | setColor (const Rgba &color, const Flags< ColorFlag > flags) override |
Selects the color for one or more drawing modes. More... | |
virtual void | setThickness (const float newThickness) override |
Modifies the thickness of the lines. More... | |
virtual void | setFontSize (const int newFontSize) override |
virtual void | fill (const Rgba &color) override |
Fills the whole canvas with given color. More... | |
virtual void | drawLine (const Coords p1, const Coords p2) override |
Draws a line connecting two points. More... | |
virtual void | drawCircle (const Coords center, const float radius) override |
Draws a circle, given its center and a radius. More... | |
virtual void | drawTriangle (const Coords p1, const Coords p2, const Coords p3) override |
Draws a triangle given three points. More... | |
virtual void | drawBitmap (const Coords p, const Bitmap< Rgba > &subBitmap) override |
Draws a bitmap, given the position of its left-top corner. More... | |
virtual void | drawText (const Coords p, const Flags< TextAlign > align, const std::string &s) override |
virtual void | drawText (const Coords p, const Flags< TextAlign > align, const std::wstring &s) override |
virtual Array< IRenderOutput::Label > | getLabels () const override |
![]() | |
virtual | ~Polymorphic () |
Protected Attributes | |
PixelOp | pixelOp |
Bitmap< Rgba > & | bitmap |
Array< IRenderOutput::Label > | labels |
struct { | |
Rgba line = Rgba::black() | |
Rgba fill = Rgba::black() | |
Rgba text = Rgba::white() | |
} | colors |
float | thickness = 1._f |
int | fontSize = 9 |
Definition at line 74 of file RenderContext.h.
|
inlineexplicit |
Definition at line 93 of file RenderContext.h.
|
overridevirtual |
Draws a bitmap, given the position of its left-top corner.
Implements IRenderContext.
Definition at line 142 of file RenderContext.cpp.
|
overridevirtual |
Draws a circle, given its center and a radius.
Implements IRenderContext.
Reimplemented in SmoothedRenderContext, and AntiAliasedRenderContext.
Definition at line 64 of file RenderContext.cpp.
|
overridevirtual |
Draws a line connecting two points.
Implements IRenderContext.
Definition at line 35 of file RenderContext.cpp.
|
overridevirtual |
Implements IRenderContext.
Definition at line 151 of file RenderContext.cpp.
|
overridevirtual |
Implements IRenderContext.
Definition at line 159 of file RenderContext.cpp.
|
overridevirtual |
Draws a triangle given three points.
Implements IRenderContext.
Definition at line 99 of file RenderContext.cpp.
|
overridevirtual |
Fills the whole canvas with given color.
This erases any previous content.
Implements IRenderContext.
|
inlineoverridevirtual |
Reimplemented from IRenderContext.
Definition at line 120 of file RenderContext.h.
|
overridevirtual |
Selects the color for one or more drawing modes.
Implements IRenderContext.
Definition at line 6 of file RenderContext.cpp.
|
overridevirtual |
Implements IRenderContext.
Definition at line 25 of file RenderContext.cpp.
|
overridevirtual |
Modifies the thickness of the lines.
Implements IRenderContext.
Definition at line 20 of file RenderContext.cpp.
|
inlineoverridevirtual |
Returns the size of the canvas associated with the context.
Implements IRenderContext.
Definition at line 96 of file RenderContext.h.
|
protected |
Definition at line 78 of file RenderContext.h.
struct { ... } PreviewRenderContext< PixelOp >::colors |
void PreviewRenderContext< PixelOp >::fill = Rgba::black() |
Definition at line 84 of file RenderContext.h.
|
protected |
Definition at line 90 of file RenderContext.h.
|
protected |
Definition at line 80 of file RenderContext.h.
Rgba PreviewRenderContext< PixelOp >::line = Rgba::black() |
Definition at line 83 of file RenderContext.h.
|
protected |
Definition at line 76 of file RenderContext.h.
Rgba PreviewRenderContext< PixelOp >::text = Rgba::white() |
Definition at line 85 of file RenderContext.h.
|
protected |
Definition at line 88 of file RenderContext.h.