Skip to content
This repository was archived by the owner on Jul 23, 2021. It is now read-only.

Commit a576bba

Browse files
authored
Merge pull request #14 from MERP-Solutions/master
Adapted Icons
2 parents 5e357fa + 335e6cf commit a576bba

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

43 files changed

+13
-9
lines changed

src/qt/bitcoin.qrc

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -54,6 +54,9 @@
5454
<file alias="bitcoin">res/icons/digitalnote.png</file>
5555
<file alias="toolbar_testnet">res/icons/digitalnote-16_testnet.png</file>
5656
<file alias="mnodes">res/icons/mnodes.png</file>
57+
<file alias="message">res/icons/message.png</file>
58+
<file alias="address-book-sidebar">res/icons/address-book-sidebar.png</file>
59+
<file alias="send-sidebar">res/icons/send-sidebar.png</file>
5760
</qresource>
5861
<qresource prefix="/icons/dark">
5962
<file alias="connect_0">res/icons/dark/connect0_16.png</file>
@@ -128,4 +131,5 @@
128131
<file alias="zh_CN">locale/bitcoin_zh_CN.qm</file>
129132
<file alias="zh_TW">locale/bitcoin_zh_TW.qm</file>
130133
</qresource>
134+
<qresource prefix="/"/>
131135
</RCC>

src/qt/bitcoingui.cpp

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -290,7 +290,7 @@ void DigitalNoteGUI::createActions()
290290
receiveCoinsAction->setShortcut(QKeySequence(Qt::ALT + Qt::Key_2));
291291
tabGroup->addAction(receiveCoinsAction);
292292

293-
sendCoinsAction = new QAction(QIcon(":/icons/send"), tr("&Send"), this);
293+
sendCoinsAction = new QAction(QIcon(":/icons/send-sidebar"), tr("&Send"), this);
294294
sendCoinsAction->setToolTip(tr("Send coins to a DigitalNote address"));
295295
sendCoinsAction->setCheckable(true);
296296
sendCoinsAction->setShortcut(QKeySequence(Qt::ALT + Qt::Key_3));
@@ -302,7 +302,7 @@ void DigitalNoteGUI::createActions()
302302
historyAction->setShortcut(QKeySequence(Qt::ALT + Qt::Key_4));
303303
tabGroup->addAction(historyAction);
304304

305-
addressBookAction = new QAction(QIcon(":/icons/address-book"), tr("&Addresses"), this);
305+
addressBookAction = new QAction(QIcon(":/icons/address-book-sidebar"), tr("&Addresses"), this);
306306
addressBookAction->setToolTip(tr("Edit the list of stored addresses and labels"));
307307
addressBookAction->setCheckable(true);
308308
addressBookAction->setShortcut(QKeySequence(Qt::ALT + Qt::Key_5));
@@ -313,7 +313,7 @@ void DigitalNoteGUI::createActions()
313313
masternodeManagerAction->setCheckable(true);
314314
tabGroup->addAction(masternodeManagerAction);
315315

316-
messageAction = new QAction(QIcon(":/icons/edit"), tr("&Messages"), this);
316+
messageAction = new QAction(QIcon(":/icons/message"), tr("&Messages"), this);
317317
messageAction->setToolTip(tr("View and Send Encrypted messages"));
318318
messageAction->setShortcut(QKeySequence(Qt::ALT + Qt::Key_7));
319319
messageAction->setCheckable(true);

src/qt/forms/optionsdialog.ui

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@
2626
<enum>QTabWidget::North</enum>
2727
</property>
2828
<property name="currentIndex">
29-
<number>0</number>
29+
<number>3</number>
3030
</property>
3131
<widget class="QWidget" name="tabMain">
3232
<attribute name="title">
@@ -465,6 +465,11 @@
465465
</layout>
466466
</widget>
467467
<customwidgets>
468+
<customwidget>
469+
<class>QValidatedLineEdit</class>
470+
<extends>QLineEdit</extends>
471+
<header>qvalidatedlineedit.h</header>
472+
</customwidget>
468473
<customwidget>
469474
<class>DigitalNoteAmountField</class>
470475
<extends>QSpinBox</extends>
@@ -476,11 +481,6 @@
476481
<extends>QComboBox</extends>
477482
<header>qvaluecombobox.h</header>
478483
</customwidget>
479-
<customwidget>
480-
<class>QValidatedLineEdit</class>
481-
<extends>QLineEdit</extends>
482-
<header>qvalidatedlineedit.h</header>
483-
</customwidget>
484484
</customwidgets>
485485
<resources/>
486486
<connections/>

src/qt/res/icons/add.png

-6.98 KB
6.53 KB

src/qt/res/icons/address-book.png

-4.33 KB

src/qt/res/icons/browse.png

-7.58 KB

src/qt/res/icons/clock1.png

-7.02 KB

src/qt/res/icons/clock2.png

-7.34 KB

src/qt/res/icons/clock3.png

-7.62 KB

0 commit comments

Comments
 (0)