104 lines
2.7 KiB
QML
104 lines
2.7 KiB
QML
|
import QtQuick 2.13
|
||
|
import QtQuick.Controls 2.13
|
||
|
import QtQuick.Layouts 1.13
|
||
|
|
||
|
import utils 1.0
|
||
|
|
||
|
import StatusQ.Controls 0.1
|
||
|
import StatusQ.Popups 0.1
|
||
|
import StatusQ.Core 0.1
|
||
|
import StatusQ.Core.Theme 0.1
|
||
|
|
||
|
Rectangle {
|
||
|
id: footer
|
||
|
|
||
|
//% "Unknown"
|
||
|
property string estimatedTime: qsTr("Unknown")
|
||
|
property string maxFiatFees: ""
|
||
|
property bool currentGroupPending: true
|
||
|
property bool currentGroupValid: false
|
||
|
property bool isLastGroup: false
|
||
|
|
||
|
signal nextButtonClicked()
|
||
|
|
||
|
width: parent.width
|
||
|
height: 82
|
||
|
radius: 8
|
||
|
color: Theme.palette.statusModal.backgroundColor
|
||
|
|
||
|
Rectangle {
|
||
|
anchors.top: parent.top
|
||
|
width: parent.width
|
||
|
height: parent.radius
|
||
|
color: parent.color
|
||
|
|
||
|
StatusModalDivider {
|
||
|
anchors.top: parent.top
|
||
|
width: parent.width
|
||
|
}
|
||
|
}
|
||
|
|
||
|
RowLayout {
|
||
|
anchors.verticalCenter: parent.verticalCenter
|
||
|
anchors.left: parent.left
|
||
|
anchors.right: parent.right
|
||
|
anchors.leftMargin: 32
|
||
|
anchors.rightMargin: 32
|
||
|
|
||
|
ColumnLayout {
|
||
|
StatusBaseText {
|
||
|
font.pixelSize: 15
|
||
|
color: Theme.palette.directColor5
|
||
|
//% "Estimated Time:"
|
||
|
text: qsTr("Estimated Time:")
|
||
|
wrapMode: Text.WordWrap
|
||
|
}
|
||
|
// To-do not implemented yet
|
||
|
StatusBaseText {
|
||
|
font.pixelSize: 15
|
||
|
color: Theme.palette.directColor1
|
||
|
text: estimatedTime
|
||
|
wrapMode: Text.WordWrap
|
||
|
}
|
||
|
}
|
||
|
|
||
|
// To fill gap in between
|
||
|
Item {
|
||
|
Layout.fillWidth: true
|
||
|
implicitHeight: 1
|
||
|
}
|
||
|
|
||
|
RowLayout {
|
||
|
spacing: 16
|
||
|
ColumnLayout {
|
||
|
StatusBaseText {
|
||
|
font.pixelSize: 15
|
||
|
color: Theme.palette.directColor5
|
||
|
//% "Max Fees:"
|
||
|
text: qsTr("Max Fees:")
|
||
|
wrapMode: Text.WordWrap
|
||
|
}
|
||
|
StatusBaseText {
|
||
|
font.pixelSize: 15
|
||
|
color: Theme.palette.directColor1
|
||
|
text: maxFiatFees
|
||
|
wrapMode: Text.WordWrap
|
||
|
}
|
||
|
}
|
||
|
|
||
|
StatusFlatButton {
|
||
|
icon.name: isLastGroup ? "" : "password"
|
||
|
//% "Send"
|
||
|
text: qsTrId("command-button-send")
|
||
|
size: StatusBaseButton.Size.Large
|
||
|
normalColor: Theme.palette.primaryColor2
|
||
|
disaledColor: Theme.palette.baseColor2
|
||
|
enabled: currentGroupValid && !currentGroupPending
|
||
|
loading: currentGroupPending
|
||
|
onClicked: nextButtonClicked()
|
||
|
}
|
||
|
}
|
||
|
}
|
||
|
}
|
||
|
|