mirror of
https://github.com/qbittorrent/qBittorrent.git
synced 2024-11-27 03:39:39 +03:00
- Use RSS (un)subscribe icons
This commit is contained in:
parent
1918969e28
commit
faeee49517
8 changed files with 23 additions and 19 deletions
Binary file not shown.
Before Width: | Height: | Size: 1.6 KiB After Width: | Height: | Size: 948 B |
BIN
src/Icons/subscribe.png
Normal file
BIN
src/Icons/subscribe.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 1.5 KiB |
BIN
src/Icons/subscribe16.png
Normal file
BIN
src/Icons/subscribe16.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 739 B |
BIN
src/Icons/unsubscribe.png
Normal file
BIN
src/Icons/unsubscribe.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 1.7 KiB |
BIN
src/Icons/unsubscribe16.png
Normal file
BIN
src/Icons/unsubscribe16.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 765 B |
|
@ -37,6 +37,10 @@
|
|||
<file>Icons/splash.png</file>
|
||||
<file>Icons/rss32.png</file>
|
||||
<file>Icons/rss16.png</file>
|
||||
<file>Icons/unsubscribe.png</file>
|
||||
<file>Icons/subscribe.png</file>
|
||||
<file>Icons/unsubscribe16.png</file>
|
||||
<file>Icons/subscribe16.png</file>
|
||||
<file>Icons/flags/portugal.png</file>
|
||||
<file>Icons/flags/france.png</file>
|
||||
<file>Icons/flags/ukraine.png</file>
|
||||
|
|
30
src/rss.ui
30
src/rss.ui
|
@ -83,14 +83,14 @@
|
|||
<widget class="QPushButton" name="delStream_button" >
|
||||
<property name="minimumSize" >
|
||||
<size>
|
||||
<width>22</width>
|
||||
<height>22</height>
|
||||
<width>55</width>
|
||||
<height>32</height>
|
||||
</size>
|
||||
</property>
|
||||
<property name="maximumSize" >
|
||||
<property name="iconSize" >
|
||||
<size>
|
||||
<width>22</width>
|
||||
<height>22</height>
|
||||
<width>32</width>
|
||||
<height>32</height>
|
||||
</size>
|
||||
</property>
|
||||
<property name="toolTip" >
|
||||
|
@ -105,14 +105,14 @@
|
|||
<widget class="QPushButton" name="refreshAll_button" >
|
||||
<property name="minimumSize" >
|
||||
<size>
|
||||
<width>22</width>
|
||||
<height>22</height>
|
||||
<width>32</width>
|
||||
<height>32</height>
|
||||
</size>
|
||||
</property>
|
||||
<property name="maximumSize" >
|
||||
<property name="iconSize" >
|
||||
<size>
|
||||
<width>22</width>
|
||||
<height>22</height>
|
||||
<width>32</width>
|
||||
<height>32</height>
|
||||
</size>
|
||||
</property>
|
||||
<property name="toolTip" >
|
||||
|
@ -127,14 +127,14 @@
|
|||
<widget class="QPushButton" name="addStream_button" >
|
||||
<property name="minimumSize" >
|
||||
<size>
|
||||
<width>22</width>
|
||||
<height>22</height>
|
||||
<width>32</width>
|
||||
<height>32</height>
|
||||
</size>
|
||||
</property>
|
||||
<property name="maximumSize" >
|
||||
<property name="iconSize" >
|
||||
<size>
|
||||
<width>22</width>
|
||||
<height>22</height>
|
||||
<width>55</width>
|
||||
<height>32</height>
|
||||
</size>
|
||||
</property>
|
||||
<property name="toolTip" >
|
||||
|
|
|
@ -250,14 +250,14 @@
|
|||
RSSImp::RSSImp() : QWidget(){
|
||||
setupUi(this);
|
||||
// icons of bottom buttons
|
||||
addStream_button->setIcon(QIcon(QString::fromUtf8(":/Icons/skin/add.png")));
|
||||
delStream_button->setIcon(QIcon(QString::fromUtf8(":/Icons/skin/remove.png")));
|
||||
addStream_button->setIcon(QIcon(QString::fromUtf8(":/Icons/subscribe.png")));
|
||||
delStream_button->setIcon(QIcon(QString::fromUtf8(":/Icons/unsubscribe.png")));
|
||||
refreshAll_button->setIcon(QIcon(QString::fromUtf8(":/Icons/refresh.png")));
|
||||
// icons of right-click menu
|
||||
actionDelete->setIcon(QIcon(QString::fromUtf8(":/Icons/skin/remove.png")));
|
||||
actionDelete->setIcon(QIcon(QString::fromUtf8(":/Icons/unsubscribe16.png")));
|
||||
actionRename->setIcon(QIcon(QString::fromUtf8(":/Icons/log.png")));
|
||||
actionRefresh->setIcon(QIcon(QString::fromUtf8(":/Icons/refresh.png")));
|
||||
actionCreate->setIcon(QIcon(QString::fromUtf8(":/Icons/skin/add.png")));
|
||||
actionCreate->setIcon(QIcon(QString::fromUtf8(":/Icons/subscribe16.png")));
|
||||
actionRefreshAll->setIcon(QIcon(QString::fromUtf8(":/Icons/refresh.png")));
|
||||
|
||||
// Hide second column (url)
|
||||
|
|
Loading…
Reference in a new issue