kdelibs/kdeui/notifications/knotificationmanager.cpp
Ivailo Monev 6784f51d58 kdeui: tweak KNotificationManager and KGlobalAccel for automatic service activation
KGlobalAccelPrivate uses service watcher and the interface is invalid until
the service is activated (either by the first call of the interface or some
other lazy-initialization method), however KNotificationManager does
connect to signals immediately (which should work regardless) but the error
may have been logged before

Signed-off-by: Ivailo Monev <xakepa10@gmail.com>
2022-12-09 12:00:23 +02:00

165 lines
4.9 KiB
C++

/* This file is part of the KDE libraries
Copyright (C) 2005 Olivier Goffart <ogoffart at kde.org>
This library is free software; you can redistribute it and/or
modify it under the terms of the GNU Library General Public
License version 2 as published by the Free Software Foundation.
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
Library General Public License for more details.
You should have received a copy of the GNU Library General Public License
along with this library; see the file COPYING.LIB. If not, write to
the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
Boston, MA 02110-1301, USA.
*/
#include <QWidget>
#include <QImageWriter>
#include <QBuffer>
#include "knotificationmanager_p.h"
#include <ktoolinvocation.h>
#include "knotification.h"
#include <kdebug.h>
#include <kapplication.h>
#include <kiconloader.h>
#include <kconfig.h>
#include <klocale.h>
static const QByteArray imageFormat = QImageWriter::defaultImageFormat();
KNotificationManager * KNotificationManager::self()
{
K_GLOBAL_STATIC(KNotificationManager, s_self)
return s_self;
}
KNotificationManager::KNotificationManager()
{
QDBusConnectionInterface* sessionIface = QDBusConnection::sessionBus().interface();
if (!sessionIface->isServiceRegistered("org.kde.knotify")) {
QDBusReply<void> sessionReply = sessionIface->startService("org.kde.knotify");
if (!sessionReply.isValid()) {
kError() << "Couldn't start knotify service" << sessionReply.error();
}
}
m_knotify = new org::kde::KNotify(
QLatin1String("org.kde.knotify"), QLatin1String("/Notify"), QDBusConnection::sessionBus(), this
);
connect(
m_knotify, SIGNAL(notificationClosed(int)),
this, SLOT(notificationClosed(int))
);
connect(
m_knotify, SIGNAL(notificationActivated(int,int)),
this, SLOT(notificationActivated(int,int))
);
}
KNotificationManager::~KNotificationManager()
{
delete m_knotify;
}
void KNotificationManager::notificationActivated(int id, int action)
{
if (m_notifications.contains(id)) {
kDebug(299) << id << " " << action;
KNotification *n = m_notifications[id];
m_notifications.remove(id);
n->activate( action );
}
}
void KNotificationManager::notificationClosed(int id)
{
if (m_notifications.contains(id)) {
kDebug( 299 ) << id;
KNotification *n = m_notifications[id];
m_notifications.remove(id);
n->close();
}
}
void KNotificationManager::close(int id, bool force)
{
if (force || m_notifications.contains(id)) {
m_notifications.remove(id);
kDebug( 299 ) << id;
m_knotify->closeNotification(id);
}
}
bool KNotificationManager::notify(KNotification* n, const QPixmap &pix,
const QStringList &actions,
const KNotification::ContextList & contexts,
const QString &appname)
{
WId winId = n->widget() ? n->widget()->window()->winId() : 0;
QByteArray pixmapData;
QBuffer buffer(&pixmapData);
buffer.open(QIODevice::WriteOnly);
pix.save(&buffer, imageFormat);
QVariantList contextList;
foreach (const KNotification::Context& ctx, contexts) {
QVariantList vl;
vl << ctx.first << ctx.second;
contextList << vl;
}
// Persistent => 0 == infinite timeout
// CloseOnTimeout => -1 == let the server decide
int timeout = (n->flags() & KNotification::Persistent) ? 0 : -1;
QList<QVariant> args;
args << n->eventId() << (appname.isEmpty() ? KGlobal::mainComponent().componentName() : appname);
args.append(QVariant(contextList));
args << n->title() << n->text() << pixmapData << QVariant(actions) << timeout << qlonglong(winId) ;
return m_knotify->callWithCallback( "event", args, n, SLOT(slotReceivedId(int)), SLOT(slotReceivedIdError(QDBusError)));
}
void KNotificationManager::insert(KNotification *n, int id)
{
m_notifications.insert(id, n);
}
void KNotificationManager::update(KNotification * n, int id)
{
if (id <= 0) {
return;
}
QByteArray pixmapData;
if (!n->pixmap().isNull()) {
QBuffer buffer(&pixmapData);
buffer.open(QIODevice::WriteOnly);
n->pixmap().save(&buffer, imageFormat);
}
m_knotify->update(id, n->title(), n->text(), pixmapData , n->actions() );
}
void KNotificationManager::reemit(KNotification * n, int id)
{
QVariantList contextList;
foreach (const KNotification::Context& ctx, n->contexts()) {
// kDebug(299) << "add context " << ctx.first << "-" << ctx.second;
QVariantList vl;
vl << ctx.first << ctx.second;
contextList << vl;
}
m_knotify->reemit(id, contextList);
}
#include "moc_knotificationmanager_p.cpp"