aboutsummaryrefslogtreecommitdiffstats
path: root/src/quickcontrols/ios/ProgressBar.qml
diff options
context:
space:
mode:
Diffstat (limited to 'src/quickcontrols/ios/ProgressBar.qml')
-rw-r--r--src/quickcontrols/ios/ProgressBar.qml81
1 files changed, 81 insertions, 0 deletions
diff --git a/src/quickcontrols/ios/ProgressBar.qml b/src/quickcontrols/ios/ProgressBar.qml
new file mode 100644
index 0000000000..20cf4dc265
--- /dev/null
+++ b/src/quickcontrols/ios/ProgressBar.qml
@@ -0,0 +1,81 @@
+// Copyright (C) 2022 The Qt Company Ltd.
+// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR LGPL-3.0-only OR GPL-2.0-only OR GPL-3.0-only
+
+import QtQuick
+import QtQuick.Templates as T
+import QtQuick.Controls.impl
+import QtQuick.Controls.iOS.impl
+
+T.ProgressBar {
+ id: control
+
+ implicitWidth: Math.max(implicitBackgroundWidth + leftInset + rightInset,
+ implicitContentWidth + leftPadding + rightPadding)
+ implicitHeight: Math.max(implicitBackgroundHeight + topInset + bottomInset,
+ implicitContentHeight + topPadding + bottomPadding)
+
+ opacity: control.enabled ? 1 : 0.5
+
+ contentItem: Item {
+ parent: control.background
+ implicitWidth: control.indeterminate ? animatedProgress.implicitWidth : progress.implicitWidth
+ implicitHeight: control.indeterminate ? animatedProgress.implicitHeight : progress.implicitHeight
+ scale: control.mirrored ? -1 : 1
+
+ readonly property NinePatchImage progress: NinePatchImage {
+ parent: control.contentItem
+ visible: !control.indeterminate && control.value
+ y: (parent.height - height) / 2
+ width: control.position * parent.width
+
+ source: IOS.url + "slider-progress"
+ NinePatchImageSelector on source {
+ states: [
+ {"light": Qt.styleHints.colorScheme === Qt.Light},
+ {"dark": Qt.styleHints.colorScheme === Qt.Dark}
+ ]
+ }
+ }
+
+ readonly property NinePatchImage animatedProgress: NinePatchImage {
+ parent: control.contentItem
+ visible: control.indeterminate
+ y: (parent.height - height) / 2
+ width: control.width * 0.4
+
+ source: IOS.url + "slider-progress"
+ NinePatchImageSelector on source {
+ states: [
+ {"light": Qt.styleHints.colorScheme === Qt.Light},
+ {"dark": Qt.styleHints.colorScheme === Qt.Dark}
+ ]
+ }
+
+ NumberAnimation on x {
+ running: control.indeterminate && control.visible
+ from: -control.contentItem.progress.width
+ to: control.width
+ duration: 900
+ easing.type: Easing.Linear
+ loops: Animation.Infinite
+ }
+ }
+ }
+
+ background: Item {
+ implicitWidth: 150
+ implicitHeight: children[0].implicitHeight
+ clip: control.indeterminate
+ NinePatchImage {
+ source: IOS.url + "slider-background"
+ y: (parent.height - height) / 2
+ width: control.background.width
+ NinePatchImageSelector on source {
+ states: [
+ {"light": Qt.styleHints.colorScheme === Qt.Light},
+ {"dark": Qt.styleHints.colorScheme === Qt.Dark}
+ ]
+ }
+ }
+ }
+}