summaryrefslogtreecommitdiff
path: root/examples/quickcontrols/extras/dashboard/qml/TurnIndicator.qml
diff options
context:
space:
mode:
authorNico Vertriest <nico.vertriest@qt.io>2017-10-03 15:40:01 +0200
committerNico Vertriest <nico.vertriest@qt.io>2017-10-11 08:49:44 +0000
commitbca35ce54a541991ff1e36a9bb2e0d436c757ed9 (patch)
tree2035aa2a1a96018907362fff09d71d10f92a1810 /examples/quickcontrols/extras/dashboard/qml/TurnIndicator.qml
parentf9c410f619c1019fc361e230df0e4d2a2259e8e9 (diff)
downloadqtquickcontrols-bca35ce54a541991ff1e36a9bb2e0d436c757ed9.tar.gz
Doc: add documentation to Dashboard examplev5.10.0-beta2
Task-number: QTBUG-60648 Change-Id: I79b9fdfde18041d95b7aa422bfb4d188ed907589 Reviewed-by: Mitch Curtis <mitch.curtis@qt.io>
Diffstat (limited to 'examples/quickcontrols/extras/dashboard/qml/TurnIndicator.qml')
-rw-r--r--examples/quickcontrols/extras/dashboard/qml/TurnIndicator.qml10
1 files changed, 6 insertions, 4 deletions
diff --git a/examples/quickcontrols/extras/dashboard/qml/TurnIndicator.qml b/examples/quickcontrols/extras/dashboard/qml/TurnIndicator.qml
index b132510e..c0fb6720 100644
--- a/examples/quickcontrols/extras/dashboard/qml/TurnIndicator.qml
+++ b/examples/quickcontrols/extras/dashboard/qml/TurnIndicator.qml
@@ -59,7 +59,7 @@ Item {
property bool flashing: false
scale: direction === Qt.LeftArrow ? 1 : -1
-
+//! [1]
Timer {
id: flashTimer
interval: 500
@@ -67,7 +67,8 @@ Item {
repeat: true
onTriggered: flashing = !flashing
}
-
+//! [1]
+//! [2]
function paintOutlinePath(ctx) {
ctx.beginPath();
ctx.moveTo(0, height * 0.5);
@@ -79,7 +80,7 @@ Item {
ctx.lineTo(0.6 * width, height);
ctx.lineTo(0, height * 0.5);
}
-
+//! [2]
Canvas {
id: backgroundCanvas
anchors.fill: parent
@@ -95,7 +96,7 @@ Item {
ctx.stroke();
}
}
-
+//! [3]
Canvas {
id: foregroundCanvas
anchors.fill: parent
@@ -111,4 +112,5 @@ Item {
ctx.fill();
}
}
+//! [3]
}