mirror of
https://github.com/d47081/qBittorrent.git
synced 2025-01-11 15:27:54 +00:00
- Use RSS (un)subscribe icons
This commit is contained in:
parent
1918969e28
commit
faeee49517
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/splash.png</file>
|
||||||
<file>Icons/rss32.png</file>
|
<file>Icons/rss32.png</file>
|
||||||
<file>Icons/rss16.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/portugal.png</file>
|
||||||
<file>Icons/flags/france.png</file>
|
<file>Icons/flags/france.png</file>
|
||||||
<file>Icons/flags/ukraine.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" >
|
<widget class="QPushButton" name="delStream_button" >
|
||||||
<property name="minimumSize" >
|
<property name="minimumSize" >
|
||||||
<size>
|
<size>
|
||||||
<width>22</width>
|
<width>55</width>
|
||||||
<height>22</height>
|
<height>32</height>
|
||||||
</size>
|
</size>
|
||||||
</property>
|
</property>
|
||||||
<property name="maximumSize" >
|
<property name="iconSize" >
|
||||||
<size>
|
<size>
|
||||||
<width>22</width>
|
<width>32</width>
|
||||||
<height>22</height>
|
<height>32</height>
|
||||||
</size>
|
</size>
|
||||||
</property>
|
</property>
|
||||||
<property name="toolTip" >
|
<property name="toolTip" >
|
||||||
@ -105,14 +105,14 @@
|
|||||||
<widget class="QPushButton" name="refreshAll_button" >
|
<widget class="QPushButton" name="refreshAll_button" >
|
||||||
<property name="minimumSize" >
|
<property name="minimumSize" >
|
||||||
<size>
|
<size>
|
||||||
<width>22</width>
|
<width>32</width>
|
||||||
<height>22</height>
|
<height>32</height>
|
||||||
</size>
|
</size>
|
||||||
</property>
|
</property>
|
||||||
<property name="maximumSize" >
|
<property name="iconSize" >
|
||||||
<size>
|
<size>
|
||||||
<width>22</width>
|
<width>32</width>
|
||||||
<height>22</height>
|
<height>32</height>
|
||||||
</size>
|
</size>
|
||||||
</property>
|
</property>
|
||||||
<property name="toolTip" >
|
<property name="toolTip" >
|
||||||
@ -127,14 +127,14 @@
|
|||||||
<widget class="QPushButton" name="addStream_button" >
|
<widget class="QPushButton" name="addStream_button" >
|
||||||
<property name="minimumSize" >
|
<property name="minimumSize" >
|
||||||
<size>
|
<size>
|
||||||
<width>22</width>
|
<width>32</width>
|
||||||
<height>22</height>
|
<height>32</height>
|
||||||
</size>
|
</size>
|
||||||
</property>
|
</property>
|
||||||
<property name="maximumSize" >
|
<property name="iconSize" >
|
||||||
<size>
|
<size>
|
||||||
<width>22</width>
|
<width>55</width>
|
||||||
<height>22</height>
|
<height>32</height>
|
||||||
</size>
|
</size>
|
||||||
</property>
|
</property>
|
||||||
<property name="toolTip" >
|
<property name="toolTip" >
|
||||||
|
@ -250,14 +250,14 @@
|
|||||||
RSSImp::RSSImp() : QWidget(){
|
RSSImp::RSSImp() : QWidget(){
|
||||||
setupUi(this);
|
setupUi(this);
|
||||||
// icons of bottom buttons
|
// icons of bottom buttons
|
||||||
addStream_button->setIcon(QIcon(QString::fromUtf8(":/Icons/skin/add.png")));
|
addStream_button->setIcon(QIcon(QString::fromUtf8(":/Icons/subscribe.png")));
|
||||||
delStream_button->setIcon(QIcon(QString::fromUtf8(":/Icons/skin/remove.png")));
|
delStream_button->setIcon(QIcon(QString::fromUtf8(":/Icons/unsubscribe.png")));
|
||||||
refreshAll_button->setIcon(QIcon(QString::fromUtf8(":/Icons/refresh.png")));
|
refreshAll_button->setIcon(QIcon(QString::fromUtf8(":/Icons/refresh.png")));
|
||||||
// icons of right-click menu
|
// 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")));
|
actionRename->setIcon(QIcon(QString::fromUtf8(":/Icons/log.png")));
|
||||||
actionRefresh->setIcon(QIcon(QString::fromUtf8(":/Icons/refresh.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")));
|
actionRefreshAll->setIcon(QIcon(QString::fromUtf8(":/Icons/refresh.png")));
|
||||||
|
|
||||||
// Hide second column (url)
|
// Hide second column (url)
|
||||||
|
Loading…
Reference in New Issue
Block a user