mirror of
https://invent.kde.org/marcoa/shift-shell.git
synced 2026-04-26 14:23:09 +00:00
Use a config overlay for applications-blacklistrc, so that new options that we add are updated in installs. This brings it inline with all of the other config files we manage, and so I also remove unused functionality that we used in the past to "save" and restore config files.
47 lines
1.5 KiB
C++
47 lines
1.5 KiB
C++
// SPDX-FileCopyrightText: 2023 Devin Lin <devin@kde.org>
|
|
// SPDX-FileCopyrightText: 2024 Luis Büchi <luis.buechi@kdemail.net>
|
|
// SPDX-License-Identifier: GPL-2.0-or-later
|
|
|
|
#pragma once
|
|
|
|
#include <QObject>
|
|
|
|
#include <KConfigGroup>
|
|
#include <KConfigWatcher>
|
|
#include <KSharedConfig>
|
|
|
|
class Settings : public QObject
|
|
{
|
|
Q_OBJECT
|
|
|
|
public:
|
|
Settings(QObject *parent = nullptr);
|
|
static Settings &self();
|
|
|
|
// apply the configuration
|
|
void applyConfiguration();
|
|
|
|
private:
|
|
// loads the saved configuration, so it can be restored on desktop
|
|
void loadSavedConfiguration();
|
|
|
|
// applies our mobile configuration
|
|
void applyMobileConfiguration();
|
|
|
|
void writeKeys(const QString &fileName, KSharedConfig::Ptr &config, const QMap<QString, QMap<QString, QVariant>> &settings);
|
|
|
|
void loadKeys(const QString &fileName, KSharedConfig::Ptr &config, const QMap<QString, QMap<QString, QVariant>> &settings);
|
|
void saveConfigSetting(const QString &fileName, const QString &group, const QString &key, const QVariant value);
|
|
const QString loadSavedConfigSetting(KSharedConfig::Ptr &config, const QString &fileName, const QString &group, const QString &key, bool write = true);
|
|
|
|
KSharedConfig::Ptr kwinrcConfig() const;
|
|
void reloadKWinConfig();
|
|
|
|
// whether this is Plasma Mobile
|
|
bool m_isMobilePlatform;
|
|
|
|
KSharedConfig::Ptr m_mobileConfig;
|
|
|
|
// For legacy upgrade purposes
|
|
KSharedConfig::Ptr m_originalKdeglobalsConfig; // (~/.config/kdeglobals)
|
|
};
|