2019-07-13 19:39:01 +10:00
|
|
|
import QtQuick 2.12
|
2019-08-31 09:21:51 +10:00
|
|
|
import QtGraphicalEffects 1.12
|
2019-07-21 21:14:16 +10:00
|
|
|
import "Base"
|
2019-06-27 16:31:03 +10:00
|
|
|
|
2019-08-28 09:47:58 +10:00
|
|
|
Item {
|
2019-08-31 09:21:51 +10:00
|
|
|
LinearGradient {
|
2019-08-28 09:47:58 +10:00
|
|
|
anchors.fill: parent
|
2019-08-31 09:21:51 +10:00
|
|
|
start: Qt.point(0, 0)
|
|
|
|
end: Qt.point(window.width, window.height)
|
|
|
|
|
2019-08-28 09:47:58 +10:00
|
|
|
gradient: Gradient {
|
2019-08-30 11:06:24 +10:00
|
|
|
GradientStop { position: 0.0; color: "#001b20" }
|
|
|
|
GradientStop { position: 1.0; color: "#3c2f4b" }
|
2019-08-28 09:47:58 +10:00
|
|
|
}
|
|
|
|
}
|
2019-06-27 16:31:03 +10:00
|
|
|
|
2019-07-21 21:14:16 +10:00
|
|
|
HBusyIndicator {
|
2019-06-27 16:31:03 +10:00
|
|
|
anchors.centerIn: parent
|
2019-08-28 09:47:58 +10:00
|
|
|
width: Math.min(160, parent.width - 16, parent.height - 16)
|
|
|
|
height: width
|
2019-11-07 05:29:32 +11:00
|
|
|
indeterminateSpan: 0.5
|
|
|
|
|
|
|
|
foregroundColor: Qt.hsla(0, 0, 1, 0.15)
|
|
|
|
progressColor: Qt.hsla(0, 0, 1, 0.4)
|
2019-06-27 16:31:03 +10:00
|
|
|
}
|
|
|
|
}
|