File indexing completed on 2024-11-10 04:57:02
0001 /* 0002 KWin - the KDE window manager 0003 This file is part of the KDE project. 0004 0005 SPDX-FileCopyrightText: 2009 Martin Gräßlin <mgraesslin@kde.org> 0006 0007 SPDX-License-Identifier: GPL-2.0-or-later 0008 */ 0009 0010 #pragma once 0011 0012 #include <kcmodule.h> 0013 0014 #include "ui_magiclamp_config.h" 0015 0016 namespace KWin 0017 { 0018 class MagicLampEffectConfig : public KCModule 0019 { 0020 Q_OBJECT 0021 public: 0022 explicit MagicLampEffectConfig(QObject *parent, const KPluginMetaData &data); 0023 0024 public Q_SLOTS: 0025 void save() override; 0026 0027 private: 0028 Ui::MagicLampEffectConfigForm m_ui; 0029 }; 0030 0031 } // namespace