mirror of
https://github.com/RetroShare/RetroShare.git
synced 2025-01-10 06:59:42 -05:00
269 lines
7.4 KiB
C++
269 lines
7.4 KiB
C++
/*******************************************************************************
|
|
* gui/common/UserNotify.cpp *
|
|
* *
|
|
* Copyright (c) 2012, 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 <QMenu>
|
|
#include <QToolBar>
|
|
#include <QToolButton>
|
|
|
|
#include "UserNotify.h"
|
|
#include "rshare.h"
|
|
#include "gui/settings/rsharesettings.h"
|
|
|
|
UserNotify::UserNotify(QObject *parent) :
|
|
QObject(parent)
|
|
{
|
|
mMainToolButton = NULL;
|
|
mMainAction = NULL;
|
|
mListItem = NULL;
|
|
mTrayIcon = NULL;
|
|
mNotifyIcon = NULL;
|
|
mNewCount = 0;
|
|
mLastBlinking = false;
|
|
|
|
connect(rApp, SIGNAL(blink(bool)), this, SLOT(blink(bool)));
|
|
}
|
|
|
|
UserNotify::~UserNotify()
|
|
{
|
|
}
|
|
|
|
bool UserNotify::notifyEnabled()
|
|
{
|
|
QString group;
|
|
if (!hasSetting(NULL, &group) || group.isEmpty()) {
|
|
return false;
|
|
}
|
|
|
|
return Settings->valueFromGroup(group, "TrayNotifyEnable", true).toBool();
|
|
}
|
|
|
|
bool UserNotify::notifyCombined()
|
|
{
|
|
QString group;
|
|
if (!hasSetting(NULL, &group) || group.isEmpty()) {
|
|
return false;
|
|
}
|
|
|
|
return Settings->valueFromGroup(group, "TrayNotifyCombined", false).toBool();
|
|
}
|
|
|
|
bool UserNotify::notifyBlink()
|
|
{
|
|
QString group;
|
|
if (!hasSetting(NULL, &group) || group.isEmpty()) {
|
|
return false;
|
|
}
|
|
|
|
return Settings->valueFromGroup(group, "TrayNotifyBlink", false).toBool();
|
|
}
|
|
|
|
void UserNotify::setNotifyEnabled(bool enabled, bool combined, bool blink)
|
|
{
|
|
QString group;
|
|
if (!hasSetting(NULL, &group) || group.isEmpty()) {
|
|
return;
|
|
}
|
|
|
|
Settings->beginGroup(group);
|
|
Settings->setValue("TrayNotifyEnable", enabled);
|
|
Settings->setValue("TrayNotifyCombined", combined);
|
|
Settings->setValue("TrayNotifyBlink", blink);
|
|
Settings->endGroup();
|
|
}
|
|
|
|
void UserNotify::initialize(QToolBar *mainToolBar, QAction *mainAction, QListWidgetItem *listItem,const QString& subtext)
|
|
{
|
|
mMainAction = mainAction;
|
|
if (mMainAction) {
|
|
mButtonText = mMainAction->text();
|
|
mButtonText2 = subtext;
|
|
if (mainToolBar) {
|
|
mMainToolButton = dynamic_cast<QToolButton*>(mainToolBar->widgetForAction(mMainAction));
|
|
}
|
|
}
|
|
mListItem = listItem;
|
|
if (mListItem && mMainAction) {
|
|
mButtonText = mMainAction->text();
|
|
}
|
|
}
|
|
|
|
void UserNotify::createIcons(QMenu *notifyMenu)
|
|
{
|
|
#define DELETE_OBJECT(x) if (x) { delete(x); x = NULL; }
|
|
|
|
/* Create systray icons or actions */
|
|
if (notifyEnabled()) {
|
|
if (notifyCombined()) {
|
|
DELETE_OBJECT(mTrayIcon);
|
|
|
|
if (mNotifyIcon == NULL) {
|
|
mNotifyIcon = notifyMenu->addAction(getIcon(), "", this, SLOT(trayIconClicked()));
|
|
mNotifyIcon->setVisible(false);
|
|
connect(mNotifyIcon, SIGNAL(hovered()), this, SLOT(trayIconHovered()));
|
|
}
|
|
} else {
|
|
DELETE_OBJECT(mNotifyIcon);
|
|
|
|
if (mTrayIcon == NULL) {
|
|
/* Create the tray icon for messages */
|
|
mTrayIcon = new QSystemTrayIcon(this);
|
|
#ifdef Q_OS_WIN
|
|
#if QT_VERSION >= QT_VERSION_CHECK (5, 10, 0)
|
|
// Set tray icon visible to hide it again with ::hide.
|
|
// ::hide or ::setVisible(false) does nothing when QSystemTrayIcon is hidden.
|
|
mTrayIcon->show();
|
|
#endif
|
|
#endif
|
|
mTrayIcon->setIcon(getIcon());
|
|
#ifdef Q_OS_WIN
|
|
#if QT_VERSION >= QT_VERSION_CHECK (5, 10, 0)
|
|
// Hide tray icon as workaround for Qt 5.10.0 (Windows only?)
|
|
// QSystemTrayIcon is initially not visible but the icon gets visible after the call to ::setIcon.
|
|
mTrayIcon->hide();
|
|
#endif
|
|
#endif
|
|
connect(mTrayIcon, SIGNAL(activated(QSystemTrayIcon::ActivationReason)), this, SLOT(trayIconClicked(QSystemTrayIcon::ActivationReason)));
|
|
}
|
|
}
|
|
} else {
|
|
DELETE_OBJECT(mTrayIcon);
|
|
DELETE_OBJECT(mNotifyIcon);
|
|
}
|
|
|
|
#undef DELETE_OBJECT
|
|
}
|
|
|
|
void UserNotify::updateIcon()
|
|
{
|
|
startUpdate();
|
|
}
|
|
|
|
void UserNotify::startUpdate()
|
|
{
|
|
update();
|
|
}
|
|
|
|
void UserNotify::update()
|
|
{
|
|
unsigned int count = getNewCount();
|
|
|
|
if (mMainAction) {
|
|
mMainAction->setIcon(getMainIcon(count > 0));
|
|
|
|
if(count > 0)
|
|
{
|
|
if(!mButtonText2.isNull())
|
|
mMainAction->setToolTip(QString("%1 (%2 %3)").arg(mButtonText).arg(count).arg(mButtonText2));
|
|
else
|
|
mMainAction->setToolTip(QString("%1 (%2)").arg(mButtonText).arg(count));
|
|
|
|
mMainAction->setText(QString("%1 (%2)").arg(mButtonText).arg(count));
|
|
}
|
|
else
|
|
mMainAction->setText(mButtonText);
|
|
|
|
QFont font = mMainAction->font();
|
|
font.setBold(count > 0);
|
|
mMainAction->setFont(font);
|
|
}
|
|
|
|
if (mListItem) {
|
|
mListItem->setIcon(getMainIcon(count > 0));
|
|
mListItem->setText((count > 0) ? QString("%1 (%2)").arg(mButtonText).arg(count) : mButtonText);
|
|
|
|
QFont font = mListItem->font();
|
|
font.setBold(count > 0);
|
|
mListItem->setFont(font);
|
|
}
|
|
if (mMainToolButton) {
|
|
mMainToolButton->setStyleSheet((count > 0) ? "QToolButton { color: #E21D3A; }" : "");
|
|
|
|
QFont font = mMainToolButton->font();
|
|
font.setBold(count > 0);
|
|
mMainToolButton->setFont(font);
|
|
}
|
|
|
|
if (mTrayIcon) {
|
|
if (count) {
|
|
mTrayIcon->setToolTip("RetroShare\n" + getTrayMessage(count > 1).arg(count));
|
|
mTrayIcon->show();
|
|
} else {
|
|
mTrayIcon->hide();
|
|
}
|
|
}
|
|
|
|
if (mNotifyIcon) {
|
|
mNotifyIcon->setData(count);
|
|
if (count) {
|
|
mNotifyIcon->setText(getNotifyMessage(count > 1).arg(count));
|
|
mNotifyIcon->setVisible(true);
|
|
} else {
|
|
mNotifyIcon->setVisible(false);
|
|
}
|
|
}
|
|
|
|
if (mNewCount != count) {
|
|
emit countChanged();
|
|
}
|
|
|
|
mNewCount = count;
|
|
}
|
|
|
|
QString UserNotify::getTrayMessage(bool plural)
|
|
{
|
|
return plural ? tr("You have %1 new messages") : tr("You have %1 new message");
|
|
}
|
|
|
|
QString UserNotify::getNotifyMessage(bool plural)
|
|
{
|
|
return plural ? tr("%1 new messages") : tr("%1 new message");
|
|
}
|
|
|
|
void UserNotify::trayIconClicked(QSystemTrayIcon::ActivationReason e)
|
|
{
|
|
if (e == QSystemTrayIcon::Trigger || e == QSystemTrayIcon::DoubleClick || e == QSystemTrayIcon::Context) {
|
|
iconClicked();
|
|
}
|
|
}
|
|
|
|
void UserNotify::trayIconHovered()
|
|
{
|
|
iconHovered();
|
|
}
|
|
|
|
void UserNotify::blink(bool on)
|
|
{
|
|
if (mTrayIcon) {
|
|
bool blinking = notifyBlink();
|
|
|
|
if (blinking) {
|
|
/* blink icon */
|
|
mTrayIcon->setIcon(on ? getIcon() : QIcon());
|
|
} else {
|
|
if (mLastBlinking) {
|
|
/* reset icon */
|
|
mTrayIcon->setIcon(getIcon());
|
|
}
|
|
}
|
|
|
|
mLastBlinking = blinking;
|
|
}
|
|
}
|