diff --git a/effects/coverswitch_config.h b/effects/coverswitch_config.h index ac078114a..a1d589507 100644 --- a/effects/coverswitch_config.h +++ b/effects/coverswitch_config.h @@ -1,59 +1,57 @@ /******************************************************************** KWin - the KDE window manager This file is part of the KDE project. Copyright (C) 2008 Martin Gräßlin . *********************************************************************/ #ifndef KWIN_COVERSWITCH_CONFIG_H #define KWIN_COVERSWITCH_CONFIG_H -#define KDE3_SUPPORT #include -#undef KDE3_SUPPORT #include "ui_coverswitch_config.h" namespace KWin { class CoverSwitchEffectConfigForm : public QWidget, public Ui::CoverSwitchEffectConfigForm { Q_OBJECT public: explicit CoverSwitchEffectConfigForm(QWidget* parent); }; class CoverSwitchEffectConfig : public KCModule { Q_OBJECT public: explicit CoverSwitchEffectConfig(QWidget* parent = 0, const QVariantList& args = QVariantList()); ~CoverSwitchEffectConfig(); public slots: virtual void save(); virtual void load(); virtual void defaults(); private: CoverSwitchEffectConfigForm* m_ui; }; } // namespace #endif diff --git a/effects/desktopgrid_config.h b/effects/desktopgrid_config.h index 01a3ca210..5267f822c 100644 --- a/effects/desktopgrid_config.h +++ b/effects/desktopgrid_config.h @@ -1,53 +1,51 @@ /******************************************************************** KWin - the KDE window manager This file is part of the KDE project. Copyright (C) 2007 Rivo Laks This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation; either version 2 of the License, or (at your option) any later version. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. You should have received a copy of the GNU General Public License along with this program. If not, see . *********************************************************************/ #ifndef KWIN_DESKTOPGRID_CONFIG_H #define KWIN_DESKTOPGRID_CONFIG_H -#define KDE3_SUPPORT #include -#undef KDE3_SUPPORT class QComboBox; class QCheckBox; namespace KWin { class DesktopGridEffectConfig : public KCModule { Q_OBJECT public: explicit DesktopGridEffectConfig(QWidget* parent = 0, const QVariantList& args = QVariantList()); ~DesktopGridEffectConfig(); public slots: virtual void save(); virtual void load(); virtual void defaults(); private: QCheckBox* mSlide; QComboBox* mActivateCombo; }; } // namespace #endif diff --git a/effects/diminactive_config.h b/effects/diminactive_config.h index 927f9db22..a9059e680 100644 --- a/effects/diminactive_config.h +++ b/effects/diminactive_config.h @@ -1,56 +1,54 @@ /******************************************************************** KWin - the KDE window manager This file is part of the KDE project. Copyright (C) 2007 Christian Nitschkowski This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation; either version 2 of the License, or (at your option) any later version. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. You should have received a copy of the GNU General Public License along with this program. If not, see . *********************************************************************/ #ifndef KWIN_DIMINACTIVE_CONFIG_H #define KWIN_DIMINACTIVE_CONFIG_H -#define KDE3_SUPPORT #include -#undef KDE3_SUPPORT #include "ui_diminactive_config.h" namespace KWin { class DimInactiveEffectConfigForm : public QWidget, public Ui::DimInactiveEffectConfigForm { Q_OBJECT public: explicit DimInactiveEffectConfigForm(QWidget* parent); }; class DimInactiveEffectConfig : public KCModule { Q_OBJECT public: explicit DimInactiveEffectConfig(QWidget* parent = 0, const QVariantList& args = QVariantList()); virtual void save(); virtual void load(); virtual void defaults(); private: DimInactiveEffectConfigForm* m_ui; }; } // namespace #endif diff --git a/effects/flipswitch_config.h b/effects/flipswitch_config.h index 633a3abd1..3cdb3d102 100644 --- a/effects/flipswitch_config.h +++ b/effects/flipswitch_config.h @@ -1,58 +1,56 @@ /******************************************************************** KWin - the KDE window manager This file is part of the KDE project. Copyright (C) 2008 Martin Gräßlin . *********************************************************************/ #ifndef KWIN_FLIPSWITCH_CONFIG_H #define KWIN_FLIPSWITCH_CONFIG_H -#define KDE3_SUPPORT #include -#undef KDE3_SUPPORT #include "ui_flipswitch_config.h" namespace KWin { class FlipSwitchEffectConfigForm : public QWidget, public Ui::FlipSwitchEffectConfigForm { Q_OBJECT public: explicit FlipSwitchEffectConfigForm(QWidget* parent); }; class FlipSwitchEffectConfig : public KCModule { Q_OBJECT public: explicit FlipSwitchEffectConfig(QWidget* parent = 0, const QVariantList& args = QVariantList()); ~FlipSwitchEffectConfig(); public slots: virtual void save(); virtual void load(); virtual void defaults(); private: FlipSwitchEffectConfigForm* m_ui; }; } // namespace #endif diff --git a/effects/invert_config.h b/effects/invert_config.h index 227503066..01797b183 100644 --- a/effects/invert_config.h +++ b/effects/invert_config.h @@ -1,51 +1,49 @@ /******************************************************************** KWin - the KDE window manager This file is part of the KDE project. Copyright (C) 2007 Rivo Laks This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation; either version 2 of the License, or (at your option) any later version. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. You should have received a copy of the GNU General Public License along with this program. If not, see . *********************************************************************/ #ifndef KWIN_INVERT_CONFIG_H #define KWIN_INVERT_CONFIG_H -#define KDE3_SUPPORT #include -#undef KDE3_SUPPORT class KShortcutsEditor; namespace KWin { class InvertEffectConfig : public KCModule { Q_OBJECT public: explicit InvertEffectConfig(QWidget* parent = 0, const QVariantList& args = QVariantList()); ~InvertEffectConfig(); public slots: virtual void save(); virtual void load(); virtual void defaults(); private: KShortcutsEditor* mShortcutEditor; }; } // namespace #endif diff --git a/effects/lookingglass_config.h b/effects/lookingglass_config.h index 9a5b79bee..dacc7a450 100644 --- a/effects/lookingglass_config.h +++ b/effects/lookingglass_config.h @@ -1,59 +1,57 @@ /******************************************************************** KWin - the KDE window manager This file is part of the KDE project. Copyright (C) 2007 Christian Nitschkowski This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation; either version 2 of the License, or (at your option) any later version. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. You should have received a copy of the GNU General Public License along with this program. If not, see . *********************************************************************/ #ifndef KWIN_LOOKINGGLASS_CONFIG_H #define KWIN_LOOKINGGLASS_CONFIG_H -#define KDE3_SUPPORT #include -#undef KDE3_SUPPORT #include "ui_lookingglass_config.h" class KActionCollection; namespace KWin { class LookingGlassEffectConfigForm : public QWidget, public Ui::LookingGlassEffectConfigForm { Q_OBJECT public: explicit LookingGlassEffectConfigForm(QWidget* parent); }; class LookingGlassEffectConfig : public KCModule { Q_OBJECT public: explicit LookingGlassEffectConfig(QWidget* parent = 0, const QVariantList& args = QVariantList()); virtual void save(); virtual void load(); virtual void defaults(); private: LookingGlassEffectConfigForm* m_ui; KActionCollection* m_actionCollection; }; } // namespace #endif diff --git a/effects/magnifier_config.h b/effects/magnifier_config.h index 5ebaea3c0..2ab11ee83 100644 --- a/effects/magnifier_config.h +++ b/effects/magnifier_config.h @@ -1,59 +1,57 @@ /******************************************************************** KWin - the KDE window manager This file is part of the KDE project. Copyright (C) 2007 Christian Nitschkowski This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation; either version 2 of the License, or (at your option) any later version. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. You should have received a copy of the GNU General Public License along with this program. If not, see . *********************************************************************/ #ifndef KWIN_MAGNIFIER_CONFIG_H #define KWIN_MAGNIFIER_CONFIG_H -#define KDE3_SUPPORT #include -#undef KDE3_SUPPORT #include "ui_magnifier_config.h" class KActionCollection; namespace KWin { class MagnifierEffectConfigForm : public QWidget, public Ui::MagnifierEffectConfigForm { Q_OBJECT public: explicit MagnifierEffectConfigForm(QWidget* parent); }; class MagnifierEffectConfig : public KCModule { Q_OBJECT public: explicit MagnifierEffectConfig(QWidget* parent = 0, const QVariantList& args = QVariantList()); virtual void save(); virtual void load(); virtual void defaults(); private: MagnifierEffectConfigForm* m_ui; KActionCollection* m_actionCollection; }; } // namespace #endif diff --git a/effects/maketransparent_config.h b/effects/maketransparent_config.h index ed8dca1f8..c8a6d6a1d 100644 --- a/effects/maketransparent_config.h +++ b/effects/maketransparent_config.h @@ -1,59 +1,57 @@ /******************************************************************** KWin - the KDE window manager This file is part of the KDE project. Copyright (C) 2007 Rivo Laks This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation; either version 2 of the License, or (at your option) any later version. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. You should have received a copy of the GNU General Public License along with this program. If not, see . *********************************************************************/ #ifndef KWIN_MAKETRANSPARENT_CONFIG_H #define KWIN_MAKETRANSPARENT_CONFIG_H -#define KDE3_SUPPORT #include -#undef KDE3_SUPPORT #include "ui_maketransparent_config.h" namespace KWin { class MakeTransparentEffectConfigForm : public QWidget, public Ui::MakeTransparentEffectConfigForm { Q_OBJECT public: explicit MakeTransparentEffectConfigForm(QWidget* parent); }; class MakeTransparentEffectConfig : public KCModule { Q_OBJECT public: explicit MakeTransparentEffectConfig(QWidget* parent = 0, const QVariantList& args = QVariantList()); virtual void save(); virtual void load(); virtual void defaults(); public slots: void setIndividualMenuConfig(int); private: MakeTransparentEffectConfigForm* m_ui; }; } // namespace #endif diff --git a/effects/mousemark_config.h b/effects/mousemark_config.h index 575f19b93..ea610a47d 100644 --- a/effects/mousemark_config.h +++ b/effects/mousemark_config.h @@ -1,59 +1,57 @@ /******************************************************************** KWin - the KDE window manager This file is part of the KDE project. Copyright (C) 2007 Christian Nitschkowski This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation; either version 2 of the License, or (at your option) any later version. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. You should have received a copy of the GNU General Public License along with this program. If not, see . *********************************************************************/ #ifndef KWIN_MOUSEMARK_CONFIG_H #define KWIN_MOUSEMARK_CONFIG_H -#define KDE3_SUPPORT #include -#undef KDE3_SUPPORT #include "ui_mousemark_config.h" class KActionCollection; namespace KWin { class MouseMarkEffectConfigForm : public QWidget, public Ui::MouseMarkEffectConfigForm { Q_OBJECT public: explicit MouseMarkEffectConfigForm(QWidget* parent); }; class MouseMarkEffectConfig : public KCModule { Q_OBJECT public: explicit MouseMarkEffectConfig(QWidget* parent = 0, const QVariantList& args = QVariantList()); virtual void save(); virtual void load(); virtual void defaults(); private: MouseMarkEffectConfigForm* m_ui; KActionCollection* m_actionCollection; }; } // namespace #endif diff --git a/effects/presentwindows_config.h b/effects/presentwindows_config.h index 4a5e7ed1d..376ab4dc7 100644 --- a/effects/presentwindows_config.h +++ b/effects/presentwindows_config.h @@ -1,58 +1,56 @@ /******************************************************************** KWin - the KDE window manager This file is part of the KDE project. Copyright (C) 2007 Rivo Laks This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation; either version 2 of the License, or (at your option) any later version. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. You should have received a copy of the GNU General Public License along with this program. If not, see . *********************************************************************/ #ifndef KWIN_PRESENTWINDOWS_CONFIG_H #define KWIN_PRESENTWINDOWS_CONFIG_H -#define KDE3_SUPPORT #include -#undef KDE3_SUPPORT class QCheckBox; class QComboBox; class KShortcutsEditor; namespace KWin { class PresentWindowsEffectConfig : public KCModule { Q_OBJECT public: explicit PresentWindowsEffectConfig(QWidget* parent = 0, const QVariantList& args = QVariantList()); ~PresentWindowsEffectConfig(); virtual void save(); virtual void load(); virtual void defaults(); protected: void addItems(QComboBox* combo); private: QCheckBox* mDrawWindowText; QComboBox* mActivateCombo; QComboBox* mActivateAllCombo; KShortcutsEditor* mShortcutEditor; }; } // namespace #endif diff --git a/effects/shadow_config.h b/effects/shadow_config.h index d311a8310..49e91e8ea 100644 --- a/effects/shadow_config.h +++ b/effects/shadow_config.h @@ -1,58 +1,56 @@ /******************************************************************** KWin - the KDE window manager This file is part of the KDE project. Copyright (C) 2007 Rivo Laks This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation; either version 2 of the License, or (at your option) any later version. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. You should have received a copy of the GNU General Public License along with this program. If not, see . *********************************************************************/ #ifndef KWIN_SHADOW_CONFIG_H #define KWIN_SHADOW_CONFIG_H -#define KDE3_SUPPORT #include -#undef KDE3_SUPPORT class QSpinBox; class QCheckBox; class KColorButton; namespace KWin { class ShadowEffectConfig : public KCModule { Q_OBJECT public: explicit ShadowEffectConfig(QWidget* parent = 0, const QVariantList& args = QVariantList()); ~ShadowEffectConfig(); virtual void save(); virtual void load(); virtual void defaults(); private: QSpinBox* mShadowXOffset; QSpinBox* mShadowYOffset; QSpinBox* mShadowOpacity; QSpinBox* mShadowFuzzyness; QSpinBox* mShadowSize; KColorButton* mShadowColor; QCheckBox* mIntensifyActiveShadow; }; } // namespace #endif diff --git a/effects/sharpen_config.h b/effects/sharpen_config.h index c476d2544..8cf349876 100644 --- a/effects/sharpen_config.h +++ b/effects/sharpen_config.h @@ -1,51 +1,49 @@ /******************************************************************** KWin - the KDE window manager This file is part of the KDE project. Copyright (C) 2007 Rivo Laks This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation; either version 2 of the License, or (at your option) any later version. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. You should have received a copy of the GNU General Public License along with this program. If not, see . *********************************************************************/ #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 diff --git a/effects/showfps_config.h b/effects/showfps_config.h index 90dab6837..6cf4711f3 100644 --- a/effects/showfps_config.h +++ b/effects/showfps_config.h @@ -1,52 +1,50 @@ /******************************************************************** KWin - the KDE window manager This file is part of the KDE project. Copyright (C) 2007 Rivo Laks This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation; either version 2 of the License, or (at your option) any later version. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. You should have received a copy of the GNU General Public License along with this program. If not, see . *********************************************************************/ #ifndef KWIN_SHOWFPS_CONFIG_H #define KWIN_SHOWFPS_CONFIG_H -#define KDE3_SUPPORT #include -#undef KDE3_SUPPORT #include "ui_showfps_config.h" #include "showfps.h" namespace KWin { class ShowFpsEffectConfig : public KCModule { Q_OBJECT public: explicit ShowFpsEffectConfig(QWidget* parent = 0, const QVariantList& args = QVariantList()); ~ShowFpsEffectConfig(); public slots: virtual void save(); virtual void load(); virtual void defaults(); private: Ui::ShowFpsEffectConfigForm *m_ui; }; } // namespace #endif diff --git a/effects/snow_config.h b/effects/snow_config.h index a8aafcc8f..3b2abb748 100644 --- a/effects/snow_config.h +++ b/effects/snow_config.h @@ -1,61 +1,59 @@ /******************************************************************** KWin - the KDE window manager This file is part of the KDE project. Copyright (C) 2007 Martin Gräßlin . *********************************************************************/ #ifndef KWIN_SNOW_CONFIG_H #define KWIN_SNOW_CONFIG_H -#define KDE3_SUPPORT #include -#undef KDE3_SUPPORT #include "ui_snow_config.h" class KActionCollection; namespace KWin { class SnowEffectConfigForm : public QWidget, public Ui::SnowEffectConfigForm { Q_OBJECT public: explicit SnowEffectConfigForm(QWidget* parent); }; class SnowEffectConfig : public KCModule { Q_OBJECT public: explicit SnowEffectConfig(QWidget* parent = 0, const QVariantList& args = QVariantList()); ~SnowEffectConfig(); public slots: virtual void save(); virtual void load(); virtual void defaults(); private: SnowEffectConfigForm* m_ui; KActionCollection* m_actionCollection; }; } // namespace #endif diff --git a/effects/thumbnailaside_config.h b/effects/thumbnailaside_config.h index bf52cadbf..e5f129fd0 100644 --- a/effects/thumbnailaside_config.h +++ b/effects/thumbnailaside_config.h @@ -1,59 +1,57 @@ /******************************************************************** KWin - the KDE window manager This file is part of the KDE project. Copyright (C) 2007 Christian Nitschkowski This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation; either version 2 of the License, or (at your option) any later version. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. You should have received a copy of the GNU General Public License along with this program. If not, see . *********************************************************************/ #ifndef KWIN_THUMBNAILASIDE_CONFIG_H #define KWIN_THUMBNAILASIDE_CONFIG_H -#define KDE3_SUPPORT #include -#undef KDE3_SUPPORT #include "ui_thumbnailaside_config.h" class KActionCollection; namespace KWin { class ThumbnailAsideEffectConfigForm : public QWidget, public Ui::ThumbnailAsideEffectConfigForm { Q_OBJECT public: explicit ThumbnailAsideEffectConfigForm(QWidget* parent); }; class ThumbnailAsideEffectConfig : public KCModule { Q_OBJECT public: explicit ThumbnailAsideEffectConfig(QWidget* parent = 0, const QVariantList& args = QVariantList()); virtual void save(); virtual void load(); virtual void defaults(); private: ThumbnailAsideEffectConfigForm* m_ui; KActionCollection* m_actionCollection; }; } // namespace #endif diff --git a/effects/trackmouse_config.h b/effects/trackmouse_config.h index e3637964a..de2bd54ea 100644 --- a/effects/trackmouse_config.h +++ b/effects/trackmouse_config.h @@ -1,47 +1,45 @@ /******************************************************************** KWin - the KDE window manager This file is part of the KDE project. Copyright (C) 2007 Rivo Laks This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation; either version 2 of the License, or (at your option) any later version. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. You should have received a copy of the GNU General Public License along with this program. If not, see . *********************************************************************/ #ifndef KWIN_TRACKMOUSE_CONFIG_H #define KWIN_TRACKMOUSE_CONFIG_H -#define KDE3_SUPPORT #include -#undef KDE3_SUPPORT namespace KWin { class TrackMouseEffectConfig : public KCModule { Q_OBJECT public: explicit TrackMouseEffectConfig(QWidget* parent = 0, const QVariantList& args = QVariantList()); ~TrackMouseEffectConfig(); public slots: virtual void save(); virtual void load(); virtual void defaults(); }; } // namespace #endif diff --git a/effects/videorecord_config.h b/effects/videorecord_config.h index e6ce824da..dd0468cbe 100644 --- a/effects/videorecord_config.h +++ b/effects/videorecord_config.h @@ -1,53 +1,51 @@ /******************************************************************** KWin - the KDE window manager This file is part of the KDE project. Copyright (C) 2007 Rivo Laks This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation; either version 2 of the License, or (at your option) any later version. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. You should have received a copy of the GNU General Public License along with this program. If not, see . *********************************************************************/ #ifndef KWIN_VIDEORECORD_CONFIG_H #define KWIN_VIDEORECORD_CONFIG_H -#define KDE3_SUPPORT #include -#undef KDE3_SUPPORT class KShortcutsEditor; class KUrlRequester; namespace KWin { class VideoRecordEffectConfig : public KCModule { Q_OBJECT public: explicit VideoRecordEffectConfig(QWidget* parent = 0, const QVariantList& args = QVariantList()); ~VideoRecordEffectConfig(); public slots: virtual void save(); virtual void load(); virtual void defaults(); private: KShortcutsEditor* mShortcutEditor; KUrlRequester *saveVideo; }; } // namespace #endif diff --git a/effects/wobblywindows_config.h b/effects/wobblywindows_config.h index 3a455d289..9b749560e 100644 --- a/effects/wobblywindows_config.h +++ b/effects/wobblywindows_config.h @@ -1,55 +1,53 @@ /******************************************************************** KWin - the KDE window manager This file is part of the KDE project. Copyright (C) 2008 Cédric Borgese This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation; either version 2 of the License, or (at your option) any later version. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. You should have received a copy of the GNU General Public License along with this program. If not, see . *********************************************************************/ #ifndef KWIN_WOBBLY_CONFIG_H #define KWIN_WOBBLY_CONFIG_H -#define KDE3_SUPPORT #include -#undef KDE3_SUPPORT #include "ui_wobblywindows_config.h" namespace KWin { class WobblyWindowsEffectConfig : public KCModule { Q_OBJECT public: explicit WobblyWindowsEffectConfig(QWidget* parent = 0, const QVariantList& args = QVariantList()); ~WobblyWindowsEffectConfig(); public slots: virtual void save(); virtual void load(); virtual void defaults(); private slots: void slotSlWobblyness(int); private: ::Ui::WobblyWindowsEffectConfigForm m_ui; }; } // namespace #endif diff --git a/effects/zoom_config.h b/effects/zoom_config.h index 5cfb43c1c..8045d5a01 100644 --- a/effects/zoom_config.h +++ b/effects/zoom_config.h @@ -1,51 +1,49 @@ /******************************************************************** KWin - the KDE window manager This file is part of the KDE project. Copyright (C) 2007 Rivo Laks This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation; either version 2 of the License, or (at your option) any later version. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. You should have received a copy of the GNU General Public License along with this program. If not, see . *********************************************************************/ #ifndef KWIN_ZOOM_CONFIG_H #define KWIN_ZOOM_CONFIG_H -#define KDE3_SUPPORT #include -#undef KDE3_SUPPORT class KShortcutsEditor; namespace KWin { class ZoomEffectConfig : public KCModule { Q_OBJECT public: explicit ZoomEffectConfig(QWidget* parent = 0, const QVariantList& args = QVariantList()); ~ZoomEffectConfig(); public slots: virtual void save(); virtual void load(); virtual void defaults(); private: KShortcutsEditor* mShortcutEditor; }; } // namespace #endif