You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
51 lines
987 B
51 lines
987 B
15 years ago
|
/* vi: ts=8 sts=4 sw=4
|
||
|
*
|
||
|
* This file is part of the KDE project, module kcmdisplay.
|
||
|
* Copyright (C) 1999 Geert Jansen <g.t.jansen@stud.tue.nl>
|
||
|
*
|
||
|
* You can Freely distribute this program under the GNU General Public
|
||
|
* License. See the file "COPYING" for the exact licensing terms.
|
||
|
*/
|
||
|
|
||
|
#ifndef __Bgnd_h_Included__
|
||
|
#define __Bgnd_h_Included__
|
||
|
|
||
14 years ago
|
#include <tqobject.h>
|
||
|
#include <tqwidget.h>
|
||
15 years ago
|
|
||
|
|
||
|
class KSimpleConfig;
|
||
|
class BGDialog;
|
||
|
class KGlobalBackgroundSettings;
|
||
14 years ago
|
class TQCheckBox;
|
||
|
class TQLabel;
|
||
15 years ago
|
|
||
14 years ago
|
class KBackground: public TQWidget
|
||
15 years ago
|
{
|
||
|
Q_OBJECT
|
||
|
public:
|
||
14 years ago
|
KBackground(TQWidget *parent=0, const char *name=0);
|
||
15 years ago
|
~KBackground();
|
||
|
|
||
|
void load();
|
||
|
void save();
|
||
|
void defaults();
|
||
|
void makeReadOnly();
|
||
|
signals:
|
||
|
void changed(bool);
|
||
|
|
||
|
private slots:
|
||
|
void slotEnableChanged();
|
||
|
private:
|
||
|
void init();
|
||
|
void apply();
|
||
|
|
||
14 years ago
|
TQCheckBox *m_pCBEnable;
|
||
|
TQLabel *m_pMLabel;
|
||
15 years ago
|
KSimpleConfig *m_simpleConf;
|
||
|
BGDialog *m_background;
|
||
|
};
|
||
|
|
||
|
|
||
|
#endif // __Bgnd_h_Included__
|