46 lines
1.2 KiB
QML
46 lines
1.2 KiB
QML
import QtQuick 2.13
|
|
import QtQuick.Controls 2.13
|
|
//import QtQuick.Layouts 1.13
|
|
//import Qt.labs.platform 1.1
|
|
import "../../../imports"
|
|
import "../../../shared"
|
|
import "./components"
|
|
|
|
ModalPopup {
|
|
id: popup
|
|
|
|
title: qsTr("Send")
|
|
|
|
onOpened: {
|
|
sendModalContent.amountInput.text = ""
|
|
sendModalContent.amountInput.forceActiveFocus(Qt.MouseFocusReason)
|
|
sendModalContent.defaultAccount = walletModel.getDefaultAccount()
|
|
}
|
|
|
|
SendModalContent {
|
|
id: sendModalContent
|
|
}
|
|
|
|
footer: StyledButton {
|
|
anchors.top: parent.top
|
|
anchors.right: parent.right
|
|
anchors.rightMargin: Theme.padding
|
|
label: qsTr("Send")
|
|
|
|
onClicked: {
|
|
let result = walletModel.onSendTransaction(sendModalContent.selectedFromAccountAddress,
|
|
sendModalContent.toText,
|
|
sendModalContent.amountText,
|
|
sendModalContent.passwordText)
|
|
console.log(result)
|
|
}
|
|
}
|
|
}
|
|
|
|
/*##^##
|
|
Designer {
|
|
D{i:0;autoSize:true;height:480;width:640}
|
|
}
|
|
##^##*/
|
|
|