mirror of
https://github.com/Yubico/yubioath-flutter.git
synced 2024-11-29 23:20:03 +03:00
180 lines
5.7 KiB
QML
180 lines
5.7 KiB
QML
import QtQuick 2.9
|
|
import QtQuick.Controls 2.2
|
|
import QtQuick.Layouts 1.2
|
|
|
|
Dialog {
|
|
margins: 0
|
|
spacing: 0
|
|
modal: true
|
|
focus: true
|
|
|
|
x: (parent.width - width) / 2
|
|
y: (parent.height - height) / 2
|
|
width: app.width * 0.9 > 600 ? 600 : app.width * 0.9
|
|
|
|
background: Rectangle {
|
|
color: defaultBackground
|
|
radius: 4
|
|
}
|
|
|
|
onClosed: {
|
|
navigator.focus = true
|
|
navigator.isShowingAbout = false
|
|
}
|
|
|
|
onRejected: {
|
|
close()
|
|
navigator.focus = true
|
|
}
|
|
|
|
Component.onCompleted: {
|
|
navigator.isShowingAbout = true
|
|
}
|
|
|
|
function getDeviceDescription() {
|
|
if (!!yubiKey.currentDevice) {
|
|
return yubiKey.currentDevice.usbInterfacesEnabled.join('+')
|
|
} else if (yubiKey.availableDevices.length > 0
|
|
&& !yubiKey.availableDevices.some(dev => dev.selectable)) {
|
|
return qsTr("No compatible device found")
|
|
} else {
|
|
return qsTr("No device found")
|
|
}
|
|
}
|
|
|
|
ColumnLayout {
|
|
width: parent.width
|
|
Layout.fillWidth: true
|
|
spacing: 0
|
|
|
|
ColumnLayout {
|
|
visible: !!yubiKey.currentDevice
|
|
Layout.fillWidth: true
|
|
spacing: 0
|
|
|
|
Rectangle {
|
|
id: rectangle
|
|
width: 140
|
|
height: 140
|
|
color: formHighlightItem
|
|
radius: width * 0.5
|
|
Layout.margins: 16
|
|
Layout.alignment: Qt.AlignHCenter | Qt.AlignVCenter
|
|
Image {
|
|
anchors.horizontalCenter: parent.horizontalCenter
|
|
anchors.verticalCenter: parent.verticalCenter
|
|
sourceSize.width: 120
|
|
source: !!yubiKey.currentDevice ? yubiKey.getCurrentDeviceImage() : ""
|
|
fillMode: Image.PreserveAspectFit
|
|
visible: parent.visible
|
|
}
|
|
}
|
|
|
|
Label {
|
|
text: !!yubiKey.currentDevice ? yubiKey.currentDevice.name : ""
|
|
font.pixelSize: 13
|
|
font.weight: Font.Medium
|
|
Layout.alignment: Qt.AlignHCenter | Qt.AlignVCenter
|
|
width: parent.width
|
|
wrapMode: Text.WordWrap
|
|
Layout.maximumWidth: parent.width
|
|
}
|
|
|
|
Label {
|
|
text: !!yubiKey.currentDevice ? "Serial number: " + yubiKey.currentDevice.serial : ""
|
|
visible: !!yubiKey.currentDevice && yubiKey.currentDevice.serial
|
|
color: primaryColor
|
|
opacity: highEmphasis
|
|
font.pixelSize: 13
|
|
Layout.alignment: Qt.AlignHCenter | Qt.AlignVCenter
|
|
wrapMode: Text.WordWrap
|
|
Layout.maximumWidth: parent.width
|
|
width: parent.width
|
|
|
|
}
|
|
|
|
Label {
|
|
text: !!yubiKey.currentDevice ? "Firmware version: " + yubiKey.currentDevice.version : ""
|
|
visible: !!yubiKey.currentDevice && yubiKey.currentDevice.version
|
|
color: primaryColor
|
|
opacity: highEmphasis
|
|
font.pixelSize: 13
|
|
Layout.alignment: Qt.AlignHCenter | Qt.AlignVCenter
|
|
wrapMode: Text.WordWrap
|
|
Layout.maximumWidth: parent.width
|
|
width: parent.width
|
|
}
|
|
|
|
Label {
|
|
text: !!yubiKey.currentDevice ? qsTr("Enabled interfaces: ") + getDeviceDescription() : ""
|
|
color: primaryColor
|
|
opacity: highEmphasis
|
|
font.pixelSize: 13
|
|
Layout.alignment: Qt.AlignHCenter | Qt.AlignVCenter
|
|
wrapMode: Text.WordWrap
|
|
Layout.maximumWidth: parent.width
|
|
width: parent.width
|
|
}
|
|
|
|
Canvas {
|
|
id: canvas
|
|
Layout.alignment: Qt.AlignHCenter | Qt.AlignVCenter
|
|
Layout.fillWidth: true
|
|
Layout.fillHeight: true
|
|
width: parent.width
|
|
height: 48
|
|
onPaint: {
|
|
var context = getContext("2d");
|
|
context.beginPath();
|
|
context.lineWidth = 1;
|
|
context.moveTo(0, height / 2);
|
|
context.strokeStyle = formHighlightItem
|
|
context.lineTo(width, height / 2);
|
|
context.stroke();
|
|
}
|
|
}
|
|
}
|
|
|
|
Image {
|
|
source: "../images/yubioath.png"
|
|
Layout.alignment: Qt.AlignHCenter | Qt.AlignVCenter
|
|
Layout.margins: 16
|
|
Layout.topMargin: 0
|
|
}
|
|
|
|
Label {
|
|
text: qsTr("Yubico Authenticator ") + appVersion
|
|
font.pixelSize: 13
|
|
font.weight: Font.Medium
|
|
Layout.alignment: Qt.AlignHCenter | Qt.AlignVCenter
|
|
width: parent.width
|
|
wrapMode: Text.WordWrap
|
|
Layout.maximumWidth: parent.width
|
|
}
|
|
|
|
Label {
|
|
text: qsTr("Copyright © " + Qt.formatDateTime(
|
|
new Date(),
|
|
"yyyy") + ", Yubico AB.")
|
|
color: primaryColor
|
|
opacity: highEmphasis
|
|
font.pixelSize: 13
|
|
Layout.alignment: Qt.AlignHCenter | Qt.AlignVCenter
|
|
wrapMode: Text.WordWrap
|
|
Layout.maximumWidth: parent.width
|
|
width: parent.width
|
|
}
|
|
|
|
Label {
|
|
text: qsTr("All rights reserved.")
|
|
color: primaryColor
|
|
opacity: highEmphasis
|
|
font.pixelSize: 13
|
|
Layout.alignment: Qt.AlignHCenter | Qt.AlignVCenter
|
|
wrapMode: Text.WordWrap
|
|
Layout.maximumWidth: parent.width
|
|
width: parent.width
|
|
}
|
|
}
|
|
}
|