summaryrefslogtreecommitdiffstats
path: root/kwin-styles/cde/config/config.h
blob: 723d7b955d2cf5bf4ac57e50b438ead052793357 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
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