/* BEGIN_COMMON_COPYRIGHT_HEADER * (c)LGPL2+ * * LXQt - a lightweight, Qt based, desktop toolset * http://razor-qt.org * * Copyright (C) 2012 Alec Moskvin * * This library is free software; you can redistribute it and/or * modify it under the terms of the GNU Lesser General Public * License as published by the Free Software Foundation; either * version 2.1 of the License, or (at your option) any later version. * This library 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 * Lesser General Public License for more details. * You should have received a copy of the GNU Lesser General Public * License along with this library; if not, write to the Free Software * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA * * END_COMMON_COPYRIGHT_HEADER */ #include "lxqtnotification.h" #include "lxqtnotification_p.h" #include #include using namespace LxQt; Notification::Notification(const QString& summary, QObject* parent) : QObject(parent), d_ptr(new NotificationPrivate(summary, this)) { } Notification::~Notification() { Q_D(Notification); delete d; } void Notification::update() { Q_D(Notification); d->update(); } void Notification::close() { Q_D(Notification); d->close(); } void Notification::setSummary(const QString& summary) { Q_D(Notification); d->mSummary = summary; } void Notification::setBody(const QString& body) { Q_D(Notification); d->mBody = body; } void Notification::setIcon(const QString& iconName) { Q_D(Notification); d->mIconName = iconName; } void Notification::setActions(const QStringList& actions, int defaultAction) { Q_D(Notification); d->setActions(actions, defaultAction); } void Notification::setTimeout(int timeout) { Q_D(Notification); d->mTimeout = timeout; } void Notification::setHint(const QString& hintName, const QVariant& value) { Q_D(Notification); d->mHints.insert(hintName, value); } void Notification::setUrgencyHint(Urgency urgency) { Q_D(Notification); d->mHints.insert("urgency", qvariant_cast(urgency)); } void Notification::clearHints() { Q_D(Notification); d->mHints.clear(); } QStringList Notification::getCapabilities() { Q_D(Notification); return d->mInterface->GetCapabilities().value(); } const Notification::ServerInfo Notification::serverInfo() { Q_D(Notification); return d->serverInfo(); } void Notification::notify(const QString& summary, const QString& body, const QString& iconName) { Notification notification(summary); notification.setBody(body); notification.setIcon(iconName); notification.update(); } NotificationPrivate::NotificationPrivate(const QString& summary, Notification* parent) : mId(0), mSummary(summary), mTimeout(-1), q_ptr(parent) { mInterface = new OrgFreedesktopNotificationsInterface("org.freedesktop.Notifications", "/org/freedesktop/Notifications", QDBusConnection::sessionBus(), this); connect(mInterface, SIGNAL(NotificationClosed(uint, uint)), this, SLOT(notificationClosed(uint,uint))); connect(mInterface, SIGNAL(ActionInvoked(uint,QString)), this, SLOT(handleAction(uint,QString))); } NotificationPrivate::~NotificationPrivate() { } void NotificationPrivate::update() { QDBusPendingReply reply = mInterface->Notify(qAppName(), mId, mIconName, mSummary, mBody, mActions, mHints, mTimeout); reply.waitForFinished(); if (!reply.isError()) { mId = reply.value(); } else { if (mHints.contains("urgency") && mHints.value("urgency").toInt() != Notification::UrgencyLow) QMessageBox::information(0, tr("Notifications Fallback"), mSummary + " \n\n " + mBody); } } void NotificationPrivate::setActions(QStringList actions, int defaultAction) { mActions.clear(); mDefaultAction = defaultAction; for (int ix = 0; ix < actions.size(); ix++) { if (ix == defaultAction) mActions.append("default"); else mActions.append(QString::number(ix)); mActions.append(actions[ix]); } } const Notification::ServerInfo NotificationPrivate::serverInfo() { Notification::ServerInfo info; info.name = mInterface->GetServerInformation(info.vendor, info.version, info.specVersion); return info; } void NotificationPrivate::handleAction(uint id, QString key) { if (id != mId) return; Q_Q(Notification); qDebug() << "action invoked:" << key; bool ok = true; int keyId; if (key == "default") keyId = mDefaultAction; else keyId = key.toInt(&ok); if (ok && key >= 0) emit q->actionActivated(keyId); } void NotificationPrivate::close() { mInterface->CloseNotification(mId); mId = 0; } void NotificationPrivate::notificationClosed(uint id, uint reason) { Q_Q(Notification); if (id != 0 && id == mId) { mId = 0; } emit q->notificationClosed(Notification::CloseReason(reason)); }