syncthingtray/widgets/misc/dbusstatusnotifier.cpp

37 lines
1.5 KiB
C++
Raw Normal View History

#ifdef QT_UTILITIES_SUPPORT_DBUS_NOTIFICATIONS
#include "./dbusstatusnotifier.h"
#include <QCoreApplication>
using namespace Data;
using namespace MiscUtils;
namespace QtGui {
DBusStatusNotifier::DBusStatusNotifier(QObject *parent) :
QObject(parent),
m_disconnectedNotification(QCoreApplication::applicationName(), QStringLiteral("network-disconnect"), 5000),
m_internalErrorNotification(QCoreApplication::applicationName() + tr(" - internal error"), NotificationIcon::Critical, 5000),
m_syncthingNotification(tr("Syncthing notification"), NotificationIcon::Warning, 10000),
m_syncCompleteNotification(QCoreApplication::applicationName(), NotificationIcon::Information, 5000)
{
m_disconnectedNotification.setMessage(tr("Disconnected from Syncthing"));
m_disconnectedNotification.setActions(QStringList(tr("Try to reconnect")));
connect(&m_disconnectedNotification, &DBusNotification::actionInvoked, this, &DBusStatusNotifier::connectRequested);
m_syncthingNotification.setActions(QStringList({QStringLiteral("show"), tr("Show"), QStringLiteral("dismiss"), tr("Dismiss")}));
connect(&m_syncthingNotification, &DBusNotification::actionInvoked, this, &DBusStatusNotifier::handleSyncthingNotificationAction);
}
void DBusStatusNotifier::handleSyncthingNotificationAction(const QString &action)
{
if(action == QLatin1String("dismiss")) {
emit dismissNotificationsRequested();
} else if(action == QLatin1String("show")) {
emit showNotificationsRequested();
}
}
}
#endif