|
|
virtual CGradient * | createGradient (double color1Start, double color2Start, const CColor &color1, const CColor &color2)=0 |
| creates a new gradient object, you must release it with forget() when you're done with it More...
|
|
|
virtual void | addArc (const CRect &rect, double startAngle, double endAngle, bool clockwise) |
| add an arc to the path. More...
|
|
virtual void | addEllipse (const CRect &rect) |
| add an ellipse to the path. More...
|
|
virtual void | addRect (const CRect &rect) |
| add a rectangle to the path. More...
|
|
virtual void | addPath (const CGraphicsPath &path, CGraphicsTransform *transformation=nullptr) |
| add another path to the path. More...
|
|
virtual void | addLine (const CPoint &to) |
| add a line to the path. More...
|
|
virtual void | addBezierCurve (const CPoint &control1, const CPoint &control2, const CPoint &end) |
| add a bezier curve to the path. More...
|
|
virtual void | beginSubpath (const CPoint &start) |
| begin a new subpath. More...
|
|
virtual void | closeSubpath () |
| close a subpath. More...
|
|
void | beginSubpath (CCoord x, CCoord y) |
|
void | addLine (CCoord x, CCoord y) |
|
void | addBezierCurve (CCoord cp1x, CCoord cp1y, CCoord cp2x, CCoord cp2y, CCoord x, CCoord y) |
|
|
void | addRoundRect (const CRect &size, CCoord radius) |
|
|
virtual bool | hitTest (const CPoint &p, bool evenOddFilled=false, CGraphicsTransform *transform=nullptr)=0 |
|
|
virtual CPoint | getCurrentPosition ()=0 |
|
virtual CRect | getBoundingBox ()=0 |
|
| ReferenceCounted ()=default |
|
virtual | ~ReferenceCounted () noexcept=default |
|
| ReferenceCounted (const ReferenceCounted &) |
|
ReferenceCounted & | operator= (const ReferenceCounted &) |
|
void | forget () override |
| decrease refcount and delete object if refcount == 0 More...
|
|
void | remember () override |
| increase refcount More...
|
|
virtual int32_t | getNbReference () const |
| get refcount More...
|
|
virtual void | beforeDelete () |
|