status-desktop/ui/app/AppLayouts/Wallet/WalletLayout.qml

129 lines
4.2 KiB
QML
Raw Normal View History

2020-06-17 19:18:31 +00:00
import QtQuick 2.13
import QtQuick.Controls 2.13
2020-06-17 19:18:31 +00:00
import QtQuick.Layouts 1.13
import "../../../imports"
import "../../../shared"
import "."
2020-05-27 15:41:40 +00:00
SplitView {
property var appSettings
id: walletView
Layout.fillHeight: true
Layout.fillWidth: true
handle: SplitViewHandle {}
Component.onCompleted: this.restoreState(appSettings.walletSplitView)
Component.onDestruction: appSettings.walletSplitView = this.saveState()
LeftTab {
id: leftTab
SplitView.preferredWidth: Style.current.leftTabPrefferedSize
SplitView.minimumWidth: Style.current.leftTabMinimumWidth
SplitView.maximumWidth: Style.current.leftTabMaximumWidth
}
2020-05-27 15:41:40 +00:00
Item {
id: walletContainer
anchors.top: parent.top
anchors.topMargin: 0
anchors.bottom: parent.bottom
anchors.bottomMargin: 0
anchors.right: parent.right
anchors.rightMargin: 0
anchors.left: leftTab.right
anchors.leftMargin: 0
WalletHeader {
2020-05-27 20:50:39 +00:00
id: walletHeader
2020-06-10 20:21:23 +00:00
changeSelectedAccount: leftTab.changeSelectedAccount
2020-05-27 20:50:39 +00:00
}
2020-05-27 20:50:39 +00:00
RowLayout {
2020-05-28 14:54:42 +00:00
id: walletInfoContainer
2020-05-27 20:50:39 +00:00
anchors.bottom: parent.bottom
anchors.bottomMargin: 0
anchors.left: parent.left
anchors.leftMargin: 0
anchors.right: parent.right
anchors.rightMargin: 0
anchors.top: walletHeader.bottom
anchors.topMargin: 23
Item {
2020-05-28 14:54:42 +00:00
id: walletInfoContent
Layout.fillHeight: true
Layout.fillWidth: true
2020-05-27 20:50:39 +00:00
TabBar {
id: walletTabBar
2020-05-27 20:50:39 +00:00
anchors.right: parent.right
anchors.rightMargin: Style.current.bigPadding
2020-05-27 20:50:39 +00:00
anchors.left: parent.left
anchors.leftMargin: Style.current.bigPadding
anchors.top: parent.top
anchors.topMargin: Style.current.padding
2020-05-28 14:54:42 +00:00
height: assetBtn.height
background: Rectangle {
color: Style.current.transparent
}
2020-05-27 20:50:39 +00:00
StatusTabButton {
id: assetBtn
2020-07-16 15:20:29 +00:00
//% "Assets"
btnText: qsTrId("wallet-assets")
2020-05-27 15:41:40 +00:00
}
StatusTabButton {
id: collectiblesBtn
anchors.left: assetBtn.right
anchors.leftMargin: 32
2020-07-16 15:20:29 +00:00
//% "Collectibles"
btnText: qsTrId("wallet-collectibles")
onClicked: {
walletModel.loadCollectiblesForAccount(walletModel.currentAccount.address)
}
2020-05-27 15:41:40 +00:00
}
StatusTabButton {
id: historyBtn
anchors.left: collectiblesBtn.right
anchors.leftMargin: 32
2020-07-16 15:20:29 +00:00
//% "History"
btnText: qsTrId("history")
onClicked: {
walletModel.loadTransactionsForAccount(walletModel.currentAccount.address)
}
2020-05-27 20:50:39 +00:00
}
}
2020-05-28 14:54:42 +00:00
StackLayout {
id: stackLayout
anchors.rightMargin: Style.current.bigPadding
anchors.leftMargin: Style.current.bigPadding
2020-05-28 14:54:42 +00:00
anchors.top: walletTabBar.bottom
anchors.right: parent.right
anchors.bottom: parent.bottom
anchors.left: parent.left
anchors.topMargin: Style.current.bigPadding
2020-05-28 14:54:42 +00:00
currentIndex: walletTabBar.currentIndex
2020-05-28 14:54:42 +00:00
AssetsTab {
id: assetsTab
}
CollectiblesTab {
id: collectiblesTab
}
HistoryTab {
id: historyTab
2020-05-27 15:41:40 +00:00
}
}
2020-05-27 20:50:39 +00:00
}
}
}
}
/*##^##
Designer {
D{i:0;autoSize:true;formeditorColor:"#ffffff";height:770;width:1152}
}
##^##*/