/***************************************************************** KWin - the KDE window manager This file is part of the KDE project. Copyright (C) 2007 Rivo Laks You can Freely distribute this program under the GNU General Public License. See the file "COPYING" for the exact licensing terms. ******************************************************************/ #ifndef KWIN_SHARPEN_CONFIG_H #define KWIN_SHARPEN_CONFIG_H #define KDE3_SUPPORT #include #undef KDE3_SUPPORT class KShortcutsEditor; namespace KWin { class SharpenEffectConfig : public KCModule { Q_OBJECT public: explicit SharpenEffectConfig(QWidget* parent = 0, const QVariantList& args = QVariantList()); ~SharpenEffectConfig(); public slots: virtual void save(); virtual void load(); virtual void defaults(); private: KShortcutsEditor* mShortcutEditor; }; } // namespace #endif