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.
31 lines
517 B
31 lines
517 B
/* |
|
SPDX-FileCopyrightText: 2021 Vlad Zahorodnii <vlad.zahorodnii@kde.org> |
|
|
|
SPDX-License-Identifier: GPL-2.0-or-later |
|
*/ |
|
|
|
#pragma once |
|
|
|
#include <KCModule> |
|
|
|
#include "ui_windowvieweffectkcm.h" |
|
|
|
namespace KWin |
|
{ |
|
|
|
class WindowViewEffectConfig : public KCModule |
|
{ |
|
Q_OBJECT |
|
|
|
public: |
|
explicit WindowViewEffectConfig(QObject *parent, const KPluginMetaData &data); |
|
|
|
public Q_SLOTS: |
|
void save() override; |
|
void defaults() override; |
|
|
|
private: |
|
::Ui::WindowViewEffectConfig ui; |
|
}; |
|
|
|
} // namespace KWin
|
|
|