1
0
mirror of https://github.com/KDE/latte-dock.git synced 2025-01-26 18:03:42 +03:00
latte-dock/app/wm/schemecolors.cpp
Michail Vourlakos 686d04f181 update scheme files when created
--plasma systemsettings colors dialog recreates
the color scheme file and is not updating it.
By adding a signal for file creation we can now
update color schemes properly when the user updates
colors based on plasma systemsettings dialog
2021-06-16 16:58:11 +03:00

251 lines
6.6 KiB
C++

/*
SPDX-FileCopyrightText: 2018 Michail Vourlakos <mvourlakos@gmail.com>
SPDX-License-Identifier: GPL-2.0-or-later
*/
#include "schemecolors.h"
// local
#include <config-latte.h>
#include "../layouts/importer.h"
#include "../tools/commontools.h"
// Qt
#include <QDebug>
#include <QDir>
#include <QFileInfo>
#include <QLatin1String>
// KDE
#include <KConfigGroup>
#include <KDirWatch>
#include <KSharedConfig>
namespace Latte {
namespace WindowSystem {
SchemeColors::SchemeColors(QObject *parent, QString scheme, bool plasmaTheme) :
QObject(parent),
m_basedOnPlasmaTheme(plasmaTheme)
{
QString pSchemeFile = possibleSchemeFile(scheme);
if (QFileInfo(pSchemeFile).exists()) {
setSchemeFile(pSchemeFile);
m_schemeName = schemeName(pSchemeFile);
//! track scheme file for changes
KDirWatch::self()->addFile(m_schemeFile);
connect(KDirWatch::self(), &KDirWatch::created, this, [ & ](const QString & path) {
if (path == m_schemeFile) {
updateScheme();
}
});
connect(KDirWatch::self(), &KDirWatch::dirty, this, [ & ](const QString & path) {
if (path == m_schemeFile) {
updateScheme();
}
});
}
updateScheme();
}
SchemeColors::~SchemeColors()
{
///
}
QColor SchemeColors::backgroundColor() const
{
return m_activeBackgroundColor;
}
QColor SchemeColors::textColor() const
{
return m_activeTextColor;
}
QColor SchemeColors::inactiveBackgroundColor() const
{
return m_inactiveBackgroundColor;
}
QColor SchemeColors::inactiveTextColor() const
{
return m_inactiveTextColor;
}
QColor SchemeColors::highlightColor() const
{
return m_highlightColor;
}
QColor SchemeColors::highlightedTextColor() const
{
return m_highlightedTextColor;
}
QColor SchemeColors::positiveTextColor() const
{
return m_positiveTextColor;
}
QColor SchemeColors::neutralTextColor() const
{
return m_neutralTextColor;
}
QColor SchemeColors::negativeTextColor() const
{
return m_negativeTextColor;
}
QColor SchemeColors::buttonTextColor() const
{
return m_buttonTextColor;
}
QColor SchemeColors::buttonBackgroundColor() const
{
return m_buttonBackgroundColor;
}
QColor SchemeColors::buttonHoverColor() const
{
return m_buttonHoverColor;
}
QColor SchemeColors::buttonFocusColor() const
{
return m_buttonFocusColor;
}
QString SchemeColors::schemeName() const
{
return m_schemeName;
}
QString SchemeColors::SchemeColors::schemeFile() const
{
return m_schemeFile;
}
void SchemeColors::setSchemeFile(QString file)
{
if (m_schemeFile == file) {
return;
}
m_schemeFile = file;
emit schemeFileChanged();
}
QString SchemeColors::possibleSchemeFile(QString scheme)
{
if (scheme.startsWith("/") && scheme.endsWith("colors") && QFileInfo(scheme).exists()) {
return scheme;
}
QString tempScheme = scheme;
if (scheme == QLatin1String("kdeglobals")) {
QString settingsFile = Latte::configPath() + "/kdeglobals";
if (QFileInfo(settingsFile).exists()) {
KSharedConfigPtr filePtr = KSharedConfig::openConfig(settingsFile);
KConfigGroup generalGroup = KConfigGroup(filePtr, "General");
#if KF5_VERSION_MINOR >= 78
tempScheme = generalGroup.readEntry("ColorScheme", "BreezeLight");
#else
tempScheme = generalGroup.readEntry("ColorScheme", "Breeze");
#endif
}
}
QString schemePath = Layouts::Importer::standardPath("color-schemes/" + tempScheme + ".colors");
if (schemePath.isEmpty() || !QFileInfo(schemePath).exists()) {
//! remove all whitespaces and "-" from scheme in order to access correctly its file
QString schemeNameSimplified = tempScheme.simplified().remove(" ").remove("-");
schemePath = Layouts::Importer::standardPath("color-schemes/" + schemeNameSimplified + ".colors");
}
if (QFileInfo(schemePath).exists()) {
return schemePath;
}
return "";
}
QString SchemeColors::schemeName(QString originalFile)
{
if (!(originalFile.startsWith("/") && originalFile.endsWith("colors") && QFileInfo(originalFile).exists())) {
return "";
}
QString fileNameNoExt = originalFile;
int lastSlash = originalFile.lastIndexOf("/");
if (lastSlash >= 0) {
fileNameNoExt.remove(0, lastSlash + 1);
}
if (fileNameNoExt.endsWith(".colors")) {
fileNameNoExt.remove(".colors");
}
KSharedConfigPtr filePtr = KSharedConfig::openConfig(originalFile);
KConfigGroup generalGroup = KConfigGroup(filePtr, "General");
return generalGroup.readEntry("Name", fileNameNoExt);
}
void SchemeColors::updateScheme()
{
if (m_schemeFile.isEmpty() || !QFileInfo(m_schemeFile).exists()) {
return;
}
KSharedConfigPtr filePtr = KSharedConfig::openConfig(m_schemeFile);
KConfigGroup wmGroup = KConfigGroup(filePtr, "WM");
KConfigGroup selGroup = KConfigGroup(filePtr, "Colors:Selection");
//KConfigGroup viewGroup = KConfigGroup(filePtr, "Colors:View");
KConfigGroup windowGroup = KConfigGroup(filePtr, "Colors:Window");
KConfigGroup buttonGroup = KConfigGroup(filePtr, "Colors:Button");
if (!m_basedOnPlasmaTheme) {
m_activeBackgroundColor = wmGroup.readEntry("activeBackground", QColor());
m_activeTextColor = wmGroup.readEntry("activeForeground", QColor());
m_inactiveBackgroundColor = wmGroup.readEntry("inactiveBackground", QColor());
m_inactiveTextColor = wmGroup.readEntry("inactiveForeground", QColor());
} else {
m_activeBackgroundColor = windowGroup.readEntry("BackgroundNormal", QColor());
m_activeTextColor = windowGroup.readEntry("ForegroundNormal", QColor());
m_inactiveBackgroundColor = windowGroup.readEntry("BackgroundAlternate", QColor());
m_inactiveTextColor = windowGroup.readEntry("ForegroundInactive", QColor());
}
m_highlightColor = selGroup.readEntry("BackgroundNormal", QColor());
m_highlightedTextColor = selGroup.readEntry("ForegroundNormal", QColor());
m_positiveTextColor = windowGroup.readEntry("ForegroundPositive", QColor());
m_neutralTextColor = windowGroup.readEntry("ForegroundNeutral", QColor());;
m_negativeTextColor = windowGroup.readEntry("ForegroundNegative", QColor());
m_buttonTextColor = buttonGroup.readEntry("ForegroundNormal", QColor());
m_buttonBackgroundColor = buttonGroup.readEntry("BackgroundNormal", QColor());
m_buttonHoverColor = buttonGroup.readEntry("DecorationHover", QColor());
m_buttonFocusColor = buttonGroup.readEntry("DecorationFocus", QColor());
emit colorsChanged();
}
}
}