mirror of
https://github.com/KDE/latte-dock.git
synced 2025-01-06 21:18:11 +03:00
59 lines
1.2 KiB
C++
59 lines
1.2 KiB
C++
/*
|
|
SPDX-FileCopyrightText: 2016 Smith AR <audoban@openmailbox.org>
|
|
SPDX-FileCopyrightText: 2016 Michail Vourlakos <mvourlakos@gmail.com>
|
|
|
|
SPDX-License-Identifier: GPL-2.0-or-later
|
|
*/
|
|
|
|
#include "quickwindowsystem.h"
|
|
|
|
// Qt
|
|
#include <QDebug>
|
|
|
|
// X11
|
|
#include <KWindowSystem>
|
|
|
|
namespace Latte {
|
|
|
|
QuickWindowSystem::QuickWindowSystem(QObject *parent)
|
|
: QObject(parent)
|
|
{
|
|
if (KWindowSystem::isPlatformWayland()) {
|
|
//! TODO: Wayland compositing active
|
|
m_compositing = true;
|
|
} else {
|
|
connect(KWindowSystem::self(), &KWindowSystem::compositingChanged
|
|
, this, [&](bool enabled) {
|
|
if (m_compositing == enabled)
|
|
return;
|
|
|
|
m_compositing = enabled;
|
|
emit compositingChanged();
|
|
});
|
|
|
|
m_compositing = KWindowSystem::compositingActive();
|
|
}
|
|
}
|
|
|
|
QuickWindowSystem::~QuickWindowSystem()
|
|
{
|
|
qDebug() << staticMetaObject.className() << "destructed";
|
|
}
|
|
|
|
bool QuickWindowSystem::compositingActive() const
|
|
{
|
|
return m_compositing;
|
|
}
|
|
|
|
bool QuickWindowSystem::isPlatformWayland() const
|
|
{
|
|
return KWindowSystem::isPlatformWayland();
|
|
}
|
|
|
|
bool QuickWindowSystem::isPlatformX11() const
|
|
{
|
|
return KWindowSystem::isPlatformX11();
|
|
}
|
|
|
|
} //end of namespace
|