diff options
author | Maran <maran.hidskes@gmail.com> | 2014-06-03 20:30:26 +0800 |
---|---|---|
committer | Maran <maran.hidskes@gmail.com> | 2014-06-03 20:30:26 +0800 |
commit | 3755616a2912f47a963d4ecc781bddd4229fe290 (patch) | |
tree | 8a822a5fed825053fcd42e53f6657452d8c78744 /ethereal/assets/qml/wallet.qml | |
parent | cc1d043423293eff97d01c8f4897b354112c8210 (diff) | |
download | go-tangerine-3755616a2912f47a963d4ecc781bddd4229fe290.tar go-tangerine-3755616a2912f47a963d4ecc781bddd4229fe290.tar.gz go-tangerine-3755616a2912f47a963d4ecc781bddd4229fe290.tar.bz2 go-tangerine-3755616a2912f47a963d4ecc781bddd4229fe290.tar.lz go-tangerine-3755616a2912f47a963d4ecc781bddd4229fe290.tar.xz go-tangerine-3755616a2912f47a963d4ecc781bddd4229fe290.tar.zst go-tangerine-3755616a2912f47a963d4ecc781bddd4229fe290.zip |
Added namereg register option to qml wallet
Diffstat (limited to 'ethereal/assets/qml/wallet.qml')
-rw-r--r-- | ethereal/assets/qml/wallet.qml | 27 |
1 files changed, 25 insertions, 2 deletions
diff --git a/ethereal/assets/qml/wallet.qml b/ethereal/assets/qml/wallet.qml index b626bf044..fece8e7d6 100644 --- a/ethereal/assets/qml/wallet.qml +++ b/ethereal/assets/qml/wallet.qml @@ -254,13 +254,12 @@ ApplicationWindow { } } - property var addressModel: ListModel { id: addressModel } TableView { id: addressView - width: parent.width + width: parent.width - 200 height: 200 anchors.bottom: logView.top TableViewColumn{ role: "name"; title: "name" } @@ -269,6 +268,30 @@ ApplicationWindow { model: addressModel } + Rectangle { + anchors.top: addressView.top + anchors.left: addressView.right + anchors.leftMargin: 20 + + TextField { + placeholderText: "Name to register" + id: nameToReg + width: 150 + } + + Button { + anchors.top: nameToReg.bottom + text: "Register" + MouseArea{ + anchors.fill: parent + onClicked: { + eth.registerName(nameToReg.text) + nameToReg.text = "" + } + } + } + } + property var logModel: ListModel { id: logModel |