You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
37 lines
608 B
37 lines
608 B
/* |
|
* 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
|
|
|