summaryrefslogtreecommitdiffstats
path: root/examples/widgets/painting/pathstroke/pathstroke.h
diff options
context:
space:
mode:
authorKai Pastor <dg0yt@darc.de>2016-04-24 17:37:29 +0200
committerKai Pastor <dg0yt@darc.de>2018-03-21 06:24:41 +0000
commit4c0e27ae6f56cc43b871d7659b77747d9ba969bc (patch)
treed50757027dc16d1350a9d6107c8082d465884332 /examples/widgets/painting/pathstroke/pathstroke.h
parentfc8fd508165c8e4dcfe0da397b63cf99f15178e3 (diff)
Add Qt::SvgMiterJoin option to pathstroke example
Qt::SvgMiterJoin is more important than the name suggests: It is used not only by SVG but also by PDF. It differs from Qt::MiterJoin in the miter limit behavior. Task-number: QTBUG-52640 Change-Id: I8ad04b1231958628caab18a233d54d42ea6449e7 Reviewed-by: Sze Howe Koh <szehowe.koh@gmail.com>
Diffstat (limited to 'examples/widgets/painting/pathstroke/pathstroke.h')
-rw-r--r--examples/widgets/painting/pathstroke/pathstroke.h1
1 files changed, 1 insertions, 0 deletions
diff --git a/examples/widgets/painting/pathstroke/pathstroke.h b/examples/widgets/painting/pathstroke/pathstroke.h
index 71352c8cc2..7bc7e09003 100644
--- a/examples/widgets/painting/pathstroke/pathstroke.h
+++ b/examples/widgets/painting/pathstroke/pathstroke.h
@@ -92,6 +92,7 @@ public slots:
void setBevelJoin() { m_joinStyle = Qt::BevelJoin; update(); }
void setMiterJoin() { m_joinStyle = Qt::MiterJoin; update(); }
+ void setSvgMiterJoin() { m_joinStyle = Qt::SvgMiterJoin; update(); }
void setRoundJoin() { m_joinStyle = Qt::RoundJoin; update(); }
void setCurveMode() { m_pathMode = CurveMode; update(); }