add more spacing
[personal-kdebase.git] / workspace / kwin / effects / wobblywindows_config.h
blob8324703db555642ad001d158948d8a34fd34ba12
1 /********************************************************************
2 KWin - the KDE window manager
3 This file is part of the KDE project.
5 Copyright (C) 2008 Cédric Borgese <cedric.borgese@gmail.com>
6 Copyright (C) 2008 Lucas Murray <lmurray@undefinedfire.com>
8 This program is free software; you can redistribute it and/or modify
9 it under the terms of the GNU General Public License as published by
10 the Free Software Foundation; either version 2 of the License, or
11 (at your option) any later version.
13 This program is distributed in the hope that it will be useful,
14 but WITHOUT ANY WARRANTY; without even the implied warranty of
15 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
16 GNU General Public License for more details.
18 You should have received a copy of the GNU General Public License
19 along with this program. If not, see <http://www.gnu.org/licenses/>.
20 *********************************************************************/
22 #ifndef KWIN_WOBBLY_CONFIG_H
23 #define KWIN_WOBBLY_CONFIG_H
25 #include <kcmodule.h>
27 #include "ui_wobblywindows_config.h"
28 #include "wobblywindows.h"
31 namespace KWin
34 class WobblyWindowsEffectConfig : public KCModule
36 Q_OBJECT
37 public:
38 explicit WobblyWindowsEffectConfig(QWidget* parent = 0, const QVariantList& args = QVariantList());
39 ~WobblyWindowsEffectConfig();
41 public slots:
42 virtual void save();
43 virtual void load();
44 virtual void defaults();
46 private slots:
47 void advancedChanged();
48 void wobblinessChanged();
50 private:
51 ::Ui::WobblyWindowsEffectConfigForm m_ui;
54 } // namespace
56 #endif