2001-05-26 02:34:47 +00:00
|
|
|
/*
|
2001-06-04 09:51:23 +00:00
|
|
|
*
|
|
|
|
* This file contains the quartz configuration widget
|
|
|
|
*
|
|
|
|
* Copyright (c) 2001
|
|
|
|
* Karol Szwed <gallium@kde.org>
|
|
|
|
* http://gallium.n3.net/
|
|
|
|
*/
|
2001-05-26 02:34:47 +00:00
|
|
|
|
|
|
|
#ifndef __KDE_QUARTZCONFIG_H
|
|
|
|
#define __KDE_QUARTZCONFIG_H
|
|
|
|
|
2006-05-11 08:04:23 +00:00
|
|
|
#include <QCheckBox>
|
2005-09-18 14:52:14 +00:00
|
|
|
|
2001-05-26 02:34:47 +00:00
|
|
|
#include <kconfig.h>
|
2005-09-18 14:52:14 +00:00
|
|
|
#include <kvbox.h>
|
2001-05-26 02:34:47 +00:00
|
|
|
|
|
|
|
class QuartzConfig: public QObject
|
|
|
|
{
|
|
|
|
Q_OBJECT
|
|
|
|
|
|
|
|
public:
|
|
|
|
QuartzConfig( KConfig* conf, QWidget* parent );
|
|
|
|
~QuartzConfig();
|
|
|
|
|
|
|
|
// 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
|
|
|
|
|
|
|
|
private:
|
2001-06-04 09:51:23 +00:00
|
|
|
KConfig* quartzConfig;
|
2001-05-26 02:34:47 +00:00
|
|
|
QCheckBox* cbColorBorder;
|
2005-01-14 17:56:02 +00:00
|
|
|
QCheckBox* cbExtraSmall;
|
2005-09-18 14:52:14 +00:00
|
|
|
KVBox* gb;
|
2001-05-26 02:34:47 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
#endif
|
|
|
|
|
|
|
|
// vim: ts=4
|