KWin
Loading...
Searching...
No Matches
auroraeconfig.h
Go to the documentation of this file.
1/*
2 SPDX-FileCopyrightText: 2009, 2010, 2012 Martin Gräßlin <mgraesslin@kde.org>
3
4 SPDX-License-Identifier: GPL-2.0-or-later
5*/
6
7#ifndef AURORAECONFIG_H
8#define AURORAECONFIG_H
9
10#include <KCModule>
11#include <KConfigLoader>
12
13namespace Aurorae
14{
15
16class ConfigurationModule : public KCModule
17{
18 Q_OBJECT
19public:
20 ConfigurationModule(QObject *parent, const KPluginMetaData &data, const QVariantList &args);
21
22private:
23 void init();
24 void initSvg();
25 void initQml();
26 QString m_theme;
27 KConfigLoader *m_skeleton = nullptr;
28 int m_buttonSize;
29};
30
31}
32
33#endif // AURORAECONFIG_H
ConfigurationModule(QObject *parent, const KPluginMetaData &data, const QVariantList &args)