1
0
mirror of https://github.com/KDE/latte-dock.git synced 2024-12-28 03:21:38 +03:00
latte-dock/liblatte2/quickwindowsystem.cpp
2019-04-03 22:24:21 +03:00

133 lines
3.6 KiB
C++

/*
* Copyright 2016 Smith AR <audoban@openmailbox.org>
* Michail Vourlakos <mvourlakos@gmail.com>
*
* This file is part of Latte-Dock
*
* Latte-Dock 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.
*
* Latte-Dock 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, see <http://www.gnu.org/licenses/>.
*/
#include "quickwindowsystem.h"
// local
#include "../app/config-latte.h"
// Qt
#include <QDebug>
#include <QProcess>
// Plasma
#include <plasma/version.h>
// 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();
}
uint QuickWindowSystem::frameworksVersion() const
{
return Plasma::version();
}
uint QuickWindowSystem::plasmaDesktopVersion()
{
if (m_plasmaDesktopVersion == -1) {
m_plasmaDesktopVersion = identifyPlasmaDesktopVersion();
}
return m_plasmaDesktopVersion;
}
uint QuickWindowSystem::makeVersion(uint major, uint minor, uint release) const
{
return (((major) << 16) | ((minor) << 8) | (release));
}
uint QuickWindowSystem::identifyPlasmaDesktopVersion()
{
//! Identify Plasma Desktop version
QProcess process;
process.start("plasmashell", QStringList() << "-v");
process.waitForFinished();
QString output(process.readAllStandardOutput());
QStringList stringSplit = output.split(" ");
if (stringSplit.count() >= 2) {
qDebug() << " /////////////////////////";
QString cleanVersionString = stringSplit[1].remove("\n");
QStringList plasmaDesktopVersionParts = cleanVersionString.split(".");
if (plasmaDesktopVersionParts.count() == 3) {
uint maj = plasmaDesktopVersionParts[0].toUInt();
uint min = plasmaDesktopVersionParts[1].toUInt();
uint rel = plasmaDesktopVersionParts[2].toUInt();
if (maj > 0) {
uint desktopVersion = makeVersion(maj, min, rel);
QString message("Plasma Desktop version: " + QString::number(maj) + "."
+ QString::number(min) + "." + QString::number(rel)
+ " (" + QString::number(desktopVersion) + ")");
qDebug() << message;
qDebug() << " /////////////////////////";
return desktopVersion;
}
}
qDebug() << " /////////////////////////";
}
return 0;
}
} //end of namespace