2014-02-21 11:37:40 +00:00
|
|
|
import QtQuick 2.0
|
|
|
|
import QtQuick.Controls 1.0;
|
|
|
|
import QtQuick.Layouts 1.0;
|
2014-02-21 16:29:59 +00:00
|
|
|
import QtQuick.Dialogs 1.0;
|
2014-02-22 00:52:47 +00:00
|
|
|
import QtQuick.Window 2.1;
|
2014-02-23 00:56:04 +00:00
|
|
|
import QtQuick.Controls.Styles 1.1
|
2014-02-22 22:19:38 +00:00
|
|
|
import Ethereum 1.0
|
2014-02-21 11:37:40 +00:00
|
|
|
|
|
|
|
ApplicationWindow {
|
2014-05-29 10:24:56 +00:00
|
|
|
id: root
|
|
|
|
|
2014-05-30 11:28:31 +00:00
|
|
|
property alias miningButtonText: miningButton.text
|
|
|
|
|
2014-05-29 10:24:56 +00:00
|
|
|
width: 900
|
|
|
|
height: 600
|
|
|
|
minimumHeight: 300
|
|
|
|
|
|
|
|
title: "Ethereal"
|
|
|
|
|
2014-08-17 11:49:46 +00:00
|
|
|
TextField {
|
|
|
|
id: copyElementHax
|
|
|
|
visible: false
|
|
|
|
}
|
|
|
|
|
|
|
|
function copyToClipboard(text) {
|
|
|
|
copyElementHax.text = text
|
|
|
|
copyElementHax.selectAll()
|
|
|
|
copyElementHax.copy()
|
|
|
|
}
|
|
|
|
|
2014-08-12 09:02:33 +00:00
|
|
|
// Takes care of loading all default plugins
|
|
|
|
Component.onCompleted: {
|
2014-08-17 19:07:09 +00:00
|
|
|
var historyView = addPlugin("./views/history.qml", {default: true})
|
|
|
|
var newTxView = addPlugin("./views/transaction.qml", {default: true})
|
|
|
|
var chainView = addPlugin("./views/chain.qml", {default: true})
|
|
|
|
var infoView = addPlugin("./views/info.qml", {default: true})
|
|
|
|
var pendingTxView = addPlugin("./views/pending_tx.qml", {default: true})
|
|
|
|
var pendingTxView = addPlugin("./views/javascript.qml", {default: true})
|
2014-08-12 09:02:33 +00:00
|
|
|
|
|
|
|
// Call the ready handler
|
2014-08-12 10:16:21 +00:00
|
|
|
gui.done()
|
2014-08-12 09:02:33 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
function addPlugin(path, options) {
|
|
|
|
var component = Qt.createComponent(path);
|
|
|
|
if(component.status != Component.Ready) {
|
|
|
|
if(component.status == Component.Error) {
|
|
|
|
console.debug("Error:"+ component.errorString());
|
|
|
|
}
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
2014-08-13 08:52:30 +00:00
|
|
|
return mainSplit.addComponent(component, options)
|
2014-08-12 09:02:33 +00:00
|
|
|
}
|
|
|
|
|
2014-05-29 10:24:56 +00:00
|
|
|
MenuBar {
|
|
|
|
Menu {
|
|
|
|
title: "File"
|
|
|
|
MenuItem {
|
|
|
|
text: "Import App"
|
|
|
|
shortcut: "Ctrl+o"
|
2014-08-12 10:03:06 +00:00
|
|
|
onTriggered: {
|
2014-08-17 10:41:23 +00:00
|
|
|
generalFileDialog.show(true, importApp)
|
2014-08-12 10:03:06 +00:00
|
|
|
}
|
2014-05-29 10:24:56 +00:00
|
|
|
}
|
2014-07-25 08:41:57 +00:00
|
|
|
|
2014-08-07 14:35:47 +00:00
|
|
|
MenuItem {
|
|
|
|
text: "Browser"
|
2014-08-12 11:16:44 +00:00
|
|
|
onTriggered: eth.openBrowser()
|
2014-08-07 14:35:47 +00:00
|
|
|
}
|
|
|
|
|
2014-08-12 09:02:33 +00:00
|
|
|
MenuItem {
|
|
|
|
text: "Add plugin"
|
|
|
|
onTriggered: {
|
2014-08-17 10:41:23 +00:00
|
|
|
generalFileDialog.show(true, function(path) {
|
2014-08-12 10:03:06 +00:00
|
|
|
addPlugin(path, {canClose: true})
|
2014-08-17 10:41:23 +00:00
|
|
|
})
|
2014-08-12 09:02:33 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2014-07-25 08:41:57 +00:00
|
|
|
MenuSeparator {}
|
|
|
|
|
|
|
|
MenuItem {
|
|
|
|
text: "Import key"
|
|
|
|
shortcut: "Ctrl+i"
|
2014-08-12 10:03:06 +00:00
|
|
|
onTriggered: {
|
2014-08-17 10:41:23 +00:00
|
|
|
generalFileDialog.show(true, function(path) {
|
|
|
|
gui.importKey(path)
|
|
|
|
})
|
2014-08-12 10:03:06 +00:00
|
|
|
}
|
2014-07-25 08:41:57 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
MenuItem {
|
|
|
|
text: "Export keys"
|
|
|
|
shortcut: "Ctrl+e"
|
2014-08-12 10:03:06 +00:00
|
|
|
onTriggered: {
|
2014-08-17 10:41:23 +00:00
|
|
|
generalFileDialog.show(false, function(path) {
|
|
|
|
})
|
2014-08-12 10:03:06 +00:00
|
|
|
}
|
2014-07-25 08:41:57 +00:00
|
|
|
}
|
2014-05-29 10:24:56 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
Menu {
|
2014-06-14 13:44:32 +00:00
|
|
|
title: "Developer"
|
2014-05-29 10:24:56 +00:00
|
|
|
MenuItem {
|
|
|
|
text: "Debugger"
|
|
|
|
shortcut: "Ctrl+d"
|
2014-08-14 15:01:37 +00:00
|
|
|
onTriggered: eth.startDebugger()
|
2014-05-29 10:24:56 +00:00
|
|
|
}
|
2014-08-10 13:57:42 +00:00
|
|
|
|
|
|
|
MenuItem {
|
|
|
|
text: "Import Tx"
|
|
|
|
onTriggered: {
|
|
|
|
txImportDialog.visible = true
|
|
|
|
}
|
|
|
|
}
|
2014-08-11 14:24:35 +00:00
|
|
|
|
|
|
|
MenuItem {
|
|
|
|
text: "Run JS file"
|
|
|
|
onTriggered: {
|
2014-08-17 10:41:23 +00:00
|
|
|
generalFileDialog.show(true, function(path) {
|
2014-08-13 08:52:30 +00:00
|
|
|
eth.evalJavascriptFile(path)
|
2014-08-17 10:41:23 +00:00
|
|
|
})
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
MenuItem {
|
|
|
|
text: "Dump state"
|
|
|
|
onTriggered: {
|
|
|
|
generalFileDialog.show(false, function(path) {
|
|
|
|
// Empty hash for latest
|
|
|
|
gui.dumpState("", path)
|
|
|
|
})
|
2014-08-11 14:24:35 +00:00
|
|
|
}
|
|
|
|
}
|
2014-05-29 10:24:56 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
Menu {
|
|
|
|
title: "Network"
|
|
|
|
MenuItem {
|
|
|
|
text: "Add Peer"
|
|
|
|
shortcut: "Ctrl+p"
|
|
|
|
onTriggered: {
|
|
|
|
addPeerWin.visible = true
|
|
|
|
}
|
|
|
|
}
|
2014-06-02 13:16:37 +00:00
|
|
|
MenuItem {
|
|
|
|
text: "Show Peers"
|
|
|
|
shortcut: "Ctrl+e"
|
|
|
|
onTriggered: {
|
|
|
|
peerWindow.visible = true
|
|
|
|
}
|
|
|
|
}
|
2014-05-29 10:24:56 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
Menu {
|
|
|
|
title: "Help"
|
|
|
|
MenuItem {
|
|
|
|
text: "About"
|
|
|
|
onTriggered: {
|
|
|
|
aboutWin.visible = true
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|
|
|
|
|
2014-08-12 10:03:06 +00:00
|
|
|
statusBar: StatusBar {
|
|
|
|
height: 32
|
|
|
|
RowLayout {
|
|
|
|
Button {
|
|
|
|
id: miningButton
|
|
|
|
text: "Start Mining"
|
|
|
|
onClicked: {
|
2014-08-12 10:16:21 +00:00
|
|
|
gui.toggleMining()
|
2014-08-12 10:03:06 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
Button {
|
|
|
|
id: importAppButton
|
|
|
|
text: "Browser"
|
|
|
|
onClicked: {
|
2014-08-12 11:16:44 +00:00
|
|
|
eth.openBrowser()
|
2014-08-12 10:03:06 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
RowLayout {
|
|
|
|
Label {
|
|
|
|
id: walletValueLabel
|
|
|
|
|
|
|
|
font.pixelSize: 10
|
|
|
|
styleColor: "#797979"
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
Label {
|
|
|
|
y: 6
|
|
|
|
id: lastBlockLabel
|
|
|
|
objectName: "lastBlockLabel"
|
|
|
|
visible: true
|
|
|
|
text: ""
|
|
|
|
font.pixelSize: 10
|
|
|
|
anchors.right: peerGroup.left
|
|
|
|
anchors.rightMargin: 5
|
|
|
|
}
|
|
|
|
|
|
|
|
ProgressBar {
|
|
|
|
id: syncProgressIndicator
|
|
|
|
visible: false
|
|
|
|
objectName: "syncProgressIndicator"
|
|
|
|
y: 3
|
|
|
|
width: 140
|
|
|
|
indeterminate: true
|
|
|
|
anchors.right: peerGroup.left
|
|
|
|
anchors.rightMargin: 5
|
|
|
|
}
|
|
|
|
|
|
|
|
RowLayout {
|
|
|
|
id: peerGroup
|
|
|
|
y: 7
|
|
|
|
anchors.right: parent.right
|
|
|
|
MouseArea {
|
|
|
|
onDoubleClicked: peerWindow.visible = true
|
|
|
|
anchors.fill: parent
|
|
|
|
}
|
|
|
|
|
|
|
|
Label {
|
|
|
|
id: peerLabel
|
|
|
|
font.pixelSize: 8
|
|
|
|
text: "0 / 0"
|
|
|
|
}
|
|
|
|
Image {
|
|
|
|
id: peerImage
|
|
|
|
width: 10; height: 10
|
|
|
|
source: "../network.png"
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2014-05-29 10:24:56 +00:00
|
|
|
|
|
|
|
property var blockModel: ListModel {
|
|
|
|
id: blockModel
|
|
|
|
}
|
|
|
|
|
|
|
|
SplitView {
|
2014-08-12 09:02:33 +00:00
|
|
|
property var views: [];
|
|
|
|
|
|
|
|
id: mainSplit
|
2014-05-29 10:24:56 +00:00
|
|
|
anchors.fill: parent
|
|
|
|
resizing: false
|
|
|
|
|
2014-08-17 19:07:09 +00:00
|
|
|
function setView(view, menu) {
|
2014-08-12 09:02:33 +00:00
|
|
|
for(var i = 0; i < views.length; i++) {
|
2014-08-17 19:07:09 +00:00
|
|
|
views[i][0].visible = false
|
2014-08-12 09:02:33 +00:00
|
|
|
|
2014-08-17 19:07:09 +00:00
|
|
|
views[i][1].border.color = "#00000000"
|
|
|
|
views[i][1].color = "#00000000"
|
|
|
|
}
|
2014-08-12 09:02:33 +00:00
|
|
|
view.visible = true
|
2014-08-17 19:07:09 +00:00
|
|
|
|
|
|
|
menu.border.color = "#CCCCCC"
|
|
|
|
menu.color = "#FFFFFFFF"
|
2014-08-12 09:02:33 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
function addComponent(component, options) {
|
|
|
|
var view = mainView.createView(component, options)
|
|
|
|
if(!view.hasOwnProperty("iconFile")) {
|
|
|
|
console.log("Could not load plugin. Property 'iconFile' not found on view.");
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2014-08-17 19:07:09 +00:00
|
|
|
var menuItem = menu.createMenuItem(view.iconFile, view, options);
|
|
|
|
|
|
|
|
mainSplit.views.push([view, menuItem]);
|
2014-08-12 09:02:33 +00:00
|
|
|
|
|
|
|
return view
|
|
|
|
}
|
|
|
|
|
2014-08-12 10:03:06 +00:00
|
|
|
/*********************
|
|
|
|
* Main menu.
|
|
|
|
********************/
|
2014-05-29 10:24:56 +00:00
|
|
|
Rectangle {
|
|
|
|
id: menu
|
2014-08-17 19:07:09 +00:00
|
|
|
Layout.minimumWidth: 180
|
|
|
|
Layout.maximumWidth: 180
|
2014-05-29 10:24:56 +00:00
|
|
|
anchors.top: parent.top
|
2014-08-17 19:07:09 +00:00
|
|
|
color: "#ececec"
|
2014-05-29 10:24:56 +00:00
|
|
|
|
2014-08-12 09:02:33 +00:00
|
|
|
Component {
|
|
|
|
id: menuItemTemplate
|
2014-08-17 19:07:09 +00:00
|
|
|
Rectangle {
|
|
|
|
id: menuItem
|
2014-08-12 09:02:33 +00:00
|
|
|
property var view;
|
2014-05-29 10:24:56 +00:00
|
|
|
|
2014-08-17 19:07:09 +00:00
|
|
|
property alias title: label.text
|
|
|
|
property alias secondary: secondary.text
|
2014-08-14 15:01:37 +00:00
|
|
|
|
2014-08-17 19:07:09 +00:00
|
|
|
width: 180
|
|
|
|
height: 28
|
|
|
|
border.color: "#00000000"
|
|
|
|
border.width: 1
|
|
|
|
radius: 5
|
|
|
|
color: "#00000000"
|
2014-08-13 08:52:30 +00:00
|
|
|
|
|
|
|
anchors {
|
|
|
|
left: parent.left
|
2014-08-17 19:07:09 +00:00
|
|
|
leftMargin: 4
|
2014-08-13 08:52:30 +00:00
|
|
|
}
|
|
|
|
|
2014-08-14 15:01:37 +00:00
|
|
|
Image {
|
|
|
|
id: icon
|
2014-08-17 19:07:09 +00:00
|
|
|
anchors {
|
|
|
|
left: parent.left
|
|
|
|
verticalCenter: parent.verticalCenter
|
2014-08-13 08:52:30 +00:00
|
|
|
}
|
2014-08-17 19:07:09 +00:00
|
|
|
source: "../pick.png"
|
2014-08-13 08:52:30 +00:00
|
|
|
}
|
|
|
|
|
2014-08-17 19:07:09 +00:00
|
|
|
Text {
|
|
|
|
id: label
|
|
|
|
anchors {
|
|
|
|
left: icon.right
|
|
|
|
verticalCenter: parent.verticalCenter
|
2014-08-13 08:52:30 +00:00
|
|
|
}
|
|
|
|
|
2014-08-17 19:07:09 +00:00
|
|
|
text: "Chain"
|
|
|
|
font.bold: true
|
|
|
|
color: "#0D0A01"
|
|
|
|
font.pixelSize: 12
|
|
|
|
}
|
2014-08-14 15:01:37 +00:00
|
|
|
|
2014-08-17 19:07:09 +00:00
|
|
|
Text {
|
|
|
|
id: secondary
|
|
|
|
anchors {
|
|
|
|
right: parent.right
|
|
|
|
rightMargin: 8
|
|
|
|
verticalCenter: parent.verticalCenter
|
|
|
|
}
|
|
|
|
color: "#AEADBE"
|
|
|
|
font.pixelSize: 12
|
|
|
|
}
|
2014-08-14 15:01:37 +00:00
|
|
|
|
2014-08-17 19:07:09 +00:00
|
|
|
MouseArea {
|
|
|
|
anchors.fill: parent
|
|
|
|
onClicked: {
|
|
|
|
mainSplit.setView(view, menuItem)
|
2014-08-13 08:52:30 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
function createMenuItem(icon, view, options) {
|
|
|
|
if(options === undefined) {
|
|
|
|
options = {};
|
|
|
|
}
|
2014-08-10 13:57:42 +00:00
|
|
|
|
2014-08-17 19:07:09 +00:00
|
|
|
if(options.default) {
|
|
|
|
var comp = menuItemTemplate.createObject(menuDefault)
|
|
|
|
}
|
|
|
|
|
2014-08-12 09:02:33 +00:00
|
|
|
comp.view = view
|
2014-08-17 19:07:09 +00:00
|
|
|
comp.title = view.title
|
|
|
|
if(view.secondary !== undefined) {
|
|
|
|
comp.secondary = view.secondary
|
|
|
|
}
|
|
|
|
|
|
|
|
return comp
|
|
|
|
|
2014-08-13 08:52:30 +00:00
|
|
|
/*
|
|
|
|
if(options.canClose) {
|
|
|
|
//comp.closeButton.visible = options.canClose
|
|
|
|
}
|
|
|
|
*/
|
2014-08-12 09:02:33 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
ColumnLayout {
|
|
|
|
id: menuColumn
|
2014-08-17 19:07:09 +00:00
|
|
|
y: 30
|
|
|
|
width: parent.width
|
2014-08-12 09:02:33 +00:00
|
|
|
anchors.left: parent.left
|
|
|
|
anchors.right: parent.right
|
2014-08-17 19:07:09 +00:00
|
|
|
spacing: 3
|
|
|
|
|
|
|
|
Text {
|
|
|
|
text: "ETHEREUM"
|
|
|
|
font.bold: true
|
|
|
|
anchors {
|
|
|
|
left: parent.left
|
|
|
|
leftMargin: 5
|
|
|
|
}
|
|
|
|
color: "#888888"
|
|
|
|
}
|
|
|
|
|
|
|
|
ColumnLayout {
|
|
|
|
id: menuDefault
|
|
|
|
spacing: 3
|
|
|
|
anchors {
|
|
|
|
left: parent.left
|
|
|
|
right: parent.right
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
Text {
|
|
|
|
text: "APPS"
|
|
|
|
font.bold: true
|
|
|
|
anchors {
|
|
|
|
left: parent.left
|
|
|
|
leftMargin: 5
|
|
|
|
}
|
|
|
|
color: "#888888"
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
Rectangle {
|
|
|
|
width: 180
|
|
|
|
height: 28
|
|
|
|
border.color: "#CCCCCC"
|
|
|
|
border.width: 1
|
|
|
|
radius: 5
|
|
|
|
color: "#FFFFFF"
|
|
|
|
|
|
|
|
anchors {
|
|
|
|
left: parent.left
|
|
|
|
leftMargin: 4
|
|
|
|
}
|
|
|
|
|
|
|
|
Image {
|
|
|
|
id: icon
|
|
|
|
anchors {
|
|
|
|
left: parent.left
|
|
|
|
verticalCenter: parent.verticalCenter
|
|
|
|
}
|
|
|
|
source: "../pick.png"
|
|
|
|
}
|
|
|
|
|
|
|
|
Text {
|
|
|
|
anchors {
|
|
|
|
left: icon.right
|
|
|
|
verticalCenter: parent.verticalCenter
|
|
|
|
}
|
|
|
|
|
|
|
|
text: "Wallet"
|
|
|
|
font.bold: true
|
|
|
|
color: "#0D0A01"
|
|
|
|
}
|
|
|
|
|
|
|
|
Text {
|
|
|
|
anchors {
|
|
|
|
right: parent.right
|
|
|
|
rightMargin: 8
|
|
|
|
verticalCenter: parent.verticalCenter
|
|
|
|
}
|
|
|
|
color: "#AEADBE"
|
|
|
|
text: "12e15 Ξ"
|
|
|
|
font.pixelSize: 12
|
|
|
|
}
|
|
|
|
}
|
|
|
|
*/
|
2014-05-29 10:24:56 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2014-08-12 10:03:06 +00:00
|
|
|
/*********************
|
|
|
|
* Main view
|
|
|
|
********************/
|
2014-05-29 10:24:56 +00:00
|
|
|
Rectangle {
|
|
|
|
id: mainView
|
|
|
|
color: "#00000000"
|
2014-08-12 09:02:33 +00:00
|
|
|
|
2014-05-29 10:24:56 +00:00
|
|
|
anchors.right: parent.right
|
|
|
|
anchors.left: menu.right
|
|
|
|
anchors.bottom: parent.bottom
|
|
|
|
anchors.top: parent.top
|
|
|
|
|
2014-08-12 09:02:33 +00:00
|
|
|
function createView(component) {
|
|
|
|
var view = component.createObject(mainView)
|
2014-06-14 13:44:32 +00:00
|
|
|
|
2014-08-12 09:02:33 +00:00
|
|
|
return view;
|
2014-05-29 10:24:56 +00:00
|
|
|
}
|
2014-08-12 09:02:33 +00:00
|
|
|
}
|
2014-05-29 10:24:56 +00:00
|
|
|
|
2014-08-10 13:57:42 +00:00
|
|
|
|
2014-05-29 10:24:56 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2014-08-12 10:03:06 +00:00
|
|
|
/******************
|
|
|
|
* Dialogs
|
|
|
|
*****************/
|
2014-08-11 14:24:35 +00:00
|
|
|
FileDialog {
|
|
|
|
id: generalFileDialog
|
|
|
|
property var callback;
|
|
|
|
onAccepted: {
|
2014-08-17 10:41:23 +00:00
|
|
|
var path = this.fileUrl.toString();
|
|
|
|
callback.call(this, path);
|
|
|
|
}
|
|
|
|
|
|
|
|
function show(selectExisting, callback) {
|
|
|
|
generalFileDialog.callback = callback;
|
|
|
|
generalFileDialog.selectExisting = selectExisting;
|
|
|
|
|
|
|
|
this.open();
|
2014-08-11 14:24:35 +00:00
|
|
|
}
|
|
|
|
}
|
2014-07-25 08:41:57 +00:00
|
|
|
|
2014-05-29 10:24:56 +00:00
|
|
|
|
2014-08-12 10:21:50 +00:00
|
|
|
/******************
|
|
|
|
* Wallet functions
|
|
|
|
*****************/
|
|
|
|
function importApp(path) {
|
|
|
|
var ext = path.split('.').pop()
|
|
|
|
if(ext == "html" || ext == "htm") {
|
2014-08-13 22:18:37 +00:00
|
|
|
eth.openHtml(path)
|
2014-08-12 10:21:50 +00:00
|
|
|
}else if(ext == "qml"){
|
2014-08-13 22:18:37 +00:00
|
|
|
eth.openQml(path)
|
2014-08-12 10:21:50 +00:00
|
|
|
}
|
|
|
|
}
|
2014-05-29 10:24:56 +00:00
|
|
|
|
2014-08-12 09:02:33 +00:00
|
|
|
function setWalletValue(value) {
|
|
|
|
walletValueLabel.text = value
|
2014-05-29 10:24:56 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
function loadPlugin(name) {
|
|
|
|
console.log("Loading plugin" + name)
|
|
|
|
mainView.addPlugin(name)
|
|
|
|
}
|
|
|
|
|
|
|
|
function setPeers(text) {
|
|
|
|
peerLabel.text = text
|
|
|
|
}
|
2014-06-02 13:16:37 +00:00
|
|
|
|
|
|
|
function addPeer(peer) {
|
|
|
|
// We could just append the whole peer object but it cries if you try to alter them
|
2014-06-03 08:42:36 +00:00
|
|
|
peerModel.append({ip: peer.ip, port: peer.port, lastResponse:timeAgo(peer.lastSend), latency: peer.latency, version: peer.version})
|
2014-06-02 13:16:37 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
function resetPeers(){
|
|
|
|
peerModel.clear()
|
|
|
|
}
|
|
|
|
|
|
|
|
function timeAgo(unixTs){
|
|
|
|
var lapsed = (Date.now() - new Date(unixTs*1000)) / 1000
|
|
|
|
return (lapsed + " seconds ago")
|
|
|
|
}
|
2014-08-12 09:02:33 +00:00
|
|
|
|
2014-05-29 10:24:56 +00:00
|
|
|
function convertToPretty(unixTs){
|
|
|
|
var a = new Date(unixTs*1000);
|
|
|
|
var months = ['Jan','Feb','Mar','Apr','May','Jun','Jul','Aug','Sep','Oct','Nov','Dec'];
|
|
|
|
var year = a.getFullYear();
|
|
|
|
var month = months[a.getMonth()];
|
|
|
|
var date = a.getDate();
|
|
|
|
var hour = a.getHours();
|
|
|
|
var min = a.getMinutes();
|
|
|
|
var sec = a.getSeconds();
|
|
|
|
var time = date+' '+month+' '+year+' '+hour+':'+min+':'+sec ;
|
|
|
|
return time;
|
|
|
|
}
|
2014-08-12 09:02:33 +00:00
|
|
|
|
2014-08-12 10:21:50 +00:00
|
|
|
/**********************
|
|
|
|
* Windows
|
|
|
|
*********************/
|
2014-06-02 13:16:37 +00:00
|
|
|
Window {
|
|
|
|
id: peerWindow
|
2014-08-10 13:57:42 +00:00
|
|
|
//flags: Qt.CustomizeWindowHint | Qt.Tool | Qt.WindowCloseButtonHint
|
2014-06-02 13:16:37 +00:00
|
|
|
height: 200
|
2014-06-03 08:42:36 +00:00
|
|
|
width: 700
|
2014-06-02 13:16:37 +00:00
|
|
|
Rectangle {
|
|
|
|
anchors.fill: parent
|
|
|
|
property var peerModel: ListModel {
|
|
|
|
id: peerModel
|
|
|
|
}
|
|
|
|
TableView {
|
|
|
|
anchors.fill: parent
|
|
|
|
id: peerTable
|
|
|
|
model: peerModel
|
2014-06-03 08:42:36 +00:00
|
|
|
TableViewColumn{width: 100; role: "ip" ; title: "IP" }
|
2014-06-02 13:16:37 +00:00
|
|
|
TableViewColumn{width: 60; role: "port" ; title: "Port" }
|
2014-06-03 08:42:36 +00:00
|
|
|
TableViewColumn{width: 140; role: "lastResponse"; title: "Last event" }
|
|
|
|
TableViewColumn{width: 100; role: "latency"; title: "Latency" }
|
|
|
|
TableViewColumn{width: 260; role: "version" ; title: "Version" }
|
2014-06-02 13:16:37 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2014-08-12 09:02:33 +00:00
|
|
|
Window {
|
|
|
|
id: aboutWin
|
|
|
|
visible: false
|
|
|
|
title: "About"
|
|
|
|
minimumWidth: 350
|
|
|
|
maximumWidth: 350
|
|
|
|
maximumHeight: 200
|
|
|
|
minimumHeight: 200
|
2014-05-29 10:24:56 +00:00
|
|
|
|
2014-08-12 09:02:33 +00:00
|
|
|
Image {
|
|
|
|
id: aboutIcon
|
|
|
|
height: 150
|
|
|
|
width: 150
|
|
|
|
fillMode: Image.PreserveAspectFit
|
|
|
|
smooth: true
|
|
|
|
source: "../facet.png"
|
|
|
|
x: 10
|
|
|
|
y: 10
|
|
|
|
}
|
2014-05-29 10:24:56 +00:00
|
|
|
|
2014-08-12 09:02:33 +00:00
|
|
|
Text {
|
|
|
|
anchors.left: aboutIcon.right
|
|
|
|
anchors.leftMargin: 10
|
|
|
|
font.pointSize: 12
|
|
|
|
text: "<h2>Ethereal - Adrastea</h2><br><h3>Development</h3>Jeffrey Wilcke<br>Maran Hidskes<br>Viktor Trón<br>"
|
|
|
|
}
|
|
|
|
}
|
2014-05-29 10:24:56 +00:00
|
|
|
|
2014-08-12 09:02:33 +00:00
|
|
|
Window {
|
|
|
|
id: txImportDialog
|
|
|
|
minimumWidth: 270
|
|
|
|
maximumWidth: 270
|
|
|
|
maximumHeight: 50
|
|
|
|
minimumHeight: 50
|
|
|
|
TextField {
|
|
|
|
id: txImportField
|
|
|
|
width: 170
|
|
|
|
anchors.verticalCenter: parent.verticalCenter
|
|
|
|
anchors.left: parent.left
|
|
|
|
anchors.leftMargin: 10
|
|
|
|
onAccepted: {
|
2014-05-29 10:24:56 +00:00
|
|
|
}
|
|
|
|
}
|
2014-08-12 09:02:33 +00:00
|
|
|
Button {
|
|
|
|
anchors.left: txImportField.right
|
|
|
|
anchors.verticalCenter: parent.verticalCenter
|
2014-05-29 10:24:56 +00:00
|
|
|
anchors.leftMargin: 5
|
2014-08-12 09:02:33 +00:00
|
|
|
text: "Import"
|
|
|
|
onClicked: {
|
2014-08-13 08:52:30 +00:00
|
|
|
eth.importTx(txImportField.text)
|
2014-08-12 09:02:33 +00:00
|
|
|
txImportField.visible = false
|
2014-05-29 10:24:56 +00:00
|
|
|
}
|
2014-08-12 09:02:33 +00:00
|
|
|
}
|
|
|
|
Component.onCompleted: {
|
|
|
|
addrField.focus = true
|
|
|
|
}
|
|
|
|
}
|
2014-05-29 10:24:56 +00:00
|
|
|
|
2014-08-12 09:02:33 +00:00
|
|
|
Window {
|
|
|
|
id: addPeerWin
|
|
|
|
visible: false
|
|
|
|
minimumWidth: 230
|
|
|
|
maximumWidth: 230
|
|
|
|
maximumHeight: 50
|
|
|
|
minimumHeight: 50
|
2014-05-29 10:24:56 +00:00
|
|
|
|
2014-08-12 09:02:33 +00:00
|
|
|
TextField {
|
|
|
|
id: addrField
|
|
|
|
anchors.verticalCenter: parent.verticalCenter
|
|
|
|
anchors.left: parent.left
|
|
|
|
anchors.leftMargin: 10
|
|
|
|
placeholderText: "address:port"
|
|
|
|
onAccepted: {
|
2014-08-13 08:52:30 +00:00
|
|
|
eth.connectToPeer(addrField.text)
|
2014-08-12 09:02:33 +00:00
|
|
|
addPeerWin.visible = false
|
2014-05-29 10:24:56 +00:00
|
|
|
}
|
2014-08-12 09:02:33 +00:00
|
|
|
}
|
|
|
|
Button {
|
|
|
|
anchors.left: addrField.right
|
|
|
|
anchors.verticalCenter: parent.verticalCenter
|
|
|
|
anchors.leftMargin: 5
|
|
|
|
text: "Add"
|
|
|
|
onClicked: {
|
2014-08-13 08:52:30 +00:00
|
|
|
eth.connectToPeer(addrField.text)
|
2014-08-12 09:02:33 +00:00
|
|
|
addPeerWin.visible = false
|
2014-05-29 10:24:56 +00:00
|
|
|
}
|
|
|
|
}
|
2014-08-12 09:02:33 +00:00
|
|
|
Component.onCompleted: {
|
|
|
|
addrField.focus = true
|
|
|
|
}
|
2014-05-29 10:24:56 +00:00
|
|
|
}
|
2014-02-21 11:37:40 +00:00
|
|
|
}
|