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
752 B
32 lines
752 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 |
|
*/ |
|
|
|
#include "kwincompositingdata.h" |
|
|
|
#include "kwincompositing_setting.h" |
|
|
|
KWinCompositingData::KWinCompositingData(QObject *parent, const QVariantList &args) |
|
: KCModuleData(parent, args) |
|
, m_settings(new KWinCompositingSetting(this)) |
|
|
|
{ |
|
} |
|
|
|
bool KWinCompositingData::isDefaults() const |
|
{ |
|
bool defaults = true; |
|
for (const auto &item : m_settings->items()) { |
|
if (item->key() != QStringLiteral("OpenGLIsUnsafe")) { |
|
defaults &= item->isDefault(); |
|
} |
|
} |
|
return defaults; |
|
} |
|
|
|
#include "kwincompositingdata.moc"
|
|
|