mirror of
https://gitgud.io/wackyideas/aerothemeplasma.git
synced 2024-08-15 00:43:43 +00:00
38 lines
673 B
C++
38 lines
673 B
C++
/*
|
|
* SPDX-FileCopyrightText: 2014 Hugo Pereira Da Costa <hugo.pereira@free.fr>
|
|
*
|
|
* SPDX-License-Identifier: GPL-2.0-or-later
|
|
*/
|
|
|
|
#pragma once
|
|
|
|
#include "breezestyleconfig.h"
|
|
|
|
#include <KCModule>
|
|
|
|
namespace Breeze
|
|
{
|
|
//* configuration module
|
|
class ConfigurationModule : public KCModule
|
|
{
|
|
Q_OBJECT
|
|
|
|
public:
|
|
#if QT_VERSION >= QT_VERSION_CHECK(6, 0, 0)
|
|
ConfigurationModule(QObject *parent, const KPluginMetaData &data);
|
|
#else
|
|
ConfigurationModule(QWidget *parent, const QVariantList &args);
|
|
#endif
|
|
|
|
public Q_SLOTS:
|
|
|
|
void defaults() override;
|
|
void load() override;
|
|
void save() override;
|
|
|
|
private:
|
|
//* configuration
|
|
StyleConfig *m_config;
|
|
};
|
|
|
|
}
|