00001
00002
00003
00004
00005
00006
00007
00008
00009
00010 #ifndef _KDE_DEFAULT_CONFIG_H
00011 #define _KDE_DEFAULT_CONFIG_H
00012
00013 #include <tqcheckbox.h>
00014 #include <tqgroupbox.h>
00015 #include <kconfig.h>
00016 #include <tqhbox.h>
00017 #include <tqlabel.h>
00018 #include <tqvbox.h>
00019
00020 class KDEDefaultConfig: public QObject
00021 {
00022 Q_OBJECT
00023
00024 public:
00025 KDEDefaultConfig( KConfig* conf, TQWidget* parent );
00026 ~KDEDefaultConfig();
00027
00028
00029 signals:
00030 void changed();
00031
00032 public slots:
00033 void load( KConfig* conf );
00034 void save( KConfig* conf );
00035 void defaults();
00036
00037 protected slots:
00038 void slotSelectionChanged();
00039
00040 private:
00041 TQCheckBox* cbShowStipple;
00042 TQCheckBox* cbShowGrabBar;
00043 TQCheckBox* cbUseGradients;
00044 TQVBox* gb;
00045 bool highcolor;
00046 };
00047
00048 #endif
00049