kwin/src/plugins/nightcolor/clockskewnotifier.cpp
Vlad Zahorodnii 1b2c7b248b Run clazy with qt-keywords fixit
In C++20, there will be emit() class member, which can conflict with the
emit keyword. Given that, there are plans to enable QT_NO_KEYWORDS by
default in the future.

See also
https://lists.qt-project.org/pipermail/development/2020-February/038812.html
2021-06-08 10:49:42 +03:00

78 lines
1.5 KiB
C++

/*
SPDX-FileCopyrightText: 2019 Vlad Zahorodnii <vlad.zahorodnii@kde.org>
SPDX-License-Identifier: GPL-2.0-or-later
*/
#include "clockskewnotifier.h"
#include "clockskewnotifierengine_p.h"
namespace KWin
{
class ClockSkewNotifier::Private
{
public:
void loadNotifierEngine();
void unloadNotifierEngine();
ClockSkewNotifier *notifier = nullptr;
ClockSkewNotifierEngine *engine = nullptr;
bool isActive = false;
};
void ClockSkewNotifier::Private::loadNotifierEngine()
{
engine = ClockSkewNotifierEngine::create(notifier);
if (engine) {
QObject::connect(engine, &ClockSkewNotifierEngine::clockSkewed, notifier, &ClockSkewNotifier::clockSkewed);
}
}
void ClockSkewNotifier::Private::unloadNotifierEngine()
{
if (!engine) {
return;
}
QObject::disconnect(engine, &ClockSkewNotifierEngine::clockSkewed, notifier, &ClockSkewNotifier::clockSkewed);
engine->deleteLater();
engine = nullptr;
}
ClockSkewNotifier::ClockSkewNotifier(QObject *parent)
: QObject(parent)
, d(new Private)
{
d->notifier = this;
}
ClockSkewNotifier::~ClockSkewNotifier()
{
}
bool ClockSkewNotifier::isActive() const
{
return d->isActive;
}
void ClockSkewNotifier::setActive(bool set)
{
if (d->isActive == set) {
return;
}
d->isActive = set;
if (d->isActive) {
d->loadNotifierEngine();
} else {
d->unloadNotifierEngine();
}
Q_EMIT activeChanged();
}
} // namespace KWin