plugeth/ethereal/assets/qml/wallet.qml

502 lines
9.4 KiB
QML
Raw Normal View History

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
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"
// Takes care of loading all default plugins
Component.onCompleted: {
var historyView = addPlugin("./views/history.qml")
var newTxView = addPlugin("./views/transaction.qml")
var chainView = addPlugin("./views/chain.qml")
var infoView = addPlugin("./views/info.qml")
var pendingTxView = addPlugin("./views/pending_tx.qml")
// Call the ready handler
gui.done()
}
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
}
return mainSplit.addComponent(component, {objectName: objectName})
}
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: {
generalFileDialog.callback = importApp;
generalFileDialog.open()
}
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"
onTriggered: ui.openBrowser()
}
MenuItem {
text: "Add plugin"
onTriggered: {
2014-08-12 10:03:06 +00:00
generalFileDialog.callback = function(path) {
addPlugin(path, {canClose: true})
}
generalFileDialog.open()
}
}
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: {
generalFileDialog.callback = function(path) {
ui.importKey(path)
}
generalFileDialog.open()
}
2014-07-25 08:41:57 +00:00
}
MenuItem {
text: "Export keys"
shortcut: "Ctrl+e"
2014-08-12 10:03:06 +00:00
onTriggered: {
generalFileDialog.callback = function(path) {
}
generalFileDialog.open()
}
2014-07-25 08:41:57 +00:00
}
2014-05-29 10:24:56 +00:00
}
Menu {
title: "Developer"
2014-05-29 10:24:56 +00:00
MenuItem {
text: "Debugger"
shortcut: "Ctrl+d"
onTriggered: ui.startDebugger()
}
2014-08-10 13:57:42 +00:00
MenuItem {
text: "Import Tx"
onTriggered: {
txImportDialog.visible = true
}
}
MenuItem {
text: "Run JS file"
onTriggered: {
generalFileDialog.callback = function(path) {
lib.evalJavascriptFile(path)
}
generalFileDialog.open()
}
}
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: {
gui.toggleMining()
2014-08-12 10:03:06 +00:00
}
}
Button {
id: importAppButton
text: "Browser"
onClicked: {
ui.openBrowser()
}
}
RowLayout {
Label {
anchors.left: importAppButton.right
anchors.leftMargin: 5
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 {
property var views: [];
id: mainSplit
2014-05-29 10:24:56 +00:00
anchors.fill: parent
resizing: false
function setView(view) {
for(var i = 0; i < views.length; i++) {
views[i].visible = false
}
view.visible = true
}
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;
}
menu.createMenuItem(view.iconFile, view);
mainSplit.views.push(view);
return view
}
2014-08-12 10:03:06 +00:00
/*********************
* Main menu.
********************/
2014-05-29 10:24:56 +00:00
Rectangle {
id: menu
Layout.minimumWidth: 80
Layout.maximumWidth: 80
anchors.top: parent.top
color: "#252525"
Component {
id: menuItemTemplate
2014-05-29 10:24:56 +00:00
Image {
property var view;
2014-05-29 10:24:56 +00:00
anchors.horizontalCenter: parent.horizontalCenter
MouseArea {
anchors.fill: parent
onClicked: {
mainSplit.setView(view)
2014-05-29 10:24:56 +00:00
}
}
}
}
2014-05-29 10:24:56 +00:00
2014-08-10 13:57:42 +00:00
function createMenuItem(icon, view) {
var comp = menuItemTemplate.createObject(menuColumn)
comp.view = view
comp.source = icon
}
ColumnLayout {
id: menuColumn
y: 50
anchors.left: parent.left
anchors.right: parent.right
2014-08-12 10:03:06 +00:00
spacing: 10
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-05-29 10:24:56 +00:00
anchors.right: parent.right
anchors.left: menu.right
anchors.bottom: parent.bottom
anchors.top: parent.top
function createView(component) {
var view = component.createObject(mainView)
return view;
2014-05-29 10:24:56 +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
function importApp(path) {
var ext = path.split('.').pop()
if(ext == "html" || ext == "htm") {
ui.openHtml(path)
}else if(ext == "qml"){
ui.openQml(path)
2014-05-29 10:24:56 +00:00
}
}
2014-08-12 10:03:06 +00:00
/******************
* Dialogs
*****************/
FileDialog {
id: generalFileDialog
property var callback;
onAccepted: {
var path = this.fileUrl.toString()
callback.call(this, path)
}
}
2014-07-25 08:41:57 +00:00
2014-05-29 10:24:56 +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
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-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-06-02 13:16:37 +00:00
// ******************************************
// Windows
// ******************************************
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
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
TableViewColumn{width: 100; role: "ip" ; title: "IP" }
2014-06-02 13:16:37 +00:00
TableViewColumn{width: 60; role: "port" ; title: "Port" }
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
}
}
}
Window {
id: aboutWin
visible: false
title: "About"
minimumWidth: 350
maximumWidth: 350
maximumHeight: 200
minimumHeight: 200
2014-05-29 10:24:56 +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
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
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
}
}
Button {
anchors.left: txImportField.right
anchors.verticalCenter: parent.verticalCenter
2014-05-29 10:24:56 +00:00
anchors.leftMargin: 5
text: "Import"
onClicked: {
lib.importTx(txImportField.text)
txImportField.visible = false
2014-05-29 10:24:56 +00:00
}
}
Component.onCompleted: {
addrField.focus = true
}
}
2014-05-29 10:24:56 +00:00
Window {
id: addPeerWin
visible: false
minimumWidth: 230
maximumWidth: 230
maximumHeight: 50
minimumHeight: 50
2014-05-29 10:24:56 +00:00
TextField {
id: addrField
anchors.verticalCenter: parent.verticalCenter
anchors.left: parent.left
anchors.leftMargin: 10
placeholderText: "address:port"
onAccepted: {
ui.connectToPeer(addrField.text)
addPeerWin.visible = false
2014-05-29 10:24:56 +00:00
}
}
Button {
anchors.left: addrField.right
anchors.verticalCenter: parent.verticalCenter
anchors.leftMargin: 5
text: "Add"
onClicked: {
ui.connectToPeer(addrField.text)
addPeerWin.visible = false
2014-05-29 10:24:56 +00:00
}
}
Component.onCompleted: {
addrField.focus = true
}
2014-05-29 10:24:56 +00:00
}
2014-02-21 11:37:40 +00:00
}