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