1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79
|
/*
SPDX-FileCopyrightText: 2017 Kai Uwe Broulik <kde@privat.broulik.de>
SPDX-FileCopyrightText: 2017 David Edmundson <davidedmundson@kde.org>
SPDX-License-Identifier: MIT
*/
#pragma once
#include "abstractbrowserplugin.h"
#include <QString>
struct EnvironmentDescription {
QString applicationName;
QString applicationDisplayName;
QString desktopFileName;
QString organizationDomain;
QString organizationName;
QString iconName;
};
namespace TaskManager
{
class WindowTasksModel;
}
/*
* This class manages the extension's settings (so that settings in the browser
* propagate to our extension) and also detects the environment the host is run
* in (e.g. whether we're started by Firefox, Chrome, Chromium, or Opera)
*/
class Settings : public AbstractBrowserPlugin
{
Q_OBJECT
public:
static Settings &self();
enum class Environment {
Unknown,
Chrome,
Chromium,
Firefox,
Opera,
Vivaldi,
Brave,
Edge,
};
Q_ENUM(Environment)
void handleData(const QString &event, const QJsonObject &data) override;
QJsonObject handleData(int serial, const QString &event, const QJsonObject &data) override;
Environment environment() const;
bool pluginEnabled(const QString &subsystem) const;
QJsonObject settingsForPlugin(const QString &subsystem) const;
Q_SIGNALS:
void changed(const QJsonObject &settings);
private:
Settings();
~Settings() override = default;
bool setEnvironmentFromTasksModelIndex(const QModelIndex &idx);
void setEnvironmentFromExtensionMessage(const QJsonObject &data);
static const QMap<Environment, QString> environmentNames;
static const QMap<Environment, EnvironmentDescription> environmentDescriptions;
Environment m_environment = Environment::Unknown;
EnvironmentDescription m_currentEnvironment;
QJsonObject m_settings;
TaskManager::WindowTasksModel *m_tasksModel;
};
|