diff options
author | obscuren <geffobscura@gmail.com> | 2014-05-27 22:09:04 +0800 |
---|---|---|
committer | obscuren <geffobscura@gmail.com> | 2014-05-27 22:09:04 +0800 |
commit | a0f73c2703aacab189c5cf26a5c95e156039eb9e (patch) | |
tree | 2a779dd975ad288b09399da608263e059809908a /ethereal/assets | |
parent | 2be98230105ef402d26e8726cec2240770a9837f (diff) | |
download | go-tangerine-a0f73c2703aacab189c5cf26a5c95e156039eb9e.tar go-tangerine-a0f73c2703aacab189c5cf26a5c95e156039eb9e.tar.gz go-tangerine-a0f73c2703aacab189c5cf26a5c95e156039eb9e.tar.bz2 go-tangerine-a0f73c2703aacab189c5cf26a5c95e156039eb9e.tar.lz go-tangerine-a0f73c2703aacab189c5cf26a5c95e156039eb9e.tar.xz go-tangerine-a0f73c2703aacab189c5cf26a5c95e156039eb9e.tar.zst go-tangerine-a0f73c2703aacab189c5cf26a5c95e156039eb9e.zip |
Minor fixes and improvements to the ui
Diffstat (limited to 'ethereal/assets')
-rw-r--r-- | ethereal/assets/debugger/debugger.qml | 12 | ||||
-rw-r--r-- | ethereal/assets/heart.png | bin | 0 -> 4277 bytes | |||
-rw-r--r-- | ethereal/assets/qml/wallet.qml | 21 |
3 files changed, 10 insertions, 23 deletions
diff --git a/ethereal/assets/debugger/debugger.qml b/ethereal/assets/debugger/debugger.qml index bf69b4254..9ea131d7d 100644 --- a/ethereal/assets/debugger/debugger.qml +++ b/ethereal/assets/debugger/debugger.qml @@ -8,7 +8,7 @@ import Ethereum 1.0 ApplicationWindow { visible: false - title: "Debugger" + title: "IceCream" minimumWidth: 1280 minimumHeight: 900 width: 1290 @@ -58,9 +58,10 @@ ApplicationWindow { anchors.bottom: parent.bottom Label { - text: "Data" + text: "Arbitrary data" } TextArea { + id: rawDataField anchors.left: parent.left anchors.right: parent.right height: 150 @@ -105,7 +106,7 @@ ApplicationWindow { SplitView { orientation: Qt.Horizontal - height: 300 + height: 250 TableView { id: stackTableView @@ -149,16 +150,15 @@ ApplicationWindow { } } } - statusBar: StatusBar { + toolBar: ToolBar { RowLayout { spacing: 5 - anchors.fill: parent Button { property var enabled: true id: debugStart onClicked: { - dbg.debug(txValue.text, txGas.text, txGasPrice.text, codeEditor.text) + dbg.debug(txValue.text, txGas.text, txGasPrice.text, codeEditor.text, rawDataField.text) } text: "Debug" } diff --git a/ethereal/assets/heart.png b/ethereal/assets/heart.png Binary files differnew file mode 100644 index 000000000..3c874ab7f --- /dev/null +++ b/ethereal/assets/heart.png diff --git a/ethereal/assets/qml/wallet.qml b/ethereal/assets/qml/wallet.qml index 3063bb10d..5e0904a20 100644 --- a/ethereal/assets/qml/wallet.qml +++ b/ethereal/assets/qml/wallet.qml @@ -123,7 +123,7 @@ ApplicationWindow { } Image { - source: ui.assetPath("net.png") + source: ui.assetPath("heart.png") anchors.horizontalCenter: parent.horizontalCenter MouseArea { anchors.fill: parent @@ -284,27 +284,14 @@ ApplicationWindow { title: "Open QML Application" onAccepted: { //ui.open(openAppDialog.fileUrl.toString()) - //ui.openHtml(Qt.resolvedUrl(ui.assetPath("test.html"))) - ui.openHtml(openAppDialog.fileUrl.toString()) - + //ui.openHtml(Qt.resolvedUrl(ui.assetPath("test.html"))) + ui.openHtml(openAppDialog.fileUrl.toString()) } } statusBar: StatusBar { RowLayout { anchors.fill: parent - /* - Button { - property var enabled: true - id: connectButton - onClicked: { - if(this.enabled) { - ui.connect(this) - } - } - text: "Connect" - } - */ Button { property var enabled: true @@ -369,8 +356,8 @@ ApplicationWindow { Text { text: '<b>Hash:</b> ' + hash; color: "#F2F2F2"} Text { text: '<b>Block found at:</b> ' + prettyTime; color: "#F2F2F2"} } + } } - } ListView { model: singleBlock delegate: blockDetailsDelegate |