File indexing completed on 2024-11-10 04:57:12

0001 /*
0002     SPDX-FileCopyrightText: 2021 Vlad Zahorodnii <vlad.zahorodnii@kde.org>
0003 
0004     SPDX-License-Identifier: GPL-2.0-or-later
0005 */
0006 
0007 #pragma once
0008 
0009 #include <KCModule>
0010 
0011 #include "ui_windowvieweffectkcm.h"
0012 
0013 namespace KWin
0014 {
0015 
0016 class WindowViewEffectConfig : public KCModule
0017 {
0018     Q_OBJECT
0019 
0020 public:
0021     explicit WindowViewEffectConfig(QObject *parent, const KPluginMetaData &data);
0022 
0023 public Q_SLOTS:
0024     void save() override;
0025     void defaults() override;
0026 
0027 private:
0028     ::Ui::WindowViewEffectConfig ui;
0029 };
0030 
0031 } // namespace KWin