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.
32 lines
641 B
32 lines
641 B
/* |
|
KWin - the KDE window manager |
|
This file is part of the KDE project. |
|
|
|
SPDX-FileCopyrightText: 2020 Cyril Rossi <cyril.rossi@enioka.com> |
|
|
|
SPDX-License-Identifier: GPL-2.0-or-later |
|
*/ |
|
|
|
#ifndef KWINCOMPOSITINGDATA_H |
|
#define KWINCOMPOSITINGDATA_H |
|
|
|
#include <QObject> |
|
|
|
#include "kcmoduledata.h" |
|
|
|
class KWinCompositingSetting; |
|
|
|
class KWinCompositingData : public KCModuleData |
|
{ |
|
Q_OBJECT |
|
|
|
public: |
|
explicit KWinCompositingData(QObject *parent = nullptr, const QVariantList &args = QVariantList()); |
|
|
|
bool isDefaults() const override; |
|
|
|
private: |
|
KWinCompositingSetting *m_settings; |
|
}; |
|
|
|
#endif // KWINCOMPOSITINGDATA_H
|
|
|