2020-06-17 19:18:31 +00:00
|
|
|
import QtQuick 2.13
|
|
|
|
import QtQuick.Controls 2.13
|
|
|
|
import QtQuick.Layouts 1.13
|
2020-05-19 19:44:45 +00:00
|
|
|
import "../../../imports"
|
2020-06-19 18:06:58 +00:00
|
|
|
import "../../../shared"
|
2020-05-15 21:10:00 +00:00
|
|
|
|
2020-06-23 18:51:10 +00:00
|
|
|
Item {
|
2020-05-15 21:10:00 +00:00
|
|
|
id: nodeView
|
|
|
|
Layout.fillHeight: true
|
|
|
|
Layout.fillWidth: true
|
|
|
|
|
|
|
|
ColumnLayout {
|
|
|
|
id: rpcColumn
|
|
|
|
spacing: 0
|
2020-06-23 18:51:10 +00:00
|
|
|
anchors.fill: parent
|
2020-05-15 21:10:00 +00:00
|
|
|
|
2020-05-19 21:00:04 +00:00
|
|
|
ColumnLayout {
|
2020-05-19 20:53:11 +00:00
|
|
|
id: messageContainer
|
|
|
|
Layout.fillHeight: true
|
2020-06-19 18:06:58 +00:00
|
|
|
StyledText {
|
2020-05-19 21:00:04 +00:00
|
|
|
id: testDescription
|
2020-07-02 15:14:31 +00:00
|
|
|
color: Style.current.lightBlueText
|
2020-05-19 21:00:04 +00:00
|
|
|
text: "latest block (auto updates):"
|
2020-07-02 15:14:31 +00:00
|
|
|
Layout.rightMargin: Style.current.padding
|
|
|
|
Layout.leftMargin: Style.current.padding
|
2020-05-19 21:00:04 +00:00
|
|
|
Layout.fillWidth: true
|
|
|
|
font.weight: Font.Medium
|
|
|
|
font.pixelSize: 20
|
|
|
|
}
|
2020-06-19 18:06:58 +00:00
|
|
|
StyledText {
|
2020-05-19 20:53:11 +00:00
|
|
|
id: test
|
2020-07-02 15:14:31 +00:00
|
|
|
color: Style.current.lightBlueText
|
2020-05-19 20:53:11 +00:00
|
|
|
text: nodeModel.lastMessage
|
2020-07-02 15:14:31 +00:00
|
|
|
Layout.rightMargin: Style.current.padding
|
|
|
|
Layout.leftMargin: Style.current.padding
|
2020-05-19 20:53:11 +00:00
|
|
|
Layout.fillWidth: true
|
|
|
|
font.weight: Font.Medium
|
2020-05-19 21:00:04 +00:00
|
|
|
font.pixelSize: 20
|
2020-05-19 20:53:11 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-05-15 21:10:00 +00:00
|
|
|
RowLayout {
|
|
|
|
id: resultContainer
|
|
|
|
Layout.fillHeight: true
|
2020-07-02 15:14:31 +00:00
|
|
|
Layout.rightMargin: Style.current.padding
|
|
|
|
Layout.leftMargin: Style.current.padding
|
2020-05-15 21:10:00 +00:00
|
|
|
TextArea { id: callResult; Layout.fillWidth: true; text: nodeModel.callResult; readOnly: true }
|
|
|
|
}
|
|
|
|
|
|
|
|
RowLayout {
|
|
|
|
id: rpcInputContainer
|
|
|
|
height: 70
|
|
|
|
Layout.fillWidth: true
|
|
|
|
Layout.bottomMargin: 0
|
|
|
|
Layout.alignment: Qt.AlignLeft | Qt.AlignBottom
|
|
|
|
transformOrigin: Item.Bottom
|
|
|
|
|
|
|
|
Item {
|
|
|
|
id: element2
|
|
|
|
width: 200
|
|
|
|
height: 70
|
|
|
|
Layout.fillWidth: true
|
|
|
|
|
|
|
|
Rectangle {
|
|
|
|
id: rectangle
|
|
|
|
color: "#00000000"
|
2020-07-13 18:45:54 +00:00
|
|
|
border.color: Style.current.border
|
2020-05-15 21:10:00 +00:00
|
|
|
anchors.fill: parent
|
|
|
|
|
|
|
|
Button {
|
|
|
|
id: rpcSendBtn
|
|
|
|
x: 100
|
|
|
|
width: 30
|
|
|
|
height: 30
|
|
|
|
text: "\u2191"
|
|
|
|
font.bold: true
|
|
|
|
font.pointSize: 12
|
|
|
|
anchors.top: parent.top
|
|
|
|
anchors.topMargin: 20
|
|
|
|
anchors.right: parent.right
|
|
|
|
anchors.rightMargin: 16
|
|
|
|
onClicked: {
|
|
|
|
nodeModel.onSend(txtData.text)
|
|
|
|
txtData.text = ""
|
|
|
|
}
|
|
|
|
enabled: txtData.text !== ""
|
|
|
|
background: Rectangle {
|
2020-07-02 15:14:31 +00:00
|
|
|
color: parent.enabled ? Style.current.blue : Style.current.grey
|
2020-05-15 21:10:00 +00:00
|
|
|
radius: 50
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-06-19 18:21:02 +00:00
|
|
|
StyledTextField {
|
2020-05-15 21:10:00 +00:00
|
|
|
id: txtData
|
|
|
|
text: ""
|
|
|
|
leftPadding: 0
|
|
|
|
padding: 0
|
|
|
|
font.pixelSize: 14
|
2020-07-06 20:39:55 +00:00
|
|
|
//% "Type json-rpc message... e.g {\"method\": \"eth_accounts\"}"
|
|
|
|
placeholderText: qsTrId("type-json-rpc-message")
|
2020-05-15 21:10:00 +00:00
|
|
|
anchors.right: rpcSendBtn.left
|
|
|
|
anchors.rightMargin: 16
|
|
|
|
anchors.top: parent.top
|
|
|
|
anchors.topMargin: 24
|
|
|
|
anchors.left: parent.left
|
|
|
|
anchors.leftMargin: 24
|
|
|
|
Keys.onEnterPressed: {
|
|
|
|
nodeModel.onSend(txtData.text)
|
|
|
|
txtData.text = ""
|
|
|
|
}
|
|
|
|
Keys.onReturnPressed: {
|
|
|
|
nodeModel.onSend(txtData.text)
|
|
|
|
txtData.text = ""
|
|
|
|
}
|
|
|
|
background: Rectangle {
|
|
|
|
color: "#00000000"
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
MouseArea {
|
|
|
|
id: mouseArea1
|
|
|
|
anchors.rightMargin: 50
|
|
|
|
anchors.fill: parent
|
|
|
|
onClicked : {
|
|
|
|
txtData.forceActiveFocus(Qt.MouseFocusReason)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
/*##^##
|
|
|
|
Designer {
|
|
|
|
D{i:0;formeditorZoom:0.5;height:770;width:1152}
|
|
|
|
}
|
|
|
|
##^##*/
|