2020-06-17 19:18:31 +00:00
|
|
|
import QtQuick 2.13
|
|
|
|
import QtQuick.Controls 2.13
|
|
|
|
import QtQuick.Layouts 1.13
|
2020-05-28 13:49:28 +00:00
|
|
|
import "../../../imports"
|
|
|
|
import "../../../shared"
|
|
|
|
|
|
|
|
Item {
|
2020-06-03 19:59:18 +00:00
|
|
|
property var currentAccount: walletModel.currentAccount
|
2020-06-10 20:21:23 +00:00
|
|
|
property var changeSelectedAccount
|
2020-06-03 19:59:18 +00:00
|
|
|
|
2020-05-28 13:49:28 +00:00
|
|
|
id: walletHeader
|
|
|
|
height: walletAddress.y + walletAddress.height
|
|
|
|
anchors.right: parent.right
|
|
|
|
anchors.rightMargin: 0
|
|
|
|
anchors.left: parent.left
|
|
|
|
anchors.leftMargin: 0
|
|
|
|
anchors.top: parent.top
|
|
|
|
anchors.topMargin: 0
|
|
|
|
Layout.fillHeight: true
|
|
|
|
Layout.fillWidth: true
|
|
|
|
|
2020-06-19 18:06:58 +00:00
|
|
|
StyledText {
|
2020-05-28 13:49:28 +00:00
|
|
|
id: title
|
2020-06-03 19:59:18 +00:00
|
|
|
text: currentAccount.name
|
2020-05-28 13:49:28 +00:00
|
|
|
anchors.top: parent.top
|
|
|
|
anchors.topMargin: 56
|
|
|
|
anchors.left: parent.left
|
|
|
|
anchors.leftMargin: 24
|
|
|
|
font.weight: Font.Medium
|
|
|
|
font.pixelSize: 28
|
|
|
|
}
|
|
|
|
|
|
|
|
Rectangle {
|
|
|
|
id: separatorDot
|
|
|
|
width: 8
|
|
|
|
height: 8
|
|
|
|
color: Theme.blue
|
|
|
|
anchors.top: title.verticalCenter
|
|
|
|
anchors.topMargin: -3
|
|
|
|
anchors.left: title.right
|
|
|
|
anchors.leftMargin: 8
|
|
|
|
radius: 50
|
|
|
|
}
|
|
|
|
|
2020-06-19 18:06:58 +00:00
|
|
|
StyledText {
|
2020-05-28 13:49:28 +00:00
|
|
|
id: walletBalance
|
2020-06-03 19:59:18 +00:00
|
|
|
text: currentAccount.balance
|
2020-05-28 13:49:28 +00:00
|
|
|
anchors.left: separatorDot.right
|
|
|
|
anchors.leftMargin: 8
|
|
|
|
anchors.verticalCenter: title.verticalCenter
|
|
|
|
font.pixelSize: 22
|
|
|
|
}
|
|
|
|
|
2020-06-19 18:06:58 +00:00
|
|
|
StyledText {
|
2020-05-28 13:49:28 +00:00
|
|
|
id: walletAddress
|
2020-06-03 19:59:18 +00:00
|
|
|
text: currentAccount.address
|
|
|
|
elide: Text.ElideMiddle
|
|
|
|
anchors.right: title.right
|
|
|
|
anchors.rightMargin: 0
|
2020-05-28 13:49:28 +00:00
|
|
|
anchors.top: title.bottom
|
|
|
|
anchors.topMargin: 0
|
|
|
|
anchors.left: title.left
|
|
|
|
anchors.leftMargin: 0
|
|
|
|
font.pixelSize: 13
|
|
|
|
color: Theme.darkGrey
|
|
|
|
}
|
|
|
|
|
2020-05-29 15:43:37 +00:00
|
|
|
SendModal{
|
|
|
|
id: sendModal
|
|
|
|
}
|
|
|
|
|
2020-06-04 16:00:07 +00:00
|
|
|
SetCurrencyModal{
|
|
|
|
id: setCurrencyModal
|
2020-06-02 01:02:50 +00:00
|
|
|
}
|
|
|
|
|
2020-06-03 16:49:18 +00:00
|
|
|
TokenSettingsModal{
|
|
|
|
id: tokenSettingsModal
|
|
|
|
}
|
|
|
|
|
2020-06-10 20:32:04 +00:00
|
|
|
AccountSettingsModal {
|
|
|
|
id: accountSettingsModal
|
2020-06-10 20:21:23 +00:00
|
|
|
changeSelectedAccount: walletHeader.changeSelectedAccount
|
2020-06-10 20:32:04 +00:00
|
|
|
}
|
|
|
|
|
2020-06-11 19:52:54 +00:00
|
|
|
AddCustomTokenModal {
|
|
|
|
id: addCustomTokenModal
|
|
|
|
}
|
|
|
|
|
2020-05-28 13:49:28 +00:00
|
|
|
Item {
|
|
|
|
property int btnMargin: 8
|
|
|
|
property int btnOuterMargin: 32
|
|
|
|
id: walletMenu
|
|
|
|
width: sendBtn.width + receiveBtn.width + settingsBtn.width
|
|
|
|
+ walletMenu.btnOuterMargin * 2
|
|
|
|
anchors.top: parent.top
|
|
|
|
anchors.topMargin: 16
|
|
|
|
anchors.right: parent.right
|
|
|
|
anchors.rightMargin: 16
|
|
|
|
|
|
|
|
Item {
|
|
|
|
id: sendBtn
|
|
|
|
width: sendImg.width + sendText.width + walletMenu.btnMargin
|
2020-05-29 15:43:37 +00:00
|
|
|
height: sendText.height
|
2020-05-28 13:49:28 +00:00
|
|
|
|
|
|
|
Image {
|
|
|
|
id: sendImg
|
|
|
|
width: 12
|
|
|
|
height: 12
|
|
|
|
fillMode: Image.PreserveAspectFit
|
|
|
|
source: "../../img/diagonalArrow.svg"
|
|
|
|
}
|
|
|
|
|
2020-06-19 18:06:58 +00:00
|
|
|
StyledText {
|
2020-05-28 13:49:28 +00:00
|
|
|
id: sendText
|
|
|
|
text: "Send"
|
|
|
|
anchors.left: sendImg.right
|
|
|
|
anchors.leftMargin: walletMenu.btnMargin
|
|
|
|
font.pixelSize: 13
|
|
|
|
color: Theme.blue
|
|
|
|
}
|
2020-05-29 15:43:37 +00:00
|
|
|
MouseArea {
|
|
|
|
anchors.rightMargin: -Theme.smallPadding
|
|
|
|
anchors.leftMargin: -Theme.smallPadding
|
|
|
|
anchors.bottomMargin: -Theme.smallPadding
|
|
|
|
anchors.topMargin: -Theme.smallPadding
|
|
|
|
anchors.fill: parent
|
|
|
|
onClicked: sendModal.open()
|
|
|
|
cursorShape: Qt.PointingHandCursor
|
|
|
|
}
|
2020-05-28 13:49:28 +00:00
|
|
|
}
|
|
|
|
Item {
|
|
|
|
id: receiveBtn
|
|
|
|
width: receiveImg.width + receiveText.width + walletMenu.btnMargin
|
|
|
|
anchors.left: sendBtn.right
|
|
|
|
anchors.leftMargin: walletMenu.btnOuterMargin
|
|
|
|
|
|
|
|
Image {
|
|
|
|
id: receiveImg
|
|
|
|
width: 12
|
|
|
|
height: 12
|
|
|
|
fillMode: Image.PreserveAspectFit
|
|
|
|
source: "../../img/diagonalArrow.svg"
|
2020-05-28 13:50:31 +00:00
|
|
|
rotation: 180
|
2020-05-28 13:49:28 +00:00
|
|
|
}
|
|
|
|
|
2020-06-19 18:06:58 +00:00
|
|
|
StyledText {
|
2020-05-28 13:49:28 +00:00
|
|
|
id: receiveText
|
|
|
|
text: "Receive"
|
|
|
|
anchors.left: receiveImg.right
|
|
|
|
anchors.leftMargin: walletMenu.btnMargin
|
|
|
|
font.pixelSize: 13
|
|
|
|
color: Theme.blue
|
|
|
|
}
|
|
|
|
}
|
2020-06-02 01:02:50 +00:00
|
|
|
Item {
|
2020-05-28 13:49:28 +00:00
|
|
|
id: settingsBtn
|
|
|
|
anchors.left: receiveBtn.right
|
|
|
|
anchors.leftMargin: walletMenu.btnOuterMargin
|
2020-06-02 01:02:50 +00:00
|
|
|
width: settingsImg.width
|
2020-06-18 16:38:35 +00:00
|
|
|
height: settingsImg.height
|
2020-06-02 01:02:50 +00:00
|
|
|
Image {
|
|
|
|
id: settingsImg
|
|
|
|
width: 18
|
|
|
|
height: 18
|
|
|
|
fillMode: Image.PreserveAspectFit
|
|
|
|
source: "../../img/settings.svg"
|
|
|
|
}
|
2020-06-03 15:18:39 +00:00
|
|
|
|
2020-06-02 01:02:50 +00:00
|
|
|
MouseArea {
|
|
|
|
anchors.rightMargin: -Theme.smallPadding
|
|
|
|
anchors.leftMargin: -Theme.smallPadding
|
|
|
|
anchors.bottomMargin: -Theme.smallPadding
|
|
|
|
anchors.topMargin: -Theme.smallPadding
|
|
|
|
anchors.fill: parent
|
2020-06-03 15:18:39 +00:00
|
|
|
acceptedButtons: Qt.LeftButton | Qt.RightButton
|
2020-06-02 01:02:50 +00:00
|
|
|
cursorShape: Qt.PointingHandCursor
|
2020-06-03 15:18:39 +00:00
|
|
|
onClicked: {
|
|
|
|
let x = settingsImg.x + settingsImg.width / 2 - newSettingsMenu.width / 2
|
|
|
|
newSettingsMenu.popup(x, settingsImg.height + 10)
|
|
|
|
}
|
|
|
|
|
|
|
|
PopupMenu {
|
|
|
|
id: newSettingsMenu
|
|
|
|
width: 280
|
2020-06-17 19:18:31 +00:00
|
|
|
Action {
|
2020-06-03 15:18:39 +00:00
|
|
|
text: qsTr("Account Settings")
|
|
|
|
icon.source: "../../img/account_settings.svg"
|
|
|
|
onTriggered: {
|
2020-06-10 20:32:04 +00:00
|
|
|
accountSettingsModal.open()
|
2020-06-03 15:18:39 +00:00
|
|
|
}
|
|
|
|
}
|
2020-06-17 19:18:31 +00:00
|
|
|
Action {
|
2020-06-03 15:18:39 +00:00
|
|
|
text: qsTr("Add/Remove Tokens")
|
|
|
|
icon.source: "../../img/add_remove_token.svg"
|
|
|
|
onTriggered: {
|
2020-06-03 16:49:18 +00:00
|
|
|
tokenSettingsModal.open()
|
2020-06-03 15:18:39 +00:00
|
|
|
}
|
|
|
|
}
|
2020-06-17 19:18:31 +00:00
|
|
|
Action {
|
2020-06-03 15:18:39 +00:00
|
|
|
text: qsTr("Set Currency")
|
|
|
|
icon.source: "../../img/set_currency.svg"
|
|
|
|
onTriggered: {
|
2020-06-04 16:00:07 +00:00
|
|
|
setCurrencyModal.open()
|
2020-06-03 15:18:39 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2020-06-02 01:02:50 +00:00
|
|
|
}
|
2020-05-28 13:49:28 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2020-05-28 13:50:31 +00:00
|
|
|
|
|
|
|
/*##^##
|
|
|
|
Designer {
|
|
|
|
D{i:0;formeditorColor:"#ffffff"}
|
|
|
|
}
|
|
|
|
##^##*/
|