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