calamares/src/modules/plasmalnf/Config.h

77 lines
2.0 KiB
C
Raw Normal View History

/* === This file is part of Calamares - <https://calamares.io> ===
*
* SPDX-FileCopyrightText: 2020 Adriaan de Groot <groot@kde.org>
* SPDX-License-Identifier: GPL-3.0-or-later
*
* Calamares is Free Software: see the License-Identifier above.
*
*/
#ifndef PLASMALNF_CONFIG_H
#define PLASMALNF_CONFIG_H
#include "Job.h"
#include "ThemeInfo.h"
#include <QObject>
class Config : public QObject
{
Q_OBJECT
Q_PROPERTY( QString preselectedTheme READ preselectedTheme CONSTANT )
Q_PROPERTY( QString theme READ theme WRITE setTheme NOTIFY themeChanged )
Q_PROPERTY( QAbstractItemModel* themeModel READ themeModel CONSTANT )
public:
Config( QObject* parent = nullptr );
virtual ~Config() override = default; // QObject cleans up the model pointer
void setConfigurationMap( const QVariantMap& );
Calamares::JobList createJobs() const;
/** @brief Full path to the lookandfeeltool (if it exists)
*
* This can be configured, or defaults to `lookandfeeltool` to find
* it in $PATH.
*/
QString lnfToolPath() const { return m_lnfPath; }
/** @brief For OEM mode, the name of the (current) live user
*
*/
QString liveUser() const { return m_liveUser; }
/** @brief The id (in reverse-DNS notation) of the current theme.
*/
QString theme() const { return m_themeId; }
/** @brief The theme we start with
*
* This can be configured, or is taken from the live environment
* if the environment is (also) KDE Plasma.
*/
QString preselectedTheme() const { return m_preselectThemeId; }
/** @brief The (list) model of available themes.
*/
QAbstractItemModel* themeModel() const { return m_themeModel; }
public slots:
void setTheme( const QString& id );
signals:
void themeChanged( const QString& id );
private:
QString m_lnfPath; // Path to the lnf tool
QString m_liveUser; // Name of the live user (for OEM mode)
QString m_preselectThemeId;
QString m_themeId; // Id of selected theme
ThemesModel* m_themeModel = nullptr;
};
#endif