diff options
author | toma <toma@283d02a7-25f6-0310-bc7c-ecb5cbfe19da> | 2009-11-25 17:56:58 +0000 |
---|---|---|
committer | toma <toma@283d02a7-25f6-0310-bc7c-ecb5cbfe19da> | 2009-11-25 17:56:58 +0000 |
commit | 8b2aa1b5301ab60368a03e36df4ff5216726e87d (patch) | |
tree | 36163d4ee667c23b5cf232df2f3004cd0a76202a /kwin-styles/cde/config/config.h | |
download | tdeartwork-8b2aa1b5301ab60368a03e36df4ff5216726e87d.tar.gz tdeartwork-8b2aa1b5301ab60368a03e36df4ff5216726e87d.zip |
Copy the KDE 3.5 branch to branches/trinity for new KDE 3.5 features.
BUG:215923
git-svn-id: svn://anonsvn.kde.org/home/kde/branches/trinity/kdeartwork@1054174 283d02a7-25f6-0310-bc7c-ecb5cbfe19da
Diffstat (limited to 'kwin-styles/cde/config/config.h')
-rw-r--r-- | kwin-styles/cde/config/config.h | 51 |
1 files changed, 51 insertions, 0 deletions
diff --git a/kwin-styles/cde/config/config.h b/kwin-styles/cde/config/config.h new file mode 100644 index 00000000..723d7b95 --- /dev/null +++ b/kwin-styles/cde/config/config.h @@ -0,0 +1,51 @@ +#ifndef __KDE_CDECONFIG_H +#define __KDE_CDECONFIG_H + +#include <qcheckbox.h> +#include <qgroupbox.h> +#include <qbuttongroup.h> +#include <qlabel.h> +#include <qradiobutton.h> +#include <qhbox.h> +#include <kconfig.h> + +class QCheckBox; +class QGroupBox; +class QVBox; +class QLabel; +class QRadioButton; + +class CdeConfig: public QObject +{ + Q_OBJECT + + public: + CdeConfig( KConfig* conf, QWidget* parent ); + ~CdeConfig(); + + // These public signals/slots work similar to KCM modules + signals: + void changed(); + + public slots: + void load( KConfig* conf ); + void save( KConfig* conf ); + void defaults(); + + protected slots: + void slotSelectionChanged(); // Internal use + void slotSelectionChanged( int ); + + private: + KConfig* cdeConfig; + QCheckBox* cbColorBorder; +// QCheckBox* cbTitlebarButton; + QHBox* groupBox; + QGroupBox* gbSlider; + QButtonGroup* bgAlign; +}; + + +#endif + +// vim: ts=4 |