Changed the Channed feeds icons

Changed the Channed feeds icons
This commit is contained in:
defnax 2019-10-06 21:23:19 +02:00
parent d089762e12
commit 98f35cf8af
14 changed files with 42 additions and 28 deletions

View File

@ -176,13 +176,13 @@ void GxsChannelGroupItem::doExpand(bool open)
if (open) if (open)
{ {
ui->expandFrame->show(); ui->expandFrame->show();
ui->expandButton->setIcon(QIcon(QString(":/images/edit_remove24.png"))); ui->expandButton->setIcon(QIcon(QString(":/icons/png/up-arrow.png")));
ui->expandButton->setToolTip(tr("Hide")); ui->expandButton->setToolTip(tr("Hide"));
} }
else else
{ {
ui->expandFrame->hide(); ui->expandFrame->hide();
ui->expandButton->setIcon(QIcon(QString(":/images/edit_add24.png"))); ui->expandButton->setIcon(QIcon(QString(":/icons/png/down-arrow.png")));
ui->expandButton->setToolTip(tr("Expand")); ui->expandButton->setToolTip(tr("Expand"));
} }

View File

@ -699,7 +699,7 @@ void GxsChannelPostItem::doExpand(bool open)
if (open) if (open)
{ {
ui->expandFrame->show(); ui->expandFrame->show();
ui->expandButton->setIcon(QIcon(QString(":/images/edit_remove24.png"))); ui->expandButton->setIcon(QIcon(QString(":/icons/png/up-arrow.png")));
ui->expandButton->setToolTip(tr("Hide")); ui->expandButton->setToolTip(tr("Hide"));
readToggled(false); readToggled(false);
@ -707,7 +707,7 @@ void GxsChannelPostItem::doExpand(bool open)
else else
{ {
ui->expandFrame->hide(); ui->expandFrame->hide();
ui->expandButton->setIcon(QIcon(QString(":/images/edit_add24.png"))); ui->expandButton->setIcon(QIcon(QString(":/icons/png/down-arrow.png")));
ui->expandButton->setToolTip(tr("Expand")); ui->expandButton->setToolTip(tr("Expand"));
} }

View File

@ -309,8 +309,8 @@
<string>Download</string> <string>Download</string>
</property> </property>
<property name="icon"> <property name="icon">
<iconset resource="../images.qrc"> <iconset resource="../icons.qrc">
<normaloff>:/images/download16.png</normaloff>:/images/download16.png</iconset> <normaloff>:/icons/png/download.png</normaloff>:/icons/png/download.png</iconset>
</property> </property>
<property name="autoExclusive"> <property name="autoExclusive">
<bool>false</bool> <bool>false</bool>
@ -326,8 +326,8 @@
<string>Play</string> <string>Play</string>
</property> </property>
<property name="icon"> <property name="icon">
<iconset resource="../images.qrc"> <iconset resource="../icons.qrc">
<normaloff>:/images/player_play.png</normaloff>:/images/player_play.png</iconset> <normaloff>:/icons/png/play.png</normaloff>:/icons/png/play.png</iconset>
</property> </property>
</widget> </widget>
</item> </item>
@ -336,6 +336,10 @@
<property name="text"> <property name="text">
<string>Comments</string> <string>Comments</string>
</property> </property>
<property name="icon">
<iconset resource="../icons.qrc">
<normaloff>:/icons/png/comment.png</normaloff>:/icons/png/comment.png</iconset>
</property>
</widget> </widget>
</item> </item>
<item> <item>
@ -373,8 +377,8 @@
<string>Copy RetroShare Link</string> <string>Copy RetroShare Link</string>
</property> </property>
<property name="icon"> <property name="icon">
<iconset resource="../images.qrc"> <iconset resource="../icons.qrc">
<normaloff>:/images/copyrslink.png</normaloff>:/images/copyrslink.png</iconset> <normaloff>:/icons/png/copy.png</normaloff>:/icons/png/copy.png</iconset>
</property> </property>
</widget> </widget>
</item> </item>
@ -392,9 +396,8 @@
<property name="toolTip"> <property name="toolTip">
<string>Unsubscribe From Channel</string> <string>Unsubscribe From Channel</string>
</property> </property>
<property name="icon"> <property name="text">
<iconset resource="../images.qrc"> <string>Unsubscribe</string>
<normaloff>:/images/mail_delete.png</normaloff>:/images/mail_delete.png</iconset>
</property> </property>
</widget> </widget>
</item> </item>
@ -413,8 +416,8 @@
<string>Expand</string> <string>Expand</string>
</property> </property>
<property name="icon"> <property name="icon">
<iconset resource="../images.qrc"> <iconset resource="../icons.qrc">
<normaloff>:/images/edit_add24.png</normaloff>:/images/edit_add24.png</iconset> <normaloff>:/icons/png/down-arrow.png</normaloff>:/icons/png/down-arrow.png</iconset>
</property> </property>
</widget> </widget>
</item> </item>
@ -433,8 +436,8 @@
<string>Set as read and remove item</string> <string>Set as read and remove item</string>
</property> </property>
<property name="icon"> <property name="icon">
<iconset resource="../images.qrc"> <iconset resource="../icons.qrc">
<normaloff>:/images/cancel.png</normaloff>:/images/cancel.png</iconset> <normaloff>:/icons/png/correct.png</normaloff>:/icons/png/correct.png</iconset>
</property> </property>
</widget> </widget>
</item> </item>
@ -453,8 +456,8 @@
<string>Remove Item</string> <string>Remove Item</string>
</property> </property>
<property name="icon"> <property name="icon">
<iconset resource="../images.qrc"> <iconset resource="../icons.qrc">
<normaloff>:/images/close_normal.png</normaloff>:/images/close_normal.png</iconset> <normaloff>:/icons/svg/exit-red.svg</normaloff>:/icons/svg/exit-red.svg</iconset>
</property> </property>
</widget> </widget>
</item> </item>
@ -564,6 +567,7 @@
</customwidgets> </customwidgets>
<resources> <resources>
<include location="../images.qrc"/> <include location="../images.qrc"/>
<include location="../icons.qrc"/>
</resources> </resources>
<connections/> <connections/>
</ui> </ui>

View File

@ -718,6 +718,7 @@ void SubFileItem::mediatype()
/* check if the file is not a media file and change text */ /* check if the file is not a media file and change text */
playButton->setText(tr("Open")); playButton->setText(tr("Open"));
playButton->setToolTip(tr("Open File")); playButton->setToolTip(tr("Open File"));
playButton->setIcon(QIcon());
} }
void SubFileItem::copyLink() void SubFileItem::copyLink()

