summaryrefslogtreecommitdiffstats
path: root/ProgressNextCross.qml
diff options
context:
space:
mode:
Diffstat (limited to 'ProgressNextCross.qml')
-rw-r--r--ProgressNextCross.qml49
1 files changed, 49 insertions, 0 deletions
diff --git a/ProgressNextCross.qml b/ProgressNextCross.qml
new file mode 100644
index 0000000..89a2b7b
--- /dev/null
+++ b/ProgressNextCross.qml
@@ -0,0 +1,49 @@
+// SPDX-License-Identifier: GPL-3.0+
+// Copyright (C) 2021 AISIN CORPORATION
+import QtQuick 2.0
+import QtQuick.Controls 1.5
+import QtQuick.Controls.Styles 1.4
+
+Item {
+ id: progress_next_cross
+
+ visible: false
+
+ // val [Input]
+ // distance to next cross. (unit = meter)
+ // when over the ProgressBar.maximumValue/m, progress bar indicates max (same as ProgressBar.maximumValue/m)
+ function setProgress(val) {
+ if (val > bar.value ) {
+ bar.maximumValue = val
+ }
+
+ if ( 0 < val ) {
+ bar.value = val
+ }else{
+ bar.value = 0
+ }
+ }
+
+ ProgressBar {
+ id: bar
+ width: 800
+ height: 20
+ orientation: Qt.Horizontal
+ value: 0
+ minimumValue: 0
+ maximumValue: 800
+
+ style: ProgressBarStyle {
+ progress: Rectangle {
+ color: "green"
+ }
+ }
+ }
+ states: [
+ State {
+ name: "visible"; PropertyChanges { target: progress_next_cross; visible: true }},
+ State {
+ name: "invisible"; PropertyChanges { target: progress_next_cross; visible: false }}
+ ]
+
+}