[Qt] Add a new chevron/arrow icon for the console prompt line
This commit is contained in:
parent
56c9e66a6d
commit
43abb02aa2
5 changed files with 42 additions and 4 deletions
|
@ -21,6 +21,7 @@ License: GPL-3+
|
||||||
|
|
||||||
Files: src/qt/res/icons/add.png
|
Files: src/qt/res/icons/add.png
|
||||||
src/qt/res/icons/address-book.png
|
src/qt/res/icons/address-book.png
|
||||||
|
src/qt/res/icons/chevron.png
|
||||||
src/qt/res/icons/configure.png
|
src/qt/res/icons/configure.png
|
||||||
src/qt/res/icons/debugwindow.png
|
src/qt/res/icons/debugwindow.png
|
||||||
src/qt/res/icons/edit.png
|
src/qt/res/icons/edit.png
|
||||||
|
@ -56,6 +57,8 @@ Comment: Inspired by Stephan Hutchings Typicons
|
||||||
|
|
||||||
Files: src/qt/res/icons/tx_mined.png
|
Files: src/qt/res/icons/tx_mined.png
|
||||||
src/qt/res/src/mine.svg
|
src/qt/res/src/mine.svg
|
||||||
|
src/qt/res/icons/fontbigger.png
|
||||||
|
src/qt/res/icons/fontsmaller.png
|
||||||
Copyright: Jonas Schnelli
|
Copyright: Jonas Schnelli
|
||||||
License: Expat
|
License: Expat
|
||||||
Comment:
|
Comment:
|
||||||
|
|
|
@ -225,6 +225,7 @@ RES_ICONS = \
|
||||||
qt/res/icons/about_qt.png \
|
qt/res/icons/about_qt.png \
|
||||||
qt/res/icons/bitcoin.ico \
|
qt/res/icons/bitcoin.ico \
|
||||||
qt/res/icons/bitcoin.png \
|
qt/res/icons/bitcoin.png \
|
||||||
|
qt/res/icons/chevron.png \
|
||||||
qt/res/icons/clock1.png \
|
qt/res/icons/clock1.png \
|
||||||
qt/res/icons/clock2.png \
|
qt/res/icons/clock2.png \
|
||||||
qt/res/icons/clock3.png \
|
qt/res/icons/clock3.png \
|
||||||
|
|
|
@ -48,6 +48,7 @@
|
||||||
<file alias="warning">res/icons/warning.png</file>
|
<file alias="warning">res/icons/warning.png</file>
|
||||||
<file alias="fontbigger">res/icons/fontbigger.png</file>
|
<file alias="fontbigger">res/icons/fontbigger.png</file>
|
||||||
<file alias="fontsmaller">res/icons/fontsmaller.png</file>
|
<file alias="fontsmaller">res/icons/fontsmaller.png</file>
|
||||||
|
<file alias="prompticon">res/icons/chevron.png</file>
|
||||||
</qresource>
|
</qresource>
|
||||||
<qresource prefix="/movies">
|
<qresource prefix="/movies">
|
||||||
<file alias="spinner-000">res/movies/spinner-000.png</file>
|
<file alias="spinner-000">res/movies/spinner-000.png</file>
|
||||||
|
|
|
@ -479,12 +479,12 @@
|
||||||
<height>24</height>
|
<height>24</height>
|
||||||
</size>
|
</size>
|
||||||
</property>
|
</property>
|
||||||
<property name="toolTip">
|
|
||||||
<string>Decrease font size</string>
|
|
||||||
</property>
|
|
||||||
<property name="text">
|
<property name="text">
|
||||||
<string/>
|
<string/>
|
||||||
</property>
|
</property>
|
||||||
|
<property name="toolTip">
|
||||||
|
<string>Decrease font size</string>
|
||||||
|
</property>
|
||||||
<property name="icon">
|
<property name="icon">
|
||||||
<iconset resource="../bitcoin.qrc">
|
<iconset resource="../bitcoin.qrc">
|
||||||
<normaloff>:/icons/fontsmaller</normaloff>:/icons/fontsmaller</iconset>
|
<normaloff>:/icons/fontsmaller</normaloff>:/icons/fontsmaller</iconset>
|
||||||
|
@ -593,10 +593,43 @@
|
||||||
<property name="spacing">
|
<property name="spacing">
|
||||||
<number>3</number>
|
<number>3</number>
|
||||||
</property>
|
</property>
|
||||||
|
<item>
|
||||||
|
<widget class="QPushButton" name="promptIcon">
|
||||||
|
<property name="enabled">
|
||||||
|
<bool>false</bool>
|
||||||
|
</property>
|
||||||
|
<property name="maximumSize">
|
||||||
|
<size>
|
||||||
|
<width>16</width>
|
||||||
|
<height>24</height>
|
||||||
|
</size>
|
||||||
|
</property>
|
||||||
|
<property name="text">
|
||||||
|
<string/>
|
||||||
|
</property>
|
||||||
|
<property name="icon">
|
||||||
|
<iconset resource="../bitcoin.qrc">
|
||||||
|
<normaloff>:/icons/prompticon</normaloff>
|
||||||
|
<disabledoff>:/icons/prompticon</disabledoff>:/icons/prompticon</iconset>
|
||||||
|
</property>
|
||||||
|
<property name="iconSize">
|
||||||
|
<size>
|
||||||
|
<width>14</width>
|
||||||
|
<height>14</height>
|
||||||
|
</size>
|
||||||
|
</property>
|
||||||
|
<property name="autoDefault">
|
||||||
|
<bool>false</bool>
|
||||||
|
</property>
|
||||||
|
<property name="flat">
|
||||||
|
<bool>true</bool>
|
||||||
|
</property>
|
||||||
|
</widget>
|
||||||
|
</item>
|
||||||
<item>
|
<item>
|
||||||
<widget class="QLineEdit" name="lineEdit">
|
<widget class="QLineEdit" name="lineEdit">
|
||||||
<property name="placeholderText">
|
<property name="placeholderText">
|
||||||
<string>></string>
|
<string/>
|
||||||
</property>
|
</property>
|
||||||
</widget>
|
</widget>
|
||||||
</item>
|
</item>
|
||||||
|
|
BIN
src/qt/res/icons/chevron.png
Normal file
BIN
src/qt/res/icons/chevron.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 1.9 KiB |
Loading…
Reference in a new issue