1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114
|
import QtQuick 2.15
import QtQuick.Layouts 1.15
import QtQuick.Controls 2.15
import Theme 1.0
import QFlipper 1.0
AbstractOverlay {
id: overlay
TextLabel {
id: updateLabel
capitalized: false
anchors.horizontalCenter: parent.horizontalCenter
y: 19
color: Theme.color.lightorange2
font.family: "Born2bSportyV2"
font.pixelSize: 48
text: {
switch(Backend.backendState) {
case Backend.UpdatingDevice:
return qsTr("Updating your Flipper");
case Backend.RepairingDevice:
return qsTr("Repairing your Flipper");
case Backend.CreatingBackup:
return qsTr("Creating Backup");
case Backend.RestoringBackup:
return qsTr("Restoring Backup");
case Backend.FactoryResetting:
return qsTr("Performing Factory Reset");
case Backend.InstallingFirmware:
return qsTr("Installing Firmware");
case Backend.InstallingWirelessStack:
return qsTr("Installing Wireless Firmware");
case Backend.InstallingFUS:
return qsTr("Installing FUS Firmware");
default:
return text;
}
}
}
ProgressBar {
id: progressBar
width: 280
height: 56
from: 0
to: 100
x: Math.round((parent.width - width) / 2)
y: 270
value: deviceState ? deviceState.progress : 0
indeterminate: !deviceState ? true : deviceState.progress < 0
}
TextLabel {
id: messageLabel
anchors.top: progressBar.bottom
anchors.topMargin: 20
anchors.horizontalCenter: parent.horizontalCenter
text: !deviceState ? text : deviceState.isError ? deviceState.errorString : deviceState.statusString
color: Theme.color.lightorange2
}
MouseArea {
x: 620
y: 120
hoverEnabled: true
width: layout.implicitWidth
height: layout.implicitHeight
opacity: Backend.backendState === ApplicationBackend.UpdatingDevice ? !!deviceInfo && !deviceInfo.storage.isExternalPresent :
Backend.backendState === ApplicationBackend.RepairingDevice ? !!deviceInfo && !deviceState.isRecoveryMode && !deviceInfo.storage.isExternalPresent : 0
enabled: opacity > 0
ColumnLayout {
id: layout
Image {
source: "qrc:/assets/gfx/images/warning-sdcard.svg"
sourceSize: Qt.size(44, 58)
Layout.alignment: Qt.AlignHCenter
}
TextLabel {
text: qsTr("No SD")
Layout.alignment: Qt.AlignHCenter
}
}
ToolTip {
implicitWidth: 250
text: qsTr("SD Card is not installed. Some functionality will not be available.")
visible: parent.containsMouse
}
Behavior on opacity {
PropertyAnimation {
duration: 150
easing.type: Easing.InOutQuad
}
}
}
}
|