View File

@ -83,8 +83,8 @@
<string>Cancel Download</string> <string>Cancel Download</string>
</property> </property>
<property name="icon"> <property name="icon">
<iconset resource="../images.qrc"> <iconset resource="../icons.qrc">
<normaloff>:/images/delete.png</normaloff>:/images/delete.png</iconset> <normaloff>:/icons/png/cancel.png</normaloff>:/icons/png/cancel.png</iconset>
</property> </property>
</widget> </widget>
</item> </item>
@ -112,8 +112,8 @@
<string>Download</string> <string>Download</string>
</property> </property>
<property name="icon"> <property name="icon">
<iconset resource="../images.qrc"> <iconset resource="../icons.qrc">
<normaloff>:/images/download.png</normaloff>:/images/download.png</iconset> <normaloff>:/icons/png/download.png</normaloff>:/icons/png/download.png</iconset>
</property> </property>
</widget> </widget>
</item> </item>
@ -141,8 +141,8 @@
<string>Play</string> <string>Play</string>
</property> </property>
<property name="icon"> <property name="icon">
<iconset resource="../images.qrc"> <iconset resource="../icons.qrc">
<normaloff>:/images/player_play.png</normaloff>:/images/player_play.png</iconset> <normaloff>:/icons/png/play.png</normaloff>:/icons/png/play.png</iconset>
</property> </property>
</widget> </widget>
</item> </item>
@ -167,8 +167,8 @@
<string>Copy RetroShare Link</string> <string>Copy RetroShare Link</string>
</property> </property>
<property name="icon"> <property name="icon">
<iconset resource="../images.qrc"> <iconset resource="../icons.qrc">
<normaloff>:/images/copyrslink.png</normaloff>:/images/copyrslink.png</iconset> <normaloff>:/icons/png/copy.png</normaloff>:/icons/png/copy.png</iconset>
</property> </property>
</widget> </widget>
</item> </item>
@ -242,6 +242,7 @@
</widget> </widget>
<resources> <resources>
<include location="../images.qrc"/> <include location="../images.qrc"/>
<include location="../icons.qrc"/>
</resources> </resources>
<connections/> <connections/>
</ui> </ui>

View File

@ -71,7 +71,7 @@
<file>icons/png/add.png</file> <file>icons/png/add.png</file>
<file>icons/png/attach-image.png</file> <file>icons/png/attach-image.png</file>
<file>icons/png/attach.png</file> <file>icons/png/attach.png</file>
<file>icons/png/cert.png</file> <file>icons/png/cert.png</file>
<file>icons/png/channels-notify.png</file> <file>icons/png/channels-notify.png</file>
<file>icons/png/channels.png</file> <file>icons/png/channels.png</file>
<file>icons/png/chat-bubble-notify.png</file> <file>icons/png/chat-bubble-notify.png</file>
@ -261,5 +261,13 @@
<file>icons/png/flame.png</file> <file>icons/png/flame.png</file>
<file>icons/png/new.png</file> <file>icons/png/new.png</file>
<file>icons/png/top.png</file> <file>icons/png/top.png</file>
<file>icons/png/copy.png</file>
<file>icons/png/down-arrow.png</file>
<file>icons/png/download.png</file>
<file>icons/png/up-arrow.png</file>
<file>icons/png/play.png</file>
<file>icons/png/cancel.png</file>
<file>icons/png/correct.png</file>
<file>icons/png/comment.png</file>
</qresource> </qresource>
</RCC> </RCC>

Binary file not shown.

After

Width:  |  Height:  |  Size: 5.8 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.1 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 2.3 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 2.0 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.4 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 2.2 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 3.8 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.3 KiB