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

0001 /*
0002     SPDX-FileCopyrightText: 2022 Marco Martin <mart@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_tileseditoreffectkcm.h"
0012 
0013 namespace KWin
0014 {
0015 
0016 class TilesEditorEffectConfig : public KCModule
0017 {
0018     Q_OBJECT
0019 
0020 public:
0021     explicit TilesEditorEffectConfig(QObject *parent, const KPluginMetaData &data);
0022 
0023 public Q_SLOTS:
0024     void save() override;
0025     void defaults() override;
0026 
0027 private:
0028     ::Ui::TilesEditorEffectConfig ui;
0029 };
0030 
0031 } // namespace KWin