kde-workspace/plasma/dataengines/statusnotifieritem/statusnotifieritem_engine.cpp
Ivailo Monev 38cdd9c0f4 generic: cast pointers with QObject as base class via qobject_cast<T>()
Signed-off-by: Ivailo Monev <xakepa10@gmail.com>
2022-06-01 21:54:59 +03:00

146 lines
5.9 KiB
C++

/***************************************************************************
* *
* Copyright (C) 2009 Marco Martin <notmart@gmail.com> *
* Copyright (C) 2009 Matthieu Gallien <matthieu_gallien@yahoo.fr> *
* *
* This program is free software; you can redistribute it and/or modify *
* it under the terms of the GNU General Public License as published by *
* the Free Software Foundation; either version 2 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 General Public License for more details. *
* *
* You should have received a copy of the GNU General Public License *
* along with this program; if not, write to the *
* Free Software Foundation, Inc., *
* 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA . *
***************************************************************************/
#include "statusnotifieritem_engine.h"
#include "statusnotifieritemsource.h"
#include <QtCore/qcoreapplication.h>
#include <KDebug>
#include <KIcon>
#include <iostream>
static const QString s_watcherServiceName("org.kde.StatusNotifierWatcher");
StatusNotifierItemEngine::StatusNotifierItemEngine(QObject *parent, const QVariantList& args)
: Plasma::DataEngine(parent, args),
m_statusNotifierWatcher(0)
{
Q_UNUSED(args);
}
StatusNotifierItemEngine::~StatusNotifierItemEngine()
{
QDBusConnection::sessionBus().unregisterService(m_serviceName);
}
Plasma::Service* StatusNotifierItemEngine::serviceForSource(const QString &name)
{
StatusNotifierItemSource *source = qobject_cast<StatusNotifierItemSource*>(containerForSource(name));
// if source does not exist, return null service
if (!source) {
return Plasma::DataEngine::serviceForSource(name);
}
Plasma::Service *service = source->createService();
service->setParent(this);
return service;
}
void StatusNotifierItemEngine::init()
{
if (QDBusConnection::sessionBus().isConnected()) {
m_serviceName = "org.kde.StatusNotifierHost-" + QString::number(QCoreApplication::applicationPid());
QDBusConnection::sessionBus().registerService(m_serviceName);
QDBusServiceWatcher *watcher = new QDBusServiceWatcher(s_watcherServiceName, QDBusConnection::sessionBus(),
QDBusServiceWatcher::WatchForOwnerChange, this);
connect(watcher, SIGNAL(serviceOwnerChanged(QString,QString,QString)),
this, SLOT(serviceChange(QString,QString,QString)));
registerWatcher(s_watcherServiceName);
}
}
void StatusNotifierItemEngine::serviceChange(const QString& name, const QString& oldOwner, const QString& newOwner)
{
kDebug()<< "Service" << name << "status change, old owner:" << oldOwner << "new:" << newOwner;
if (newOwner.isEmpty()) {
//unregistered
unregisterWatcher(name);
} else if (oldOwner.isEmpty()) {
//registered
registerWatcher(name);
}
}
void StatusNotifierItemEngine::registerWatcher(const QString& service)
{
kDebug()<<"service appeared"<<service;
if (service == s_watcherServiceName) {
delete m_statusNotifierWatcher;
m_statusNotifierWatcher = new org::kde::StatusNotifierWatcher(s_watcherServiceName, "/StatusNotifierWatcher",
QDBusConnection::sessionBus());
if (m_statusNotifierWatcher->isValid() &&
m_statusNotifierWatcher->property("ProtocolVersion").toBool() == s_protocolVersion) {
connect(m_statusNotifierWatcher, SIGNAL(StatusNotifierItemRegistered(QString)), this, SLOT(serviceRegistered(QString)));
connect(m_statusNotifierWatcher, SIGNAL(StatusNotifierItemUnregistered(QString)), this, SLOT(serviceUnregistered(QString)));
m_statusNotifierWatcher->call(QDBus::NoBlock, "RegisterStatusNotifierHost", m_serviceName);
QStringList registeredItems = m_statusNotifierWatcher->property("RegisteredStatusNotifierItems").value<QStringList>();
foreach (const QString &service, registeredItems) {
newItem(service);
}
} else {
delete m_statusNotifierWatcher;
m_statusNotifierWatcher = 0;
kDebug()<<"System tray daemon not reachable";
}
}
}
void StatusNotifierItemEngine::unregisterWatcher(const QString& service)
{
if (service == s_watcherServiceName) {
kDebug()<< s_watcherServiceName << "disappeared";
disconnect(m_statusNotifierWatcher, SIGNAL(StatusNotifierItemRegistered(QString)), this, SLOT(serviceRegistered(QString)));
disconnect(m_statusNotifierWatcher, SIGNAL(StatusNotifierItemUnregistered(QString)), this, SLOT(serviceUnregistered(QString)));
removeAllSources();
delete m_statusNotifierWatcher;
m_statusNotifierWatcher = 0;
}
}
void StatusNotifierItemEngine::serviceRegistered(const QString &service)
{
kDebug() << "Registering"<<service;
newItem(service);
}
void StatusNotifierItemEngine::serviceUnregistered(const QString &service)
{
removeSource(service);
}
void StatusNotifierItemEngine::newItem(const QString &service)
{
StatusNotifierItemSource *itemSource = new StatusNotifierItemSource(service, this);
addSource(itemSource);
}
K_EXPORT_PLASMA_DATAENGINE(statusnotifieritem, StatusNotifierItemEngine)
#include "moc_statusnotifieritem_engine.cpp"