Browse Source

- Use RSS (un)subscribe icons

adaptive-webui-19844
Christophe Dumez 17 years ago
parent
commit
faeee49517
  1. BIN
      src/Icons/refresh.png
  2. BIN
      src/Icons/subscribe.png
  3. BIN
      src/Icons/subscribe16.png
  4. BIN
      src/Icons/unsubscribe.png
  5. BIN
      src/Icons/unsubscribe16.png
  6. 4
      src/icons.qrc
  7. 30
      src/rss.ui
  8. 8
      src/rss_imp.cpp

BIN
src/Icons/refresh.png

Binary file not shown.

Before

Width:  |  Height:  |  Size: 1.6 KiB

After

Width:  |  Height:  |  Size: 948 B

BIN
src/Icons/subscribe.png

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.5 KiB

BIN
src/Icons/subscribe16.png

Binary file not shown.

After

Width:  |  Height:  |  Size: 739 B

BIN
src/Icons/unsubscribe.png

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.7 KiB

BIN
src/Icons/unsubscribe16.png

Binary file not shown.

After

Width:  |  Height:  |  Size: 765 B

4
src/icons.qrc

@ -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

@ -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" >

8
src/rss_imp.cpp

@ -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…
Cancel
Save