plastik/config/config.h
00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015
00016
00017
00018
00019
00020
00021
00022
00023 #ifndef KNIFTYCONFIG_H
00024 #define KNIFTYCONFIG_H
00025
00026 #include <qobject.h>
00027
00028 class QButtonGroup;
00029 class QGroupBox;
00030 class KConfig;
00031 class ConfigDialog;
00032
00033 class PlastikConfig : public QObject
00034 {
00035 Q_OBJECT
00036 public:
00037 PlastikConfig(KConfig* config, QWidget* parent);
00038 ~PlastikConfig();
00039
00040 signals:
00041 void changed();
00042
00043 public slots:
00044 void load(KConfig *config);
00045 void save(KConfig *config);
00046 void defaults();
00047
00048 private:
00049 KConfig *m_config;
00050 ConfigDialog *m_dialog;
00051 };
00052
00053 #endif // KNIFTYCONFIG_H
This file is part of the documentation for kwin Library Version 3.4.1.