aboutsummaryrefslogtreecommitdiffstats
path: root/src/quick/items/qquickpathitem.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/quick/items/qquickpathitem.cpp')
-rw-r--r--src/quick/items/qquickpathitem.cpp20
1 files changed, 19 insertions, 1 deletions
diff --git a/src/quick/items/qquickpathitem.cpp b/src/quick/items/qquickpathitem.cpp
index d7131b3833..964d997806 100644
--- a/src/quick/items/qquickpathitem.cpp
+++ b/src/quick/items/qquickpathitem.cpp
@@ -361,6 +361,7 @@ QQuickPathItemPrivate::QQuickPathItemPrivate()
: componentComplete(true),
vpChanged(false),
rendererType(QQuickPathItem::UnknownRenderer),
+ async(false),
renderer(nullptr)
{
}
@@ -393,6 +394,23 @@ QQuickPathItem::RendererType QQuickPathItem::rendererType() const
return d->rendererType;
}
+bool QQuickPathItem::asynchronous() const
+{
+ Q_D(const QQuickPathItem);
+ return d->async;
+}
+
+void QQuickPathItem::setAsynchronous(bool async)
+{
+ Q_D(QQuickPathItem);
+ if (d->async != async) {
+ d->async = async;
+ emit asynchronousChanged();
+ if (d->componentComplete)
+ d->_q_visualPathChanged();
+ }
+}
+
static QQuickVisualPath *vpe_at(QQmlListProperty<QQuickVisualPath> *property, int index)
{
QQuickPathItemPrivate *d = QQuickPathItemPrivate::get(static_cast<QQuickPathItem *>(property->object));
@@ -606,7 +624,7 @@ void QQuickPathItemPrivate::sync()
dirty = 0;
}
- renderer->endSync();
+ renderer->endSync(async);
}
// ***** gradient support *****