1
0
mirror of https://github.com/KDE/latte-dock.git synced 2025-01-09 05:18:18 +03:00
latte-dock/declarativeimports/core/environment.cpp
Michail Vourlakos b69af88ebc refactor:move irrelevant WindowSystem properties
--irrelevant WindowSystem properties are now moved
to LatteCore.Environment that fit better semantically
2020-04-18 13:55:06 +03:00

117 lines
3.0 KiB
C++

/*
* Copyright 2020 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 "environment.h"
// Qt
#include <QDebug>
#include <QProcess>
// Plasma
#include <plasma/version.h>
#define LONGDURATION 240
#define SHORTDURATION 40
namespace Latte{
const int Environment::SeparatorLength;
Environment::Environment(QObject *parent)
: QObject(parent)
{
}
int Environment::separatorLength() const
{
return SeparatorLength;
}
uint Environment::shortDuration() const
{
return SHORTDURATION;
}
uint Environment::longDuration() const
{
return LONGDURATION;
}
uint Environment::frameworksVersion() const
{
return Plasma::version();
}
uint Environment::plasmaDesktopVersion()
{
if (m_plasmaDesktopVersion == -1) {
m_plasmaDesktopVersion = identifyPlasmaDesktopVersion();
}
return m_plasmaDesktopVersion;
}
uint Environment::makeVersion(uint major, uint minor, uint release) const
{
return (((major) << 16) | ((minor) << 8) | (release));
}
uint Environment::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;
}
}