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