mirror of
https://github.com/RetroShare/RetroShare.git
synced 2025-01-11 07:29:38 -05:00
2df4a1a3e8
* changed the icons on other feeds too * Show on Forum Message Feed the Avatars
51 lines
2.2 KiB
C++
51 lines
2.2 KiB
C++
/*******************************************************************************
|
|
* retroshare-gui/src/gui/gxschannels/GxsChannelPostsUserNotify.cpp *
|
|
* *
|
|
* Copyright 2014 Retroshare Team <retroshare.project@gmail.com> *
|
|
* *
|
|
* This program is free software: you can redistribute it and/or modify *
|
|
* it under the terms of the GNU Affero General Public License as *
|
|
* published by the Free Software Foundation, either version 3 of the *
|
|
* License, or (at your option) any later version. *
|
|
* *
|
|
* This program is distributed in the hope that it will be useful, *
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of *
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the *
|
|
* GNU Affero General Public License for more details. *
|
|
* *
|
|
* You should have received a copy of the GNU Affero General Public License *
|
|
* along with this program. If not, see <https://www.gnu.org/licenses/>. *
|
|
* *
|
|
*******************************************************************************/
|
|
|
|
#include "GxsChannelUserNotify.h"
|
|
#include "gui/MainWindow.h"
|
|
|
|
GxsChannelUserNotify::GxsChannelUserNotify(RsGxsIfaceHelper *ifaceImpl, QObject *parent) :
|
|
GxsUserNotify(ifaceImpl, parent)
|
|
{
|
|
}
|
|
|
|
bool GxsChannelUserNotify::hasSetting(QString *name, QString *group)
|
|
{
|
|
if (name) *name = tr("Channel Post");
|
|
if (group) *group = "Channel";
|
|
|
|
return true;
|
|
}
|
|
|
|
QIcon GxsChannelUserNotify::getIcon()
|
|
{
|
|
return QIcon(":/icons/png/channel.png");
|
|
}
|
|
|
|
QIcon GxsChannelUserNotify::getMainIcon(bool hasNew)
|
|
{
|
|
return hasNew ? QIcon(":/icons/png/channels-notify.png") : QIcon(":/icons/png/channel.png");
|
|
}
|
|
|
|
void GxsChannelUserNotify::iconClicked()
|
|
{
|
|
MainWindow::showWindow(MainWindow::Channels);
|
|
}
|