|
| | QStroker () |
| | ~QStroker () |
| void | setStrokeWidth (qfixed width) |
| qfixed | strokeWidth () const |
| void | setCapStyle (Qt::PenCapStyle capStyle) |
| Qt::PenCapStyle | capStyle () const |
| LineJoinMode | capStyleMode () const |
| void | setJoinStyle (Qt::PenJoinStyle style) |
| Qt::PenJoinStyle | joinStyle () const |
| LineJoinMode | joinStyleMode () const |
| void | setMiterLimit (qfixed length) |
| qfixed | miterLimit () const |
| void | setForceOpen (bool state) |
| bool | forceOpen () const |
| void | joinPoints (qfixed x, qfixed y, const QLineF &nextLine, LineJoinMode join) |
| void | emitMoveTo (qfixed x, qfixed y) |
| void | emitLineTo (qfixed x, qfixed y) |
| void | emitCubicTo (qfixed c1x, qfixed c1y, qfixed c2x, qfixed c2y, qfixed ex, qfixed ey) |
| | QStrokerOps () |
| virtual | ~QStrokerOps () |
| void | setMoveToHook (qStrokerMoveToHook moveToHook) |
| void | setLineToHook (qStrokerLineToHook lineToHook) |
| void | setCubicToHook (qStrokerCubicToHook cubicToHook) |
| virtual void | begin (void *customData) |
| | Prepares the stroker.
|
| virtual void | end () |
| | Finishes the stroke.
|
| void | moveTo (qfixed x, qfixed y) |
| void | lineTo (qfixed x, qfixed y) |
| void | cubicTo (qfixed x1, qfixed y1, qfixed x2, qfixed y2, qfixed ex, qfixed ey) |
| void | strokePath (const QPainterPath &path, void *data, const QTransform &matrix) |
| | Convenience function that decomposes path into begin(), moveTo(), lineTo(), curevTo() and end() calls.
|
| void | strokePolygon (const QPointF *points, int pointCount, bool implicit_close, void *data, const QTransform &matrix) |
| | Convenience function for stroking a polygon of the pointCount first points in points.
|
| void | strokeEllipse (const QRectF &ellipse, void *data, const QTransform &matrix) |
| | Convenience function for stroking an ellipse with bounding rect rect.
|
| QRectF | clipRect () const |
| void | setClipRect (const QRectF &clip) |
| void | setCurveThresholdFromTransform (const QTransform &transform) |
| void | setCurveThreshold (qfixed threshold) |
| qfixed | curveThreshold () const |
Definition at line 160 of file qstroker_p.h.