90 lines
2.4 KiB
QML
Raw Normal View History

2020-06-17 15:18:31 -04:00
import QtQuick 2.13
import QtQuick.Controls 2.13
import QtQuick.Layouts 1.13
import StatusQ.Core 0.1
import StatusQ.Core.Theme 0.1
import utils 1.0
import shared 1.0
import shared.status 1.0
2020-05-27 17:28:25 -04:00
Item {
id: root
2020-05-27 17:28:25 -04:00
Layout.fillHeight: true
Layout.fillWidth: true
clip: true
2020-05-27 17:28:25 -04:00
property var store
property int profileContentWidth
Column {
id: generalColumn
spacing: Style.current.bigPadding
2020-05-27 17:28:25 -04:00
anchors.top: parent.top
anchors.topMargin: 46
width: profileContentWidth
anchors.horizontalCenter: parent.horizontalCenter
2020-09-23 12:22:05 -05:00
// TODO: replace with StatusListItem
StatusSectionDescItem {
2021-02-18 11:36:05 -05:00
//% "App version"
name: qsTrId("version")
//% "Version: %1"
description: qsTrId("version---1").arg(root.store.getCurrentVersion())
tooltipUnder: true
2020-09-23 12:22:05 -05:00
}
// TODO: replace with StatusListItem
StatusSectionDescItem {
2021-02-18 11:36:05 -05:00
//% "Node version "
name: qsTrId("node-version-")
description: root.store.nodeVersion()
2020-09-23 12:22:05 -05:00
}
2020-06-17 17:05:59 -04:00
StatusBaseText {
2021-02-18 11:36:05 -05:00
//% "Check for updates"
text: qsTrId("check-for-updates")
font.pixelSize: 15
color: Theme.palette.primaryColor1
MouseArea {
anchors.fill: parent
cursorShape: Qt.PointingHandCursor
hoverEnabled: true
onEntered: {
parent.font.underline = true
}
onExited: {
parent.font.underline = false
}
onClicked: {
root.store.checkForUpdates();
}
}
2020-06-17 17:05:59 -04:00
}
StatusBaseText {
2021-02-18 11:36:05 -05:00
//% "Privacy Policy"
text: qsTrId("privacy-policy")
font.pixelSize: 15
color: Theme.palette.primaryColor1
MouseArea {
anchors.fill: parent
cursorShape: Qt.PointingHandCursor
hoverEnabled: true
onEntered: {
parent.font.underline = true
}
onExited: {
parent.font.underline = false
}
onClicked: {
Global.openLink("https://status.im/privacy-policy/")
}
}
2020-06-17 17:05:59 -04:00
}
}
}