mirror of
https://github.com/Qortal/Brooklyn.git
synced 2025-02-12 02:05:54 +00:00
62 lines
2.4 KiB
C++
62 lines
2.4 KiB
C++
/*
|
|
SPDX-FileCopyrightText: 2017 David Edmundson <davidedmundson@kde.org>
|
|
|
|
SPDX-License-Identifier: LGPL-2.1-only OR LGPL-3.0-only OR LicenseRef-KDE-Accepted-LGPL
|
|
*/
|
|
|
|
#include "xwindowsystemeventbatcher.h"
|
|
|
|
#include <QDebug>
|
|
#include <QTimerEvent>
|
|
|
|
#define BATCH_TIME 10
|
|
|
|
static const NET::Properties s_cachableProperties = NET::WMName | NET::WMVisibleName;
|
|
static const NET::Properties2 s_cachableProperties2 = NET::WM2UserTime;
|
|
|
|
XWindowSystemEventBatcher::XWindowSystemEventBatcher(QObject *parent)
|
|
: QObject(parent)
|
|
{
|
|
connect(KWindowSystem::self(), &KWindowSystem::windowAdded, this, &XWindowSystemEventBatcher::windowAdded);
|
|
|
|
// remove our cache entries when we lose a window, otherwise we might fire change signals after a window is destroyed which wouldn't make sense
|
|
connect(KWindowSystem::self(), &KWindowSystem::windowRemoved, this, [this](WId wid) {
|
|
m_cache.remove(wid);
|
|
Q_EMIT windowRemoved(wid);
|
|
});
|
|
|
|
void (KWindowSystem::*myWindowChangeSignal)(WId window, NET::Properties properties, NET::Properties2 properties2) = &KWindowSystem::windowChanged;
|
|
QObject::connect(KWindowSystem::self(), myWindowChangeSignal, this, [this](WId window, NET::Properties properties, NET::Properties2 properties2) {
|
|
// if properties contained only cachable flags
|
|
if ((properties | s_cachableProperties) == s_cachableProperties && (properties2 | s_cachableProperties2) == s_cachableProperties2) {
|
|
m_cache[window].properties |= properties;
|
|
m_cache[window].properties2 |= properties2;
|
|
if (!m_timerId) {
|
|
m_timerId = startTimer(BATCH_TIME);
|
|
}
|
|
} else {
|
|
// submit all caches along with any real updates
|
|
auto it = m_cache.constFind(window);
|
|
if (it != m_cache.constEnd()) {
|
|
properties |= it->properties;
|
|
properties2 |= it->properties2;
|
|
m_cache.erase(it);
|
|
}
|
|
Q_EMIT windowChanged(window, properties, properties2);
|
|
}
|
|
});
|
|
}
|
|
|
|
void XWindowSystemEventBatcher::timerEvent(QTimerEvent *event)
|
|
{
|
|
if (event->timerId() != m_timerId) {
|
|
return;
|
|
}
|
|
for (auto it = m_cache.constBegin(); it != m_cache.constEnd(); it++) {
|
|
Q_EMIT windowChanged(it.key(), it.value().properties, it.value().properties2);
|
|
};
|
|
m_cache.clear();
|
|
killTimer(m_timerId);
|
|
m_timerId = 0;
|
|
}
|