0420048405
Fix Rendering backend combobox that was not highlighted. Particular case due to OpenGLIsUnsafe kcfg entry which is an indicating flag and not a configurable setting.
32 lines
641 B
C++
32 lines
641 B
C++
/*
|
|
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
|