config.h
00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011 #ifndef _KDE_DEFAULT_CONFIG_H
00012 #define _KDE_DEFAULT_CONFIG_H
00013
00014 #include <qcheckbox.h>
00015 #include <qgroupbox.h>
00016 #include <kconfig.h>
00017 #include <qhbox.h>
00018 #include <qlabel.h>
00019 #include <qvbox.h>
00020
00021 class KDEDefaultConfig: public QObject
00022 {
00023 Q_OBJECT
00024
00025 public:
00026 KDEDefaultConfig( KConfig* conf, QWidget* parent );
00027 ~KDEDefaultConfig();
00028
00029
00030 signals:
00031 void changed();
00032
00033 public slots:
00034 void load( KConfig* conf );
00035 void save( KConfig* conf );
00036 void defaults();
00037
00038 protected slots:
00039 void slotSelectionChanged();
00040
00041 private:
00042 QCheckBox* cbShowStipple;
00043 QCheckBox* cbShowGrabBar;
00044 QCheckBox* cbUseGradients;
00045 QVBox* gb;
00046 bool highcolor;
00047 };
00048
00049 #endif
00050
This file is part of the documentation for kwin Library Version 3.2.2.