aboutsummaryrefslogtreecommitdiff
path: root/components/MobileHeader.qml
diff options
context:
space:
mode:
authorselsta <selsta@sent.at>2019-09-06 00:11:12 +0200
committerselsta <selsta@sent.at>2019-09-06 00:11:12 +0200
commit8dab0755d325f338c81c8eb8ab1f0f0156cf86b1 (patch)
treee2056793c43afee57ca5209ab080aec5bac5b9be /components/MobileHeader.qml
parenta267712d100a9c514dd7de451356fe115b2090a9 (diff)
downloadmonzero-gui-8dab0755d325f338c81c8eb8ab1f0f0156cf86b1.tar.gz
monzero-gui-8dab0755d325f338c81c8eb8ab1f0f0156cf86b1.tar.xz
monzero-gui-8dab0755d325f338c81c8eb8ab1f0f0156cf86b1.zip
repo: remove isMobile leftovers
Diffstat (limited to 'components/MobileHeader.qml')
-rw-r--r--components/MobileHeader.qml118
1 files changed, 0 insertions, 118 deletions
diff --git a/components/MobileHeader.qml b/components/MobileHeader.qml
deleted file mode 100644
index abf5580e..00000000
--- a/components/MobileHeader.qml
+++ /dev/null
@@ -1,118 +0,0 @@
-import QtQuick 2.9
-import QtGraphicalEffects 1.0
-import QtQuick.Layouts 1.1
-
-import moneroComponents.Wallet 1.0
-import "../components" as MoneroComponents
-
-// BasicPanel header
-Rectangle {
- id: header
- anchors.leftMargin: 1
- anchors.rightMargin: 1
- Layout.fillWidth: true
- Layout.preferredHeight: 64
- color: "#FFFFFF"
-
- Image {
- id: logo
- visible: appWindow.width > 460
- anchors.verticalCenter: parent.verticalCenter
- anchors.verticalCenterOffset: -5
- anchors.left: parent.left
- anchors.leftMargin: 50
- source: "qrc:///images/moneroLogo2.png"
- }
-
- Image {
- id: icon
- visible: !logo.visible
- anchors.verticalCenter: parent.verticalCenter
- anchors.left: parent.left
- anchors.leftMargin: 40
- source: "qrc:///images/moneroIcon.png"
- }
-
- Grid {
- anchors.verticalCenter: parent.verticalCenter
- anchors.top: parent.top
- anchors.right: parent.right
- anchors.topMargin: 10
- width: 256
- columns: 3
-
- MoneroComponents.TextPlain {
- 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 + ":"
- }
-
- MoneroComponents.TextPlain {
- 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: "qrc:///images/lockIcon.png"
- }
- }
-
- MoneroComponents.TextPlain {
- 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:")
- }
-
- MoneroComponents.TextPlain {
- 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"
- }
-}