63b58f6147
ATM you can toggle them on/off, but KWin part isn't done yet, so KWin doesn't care about your changes yet. You can try it with 'kcmshell kwineffects' svn path=/trunk/KDE/kdebase/workspace/; revision=668251
53 lines
1.1 KiB
C++
53 lines
1.1 KiB
C++
/*****************************************************************
|
|
KWin - the KDE window manager
|
|
This file is part of the KDE project.
|
|
|
|
Copyright (C) 2007 Rivo Laks <rivolaks@hot.ee>
|
|
|
|
You can Freely distribute this program under the GNU General Public
|
|
License. See the file "COPYING" for the exact licensing terms.
|
|
******************************************************************/
|
|
|
|
|
|
#ifndef __MAIN_H__
|
|
#define __MAIN_H__
|
|
|
|
#include <kcmodule.h>
|
|
|
|
#include <ksharedconfig.h>
|
|
#include <QStringList>
|
|
#include <QHash>
|
|
#include <QSet>
|
|
|
|
class KListWidget;
|
|
class QListWidgetItem;
|
|
class KPluginSelector;
|
|
class QLabel;
|
|
class QCheckBox;
|
|
|
|
namespace KWin
|
|
{
|
|
|
|
class KWinEffectsConfig : public KCModule
|
|
{
|
|
Q_OBJECT
|
|
public:
|
|
KWinEffectsConfig(QWidget *parent, const QStringList &args);
|
|
virtual ~KWinEffectsConfig();
|
|
|
|
virtual QString quickHelp() const;
|
|
|
|
public slots:
|
|
virtual void load();
|
|
virtual void save();
|
|
virtual void defaults();
|
|
|
|
|
|
private:
|
|
KSharedConfigPtr mKWinConfig;
|
|
KPluginSelector* mPluginSelector;
|
|
};
|
|
|
|
} // namespace
|
|
|
|
#endif
|