mirror of
https://github.com/monero-project/monero-gui.git
synced 2024-11-17 08:17:59 +00:00
120 lines
3.2 KiB
QML
120 lines
3.2 KiB
QML
|
import QtQuick 2.2
|
||
|
import QtGraphicalEffects 1.0
|
||
|
import QtQuick.Layouts 1.1
|
||
|
import moneroComponents.Wallet 1.0
|
||
|
|
||
|
|
||
|
// BasicPanel header
|
||
|
Rectangle {
|
||
|
id: header
|
||
|
anchors.leftMargin: 1
|
||
|
anchors.rightMargin: 1
|
||
|
Layout.fillWidth: true
|
||
|
Layout.preferredHeight: 64
|
||
|
color: "#FFFFFF"
|
||
|
// visible: basicMode
|
||
|
|
||
|
Image {
|
||
|
id: logo
|
||
|
visible: appWindow.width > 460
|
||
|
anchors.verticalCenter: parent.verticalCenter
|
||
|
anchors.verticalCenterOffset: -5
|
||
|
anchors.left: parent.left
|
||
|
anchors.leftMargin: appWindow.persistentSettings.customDecorations ? 20 : 40
|
||
|
source: "../images/moneroLogo2.png"
|
||
|
}
|
||
|
|
||
|
Image {
|
||
|
id: icon
|
||
|
visible: !logo.visible
|
||
|
anchors.verticalCenter: parent.verticalCenter
|
||
|
// anchors.verticalCenterOffset: -5
|
||
|
anchors.left: parent.left
|
||
|
anchors.leftMargin: appWindow.persistentSettings.customDecorations ? 20 : 40
|
||
|
source: "../images/moneroIcon.png"
|
||
|
}
|
||
|
|
||
|
Grid {
|
||
|
anchors.verticalCenter: parent.verticalCenter
|
||
|
anchors.top: parent.top
|
||
|
anchors.right: parent.right
|
||
|
anchors.topMargin: 10
|
||
|
width: 256
|
||
|
columns: 3
|
||
|
|
||
|
Text {
|
||
|
id: balanceLabel
|
||
|
width: 116
|
||
|
height: 20
|
||
|
font.family: "Arial"
|
||
|
font.pixelSize: 12
|
||
|
font.letterSpacing: -1
|
||
|
elide: Text.ElideRight
|
||
|
horizontalAlignment: Text.AlignLeft
|
||
|
verticalAlignment: Text.AlignBottom
|
||
|
color: "#535353"
|
||
|
text: leftPanel.balanceLabelText + ":"
|
||
|
}
|
||
|
|
||
|
Text {
|
||
|
id: balanceText
|
||
|
width: 110
|
||
|
height: 20
|
||
|
font.family: "Arial"
|
||
|
font.pixelSize: 18
|
||
|
font.letterSpacing: -1
|
||
|
elide: Text.ElideRight
|
||
|
horizontalAlignment: Text.AlignLeft
|
||
|
verticalAlignment: Text.AlignBottom
|
||
|
color: "#000000"
|
||
|
text: leftPanel.balanceText
|
||
|
}
|
||
|
|
||
|
Item {
|
||
|
height: 20
|
||
|
width: 20
|
||
|
|
||
|
Image {
|
||
|
anchors.verticalCenter: parent.verticalCenter
|
||
|
anchors.left: parent.left
|
||
|
source: "../images/lockIcon.png"
|
||
|
}
|
||
|
}
|
||
|
|
||
|
Text {
|
||
|
width: 116
|
||
|
height: 20
|
||
|
font.family: "Arial"
|
||
|
font.pixelSize: 12
|
||
|
font.letterSpacing: -1
|
||
|
elide: Text.ElideRight
|
||
|
horizontalAlignment: Text.AlignLeft
|
||
|
verticalAlignment: Text.AlignBottom
|
||
|
color: "#535353"
|
||
|
text: qsTr("Unlocked Balance:")
|
||
|
}
|
||
|
|
||
|
Text {
|
||
|
id: availableBalanceText
|
||
|
width: 110
|
||
|
height: 20
|
||
|
font.family: "Arial"
|
||
|
font.pixelSize: 14
|
||
|
font.letterSpacing: -1
|
||
|
elide: Text.ElideRight
|
||
|
horizontalAlignment: Text.AlignLeft
|
||
|
verticalAlignment: Text.AlignBottom
|
||
|
color: "#000000"
|
||
|
text: leftPanel.unlockedBalanceText
|
||
|
}
|
||
|
}
|
||
|
|
||
|
Rectangle {
|
||
|
anchors.left: parent.left
|
||
|
anchors.right: parent.right
|
||
|
anchors.bottom: parent.bottom
|
||
|
height: 1
|
||
|
color: "#DBDBDB"
|
||
|
}
|
||
|
}
|