Improve look/usablity of send coins dialog
This commit is contained in:
parent
38deedc1b5
commit
a404b1512a
@ -26,7 +26,8 @@ Site: https://forum.bitcoin.org/index.php?topic=15276.0
|
|||||||
License: You are free to do with these icons as you wish, including selling,
|
License: You are free to do with these icons as you wish, including selling,
|
||||||
copying, modifying etc.
|
copying, modifying etc.
|
||||||
|
|
||||||
Icon: src/qt/res/icons/configure.png, src/qt/res/icons/quit.png
|
Icon: src/qt/res/icons/configure.png, src/qt/res/icons/quit.png,
|
||||||
|
src/qt/res/icons/editcopy.png, src/qt/res/icons/editpaste.png
|
||||||
Designer: http://www.everaldo.com
|
Designer: http://www.everaldo.com
|
||||||
Icon Pack: Crystal SVG
|
Icon Pack: Crystal SVG
|
||||||
License: LGPL
|
License: LGPL
|
||||||
|
@ -19,6 +19,8 @@
|
|||||||
<file alias="transaction_5">res/icons/clock5.png</file>
|
<file alias="transaction_5">res/icons/clock5.png</file>
|
||||||
<file alias="options">res/icons/configure.png</file>
|
<file alias="options">res/icons/configure.png</file>
|
||||||
<file alias="receiving_addresses">res/icons/receive.png</file>
|
<file alias="receiving_addresses">res/icons/receive.png</file>
|
||||||
|
<file alias="editpaste">res/icons/editpaste.png</file>
|
||||||
|
<file alias="editcopy">res/icons/editcopy.png</file>
|
||||||
</qresource>
|
</qresource>
|
||||||
<qresource prefix="/images">
|
<qresource prefix="/images">
|
||||||
<file alias="about">res/images/about.png</file>
|
<file alias="about">res/images/about.png</file>
|
||||||
|
@ -93,7 +93,7 @@ BitcoinGUI::BitcoinGUI(QWidget *parent):
|
|||||||
hbox_balance->addSpacing(5);/* Add some spacing between the label and the text */
|
hbox_balance->addSpacing(5);/* Add some spacing between the label and the text */
|
||||||
|
|
||||||
labelBalance = new QLabel();
|
labelBalance = new QLabel();
|
||||||
labelBalance->setFont(QFont("Monospace"));
|
labelBalance->setFont(QFont("Monospace", -1, QFont::Bold));
|
||||||
labelBalance->setToolTip(tr("Your current balance"));
|
labelBalance->setToolTip(tr("Your current balance"));
|
||||||
hbox_balance->addWidget(labelBalance);
|
hbox_balance->addWidget(labelBalance);
|
||||||
hbox_balance->addStretch(1);
|
hbox_balance->addStretch(1);
|
||||||
|
@ -7,7 +7,7 @@
|
|||||||
<x>0</x>
|
<x>0</x>
|
||||||
<y>0</y>
|
<y>0</y>
|
||||||
<width>736</width>
|
<width>736</width>
|
||||||
<height>149</height>
|
<height>193</height>
|
||||||
</rect>
|
</rect>
|
||||||
</property>
|
</property>
|
||||||
<property name="windowTitle">
|
<property name="windowTitle">
|
||||||
@ -16,10 +16,70 @@
|
|||||||
<layout class="QVBoxLayout" name="verticalLayout">
|
<layout class="QVBoxLayout" name="verticalLayout">
|
||||||
<item>
|
<item>
|
||||||
<layout class="QGridLayout" name="gridLayout">
|
<layout class="QGridLayout" name="gridLayout">
|
||||||
|
<item row="3" column="1">
|
||||||
|
<layout class="QHBoxLayout" name="horizontalLayout_3">
|
||||||
|
<property name="spacing">
|
||||||
|
<number>0</number>
|
||||||
|
</property>
|
||||||
|
<item>
|
||||||
|
<widget class="QLineEdit" name="payTo">
|
||||||
|
<property name="toolTip">
|
||||||
|
<string>The address to send the payment to (e.g. 1NS17iag9jJgTHD1VXjvLCEnZuQ3rJDE9L)</string>
|
||||||
|
</property>
|
||||||
|
<property name="maxLength">
|
||||||
|
<number>34</number>
|
||||||
|
</property>
|
||||||
|
</widget>
|
||||||
|
</item>
|
||||||
|
<item>
|
||||||
|
<widget class="QPushButton" name="addressBookButton">
|
||||||
|
<property name="toolTip">
|
||||||
|
<string>Look up adress in address book</string>
|
||||||
|
</property>
|
||||||
|
<property name="text">
|
||||||
|
<string/>
|
||||||
|
</property>
|
||||||
|
<property name="icon">
|
||||||
|
<iconset resource="../bitcoin.qrc">
|
||||||
|
<normaloff>:/icons/address-book</normaloff>:/icons/address-book</iconset>
|
||||||
|
</property>
|
||||||
|
<property name="shortcut">
|
||||||
|
<string>Alt+A</string>
|
||||||
|
</property>
|
||||||
|
<property name="autoDefault">
|
||||||
|
<bool>false</bool>
|
||||||
|
</property>
|
||||||
|
<property name="flat">
|
||||||
|
<bool>false</bool>
|
||||||
|
</property>
|
||||||
|
</widget>
|
||||||
|
</item>
|
||||||
|
<item>
|
||||||
|
<widget class="QPushButton" name="pasteButton">
|
||||||
|
<property name="toolTip">
|
||||||
|
<string>Paste address from system clipboard</string>
|
||||||
|
</property>
|
||||||
|
<property name="text">
|
||||||
|
<string/>
|
||||||
|
</property>
|
||||||
|
<property name="icon">
|
||||||
|
<iconset resource="../bitcoin.qrc">
|
||||||
|
<normaloff>:/icons/editpaste</normaloff>:/icons/editpaste</iconset>
|
||||||
|
</property>
|
||||||
|
<property name="shortcut">
|
||||||
|
<string>Alt+P</string>
|
||||||
|
</property>
|
||||||
|
<property name="autoDefault">
|
||||||
|
<bool>false</bool>
|
||||||
|
</property>
|
||||||
|
</widget>
|
||||||
|
</item>
|
||||||
|
</layout>
|
||||||
|
</item>
|
||||||
<item row="5" column="0">
|
<item row="5" column="0">
|
||||||
<widget class="QLabel" name="label">
|
<widget class="QLabel" name="label">
|
||||||
<property name="text">
|
<property name="text">
|
||||||
<string>&Amount:</string>
|
<string>A&mount:</string>
|
||||||
</property>
|
</property>
|
||||||
<property name="alignment">
|
<property name="alignment">
|
||||||
<set>Qt::AlignRight|Qt::AlignTrailing|Qt::AlignVCenter</set>
|
<set>Qt::AlignRight|Qt::AlignTrailing|Qt::AlignVCenter</set>
|
||||||
@ -42,42 +102,6 @@
|
|||||||
</property>
|
</property>
|
||||||
</widget>
|
</widget>
|
||||||
</item>
|
</item>
|
||||||
<item row="3" column="1">
|
|
||||||
<widget class="QLineEdit" name="payTo">
|
|
||||||
<property name="toolTip">
|
|
||||||
<string>The address to send the payment to (e.g. 1NS17iag9jJgTHD1VXjvLCEnZuQ3rJDE9L)</string>
|
|
||||||
</property>
|
|
||||||
<property name="maxLength">
|
|
||||||
<number>34</number>
|
|
||||||
</property>
|
|
||||||
</widget>
|
|
||||||
</item>
|
|
||||||
<item row="3" column="2">
|
|
||||||
<widget class="QPushButton" name="pasteButton">
|
|
||||||
<property name="toolTip">
|
|
||||||
<string>Paste address from system clipboard</string>
|
|
||||||
</property>
|
|
||||||
<property name="text">
|
|
||||||
<string>&Paste</string>
|
|
||||||
</property>
|
|
||||||
<property name="autoDefault">
|
|
||||||
<bool>false</bool>
|
|
||||||
</property>
|
|
||||||
</widget>
|
|
||||||
</item>
|
|
||||||
<item row="3" column="3">
|
|
||||||
<widget class="QPushButton" name="addressBookButton">
|
|
||||||
<property name="toolTip">
|
|
||||||
<string>Look up adress in address book</string>
|
|
||||||
</property>
|
|
||||||
<property name="text">
|
|
||||||
<string>Address &Book...</string>
|
|
||||||
</property>
|
|
||||||
<property name="autoDefault">
|
|
||||||
<bool>false</bool>
|
|
||||||
</property>
|
|
||||||
</widget>
|
|
||||||
</item>
|
|
||||||
<item row="2" column="1">
|
<item row="2" column="1">
|
||||||
<widget class="QLabel" name="label_3">
|
<widget class="QLabel" name="label_3">
|
||||||
<property name="font">
|
<property name="font">
|
||||||
@ -91,7 +115,7 @@
|
|||||||
</widget>
|
</widget>
|
||||||
</item>
|
</item>
|
||||||
<item row="5" column="1">
|
<item row="5" column="1">
|
||||||
<widget class="BitcoinAmountField" name="payAmount" native="true"/>
|
<widget class="BitcoinAmountField" name="payAmount"/>
|
||||||
</item>
|
</item>
|
||||||
<item row="4" column="1">
|
<item row="4" column="1">
|
||||||
<layout class="QHBoxLayout" name="horizontalLayout_2">
|
<layout class="QHBoxLayout" name="horizontalLayout_2">
|
||||||
@ -101,7 +125,7 @@
|
|||||||
<string>Add specified destination address to address book</string>
|
<string>Add specified destination address to address book</string>
|
||||||
</property>
|
</property>
|
||||||
<property name="text">
|
<property name="text">
|
||||||
<string>Add to address book as</string>
|
<string>A&dd to address book as</string>
|
||||||
</property>
|
</property>
|
||||||
</widget>
|
</widget>
|
||||||
</item>
|
</item>
|
||||||
@ -187,7 +211,7 @@
|
|||||||
<customwidgets>
|
<customwidgets>
|
||||||
<customwidget>
|
<customwidget>
|
||||||
<class>BitcoinAmountField</class>
|
<class>BitcoinAmountField</class>
|
||||||
<extends>QWidget</extends>
|
<extends>QLineEdit</extends>
|
||||||
<header>bitcoinamountfield.h</header>
|
<header>bitcoinamountfield.h</header>
|
||||||
<container>1</container>
|
<container>1</container>
|
||||||
</customwidget>
|
</customwidget>
|
||||||
@ -197,8 +221,8 @@
|
|||||||
<tabstop>addToAddressBook</tabstop>
|
<tabstop>addToAddressBook</tabstop>
|
||||||
<tabstop>addAsLabel</tabstop>
|
<tabstop>addAsLabel</tabstop>
|
||||||
<tabstop>payAmount</tabstop>
|
<tabstop>payAmount</tabstop>
|
||||||
<tabstop>pasteButton</tabstop>
|
|
||||||
<tabstop>addressBookButton</tabstop>
|
<tabstop>addressBookButton</tabstop>
|
||||||
|
<tabstop>pasteButton</tabstop>
|
||||||
<tabstop>sendButton</tabstop>
|
<tabstop>sendButton</tabstop>
|
||||||
<tabstop>buttonBox</tabstop>
|
<tabstop>buttonBox</tabstop>
|
||||||
</tabstops>
|
</tabstops>
|
||||||
|
BIN
src/qt/res/icons/editcopy.png
Normal file
BIN
src/qt/res/icons/editcopy.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 879 B |
BIN
src/qt/res/icons/editpaste.png
Normal file
BIN
src/qt/res/icons/editpaste.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 1.4 KiB |
Loading…
Reference in New Issue
Block a user