2020-05-14 16:16:01 +00:00
|
|
|
import QtQuick 2.3
|
|
|
|
import QtQuick.Controls 1.3
|
|
|
|
import QtQuick.Controls 2.3
|
|
|
|
import QtQuick.Layouts 1.3
|
|
|
|
import Qt.labs.platform 1.1
|
2020-05-27 19:53:36 +00:00
|
|
|
import QtGraphicalEffects 1.0
|
2020-05-14 16:16:01 +00:00
|
|
|
import "../../../imports"
|
|
|
|
import "../../../shared"
|
|
|
|
|
2020-05-27 18:40:58 +00:00
|
|
|
Item {
|
2020-05-27 19:53:36 +00:00
|
|
|
property int selectedWallet: 0
|
2020-05-14 16:16:01 +00:00
|
|
|
id: walletInfoContainer
|
2020-05-27 15:41:40 +00:00
|
|
|
width: 340
|
2020-05-14 16:16:01 +00:00
|
|
|
|
2020-05-27 15:41:40 +00:00
|
|
|
Text {
|
|
|
|
id: title
|
|
|
|
x: 143
|
|
|
|
y: 16
|
|
|
|
text: qsTr("Wallet")
|
|
|
|
anchors.top: parent.top
|
|
|
|
anchors.topMargin: Theme.padding
|
|
|
|
anchors.horizontalCenter: parent.horizontalCenter
|
|
|
|
font.weight: Font.Bold
|
|
|
|
font.pixelSize: 17
|
|
|
|
}
|
2020-05-14 16:16:01 +00:00
|
|
|
|
2020-05-27 15:41:40 +00:00
|
|
|
Item {
|
|
|
|
id: walletValueTextContainer
|
|
|
|
anchors.left: parent.left
|
|
|
|
anchors.leftMargin: Theme.padding
|
|
|
|
anchors.top: title.bottom
|
|
|
|
anchors.topMargin: Theme.padding
|
2020-05-27 19:53:36 +00:00
|
|
|
height: walletAmountValue.height + totalValue.height
|
2020-05-27 15:41:40 +00:00
|
|
|
|
|
|
|
TextEdit {
|
|
|
|
id: walletAmountValue
|
|
|
|
color: "black"
|
|
|
|
text: qsTr("408.30 USD")
|
|
|
|
selectByMouse: true
|
|
|
|
cursorVisible: true
|
|
|
|
readOnly: true
|
2020-05-27 17:26:21 +00:00
|
|
|
anchors.left: parent.left
|
2020-05-27 15:41:40 +00:00
|
|
|
anchors.leftMargin: 1
|
|
|
|
font.weight: Font.Medium
|
|
|
|
font.pixelSize: 30
|
|
|
|
}
|
2020-05-14 16:16:01 +00:00
|
|
|
|
2020-05-27 15:41:40 +00:00
|
|
|
Text {
|
|
|
|
id: totalValue
|
|
|
|
color: Theme.darkGrey
|
|
|
|
text: "Total value"
|
|
|
|
anchors.left: walletAmountValue.left
|
|
|
|
anchors.leftMargin: 0
|
|
|
|
anchors.top: walletAmountValue.bottom
|
|
|
|
anchors.topMargin: 0
|
|
|
|
font.weight: Font.Medium
|
|
|
|
font.pixelSize: 13
|
2020-05-14 16:16:01 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-05-27 15:41:40 +00:00
|
|
|
// TODO change this with a reused Component
|
|
|
|
Rectangle {
|
|
|
|
id: addWalletBtn
|
|
|
|
width: 36
|
|
|
|
height: 36
|
|
|
|
color: Theme.blue
|
|
|
|
radius: 50
|
|
|
|
anchors.right: parent.right
|
|
|
|
anchors.rightMargin: Theme.padding
|
2020-05-27 19:53:36 +00:00
|
|
|
anchors.top: walletValueTextContainer.top
|
2020-05-27 15:41:40 +00:00
|
|
|
anchors.topMargin: 0
|
|
|
|
|
|
|
|
Text {
|
|
|
|
id: addChatLbl
|
2020-05-14 16:16:01 +00:00
|
|
|
color: "#ffffff"
|
2020-05-27 15:41:40 +00:00
|
|
|
text: qsTr("+")
|
|
|
|
anchors.verticalCenterOffset: -1
|
|
|
|
anchors.horizontalCenterOffset: 1
|
|
|
|
anchors.horizontalCenter: parent.horizontalCenter
|
|
|
|
anchors.verticalCenter: parent.verticalCenter
|
|
|
|
lineHeight: 1
|
|
|
|
fontSizeMode: Text.FixedSize
|
|
|
|
font.bold: true
|
|
|
|
font.pixelSize: 28
|
2020-05-14 16:16:01 +00:00
|
|
|
}
|
|
|
|
}
|
2020-05-27 19:53:36 +00:00
|
|
|
|
|
|
|
Component {
|
|
|
|
id: walletDelegate
|
|
|
|
|
|
|
|
Rectangle {
|
|
|
|
property bool selected: index == selectedWallet
|
|
|
|
|
|
|
|
id: rectangle
|
|
|
|
height: 64
|
|
|
|
color: selected ? Theme.blue : Theme.transparent
|
|
|
|
radius: Theme.radius
|
|
|
|
anchors.right: parent.right
|
|
|
|
anchors.rightMargin: Theme.padding
|
|
|
|
anchors.left: parent.left
|
|
|
|
anchors.leftMargin: Theme.padding
|
|
|
|
|
|
|
|
Image {
|
|
|
|
id: walletIcon
|
|
|
|
width: 12
|
|
|
|
height: 12
|
|
|
|
anchors.top: parent.top
|
|
|
|
anchors.topMargin: Theme.smallPadding
|
|
|
|
anchors.left: parent.left
|
|
|
|
anchors.leftMargin: Theme.padding
|
|
|
|
source: "../../img/walletIcon.svg"
|
|
|
|
}
|
|
|
|
ColorOverlay {
|
|
|
|
anchors.fill: walletIcon
|
|
|
|
source: walletIcon
|
|
|
|
color: selected ? undefined : "#7CDA00" // change image color
|
|
|
|
}
|
|
|
|
Text {
|
|
|
|
id: walletName
|
|
|
|
text: name
|
|
|
|
anchors.top: parent.top
|
|
|
|
anchors.topMargin: Theme.smallPadding
|
|
|
|
anchors.left: walletIcon.right
|
|
|
|
anchors.leftMargin: 10
|
|
|
|
font.pixelSize: 15
|
|
|
|
font.weight: Font.Medium
|
|
|
|
color: selected ? Theme.white : Theme.black
|
|
|
|
}
|
|
|
|
Text {
|
|
|
|
id: walletAddress
|
|
|
|
text: address
|
|
|
|
anchors.bottom: parent.bottom
|
|
|
|
anchors.bottomMargin: Theme.smallPadding
|
|
|
|
anchors.left: walletName.left
|
|
|
|
anchors.leftMargin: 0
|
|
|
|
font.pixelSize: 15
|
|
|
|
font.weight: Font.Medium
|
|
|
|
color: selected ? Theme.white : Theme.darkGrey
|
|
|
|
opacity: selected ? 0.7 : 1
|
|
|
|
}
|
|
|
|
Text {
|
|
|
|
id: walletBalance
|
|
|
|
text: balance
|
|
|
|
anchors.top: parent.top
|
|
|
|
anchors.topMargin: Theme.smallPadding
|
|
|
|
anchors.right: parent.right
|
|
|
|
anchors.rightMargin: Theme.padding
|
|
|
|
font.pixelSize: 15
|
|
|
|
font.weight: Font.Medium
|
|
|
|
color: selected ? Theme.white : Theme.black
|
|
|
|
}
|
|
|
|
MouseArea {
|
|
|
|
anchors.fill: parent
|
|
|
|
onClicked: {
|
|
|
|
selectedWallet = index
|
|
|
|
// TODO add call to Nim to change the wallet for real
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
ListView {
|
|
|
|
id: listView
|
|
|
|
height: 160
|
|
|
|
anchors.top: walletValueTextContainer.bottom
|
|
|
|
anchors.topMargin: Theme.padding
|
|
|
|
spacing: 5
|
|
|
|
anchors.right: parent.right
|
|
|
|
anchors.rightMargin: 0
|
|
|
|
anchors.left: parent.left
|
|
|
|
anchors.leftMargin: 0
|
|
|
|
|
|
|
|
delegate: walletDelegate
|
|
|
|
|
|
|
|
model: ListModel {
|
|
|
|
ListElement {
|
|
|
|
name: "Status account"
|
|
|
|
address: "0x2Ef1...E0Ba"
|
|
|
|
balance: "12.00 USD"
|
|
|
|
}
|
|
|
|
|
|
|
|
ListElement {
|
|
|
|
name: "Test account 1"
|
|
|
|
address: "0x2Ef1...E0Ba"
|
|
|
|
balance: "12.00 USD"
|
|
|
|
}
|
|
|
|
ListElement {
|
|
|
|
name: "Status account"
|
|
|
|
address: "0x2Ef1...E0Ba"
|
|
|
|
balance: "12.00 USD"
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2020-05-14 16:16:01 +00:00
|
|
|
}
|
2020-05-14 20:04:38 +00:00
|
|
|
|
|
|
|
/*##^##
|
|
|
|
Designer {
|
2020-05-27 15:41:40 +00:00
|
|
|
D{i:0;formeditorColor:"#ffffff";formeditorZoom:0.75;height:770;width:340}D{i:2;anchors_x:82}
|
2020-05-14 20:04:38 +00:00
|
|
|
}
|
|
|
|
##^##*/
|
2020-05-27 15:41:40 +00:00
|
|
|
|