diff options
Diffstat (limited to 'kcontrol/kdm/background.h')
-rw-r--r-- | kcontrol/kdm/background.h | 50 |
1 files changed, 0 insertions, 50 deletions
diff --git a/kcontrol/kdm/background.h b/kcontrol/kdm/background.h deleted file mode 100644 index 2e5182b16..000000000 --- a/kcontrol/kdm/background.h +++ /dev/null @@ -1,50 +0,0 @@ -/* vi: ts=8 sts=4 sw=4 - * - * This file is part of the KDE project, module kcmdisplay. - * Copyright (C) 1999 Geert Jansen <[email protected]> - * - * 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__ - -#include <tqobject.h> -#include <tqwidget.h> - - -class KSimpleConfig; -class BGDialog; -class KGlobalBackgroundSettings; -class TQCheckBox; -class TQLabel; - -class KBackground: public TQWidget -{ - Q_OBJECT -public: - KBackground(TQWidget *parent=0, const char *name=0); - ~KBackground(); - - void load(); - void save(); - void defaults(); - void makeReadOnly(); -signals: - void changed(bool); - -private slots: - void slotEnableChanged(); -private: - void init(); - void apply(); - - TQCheckBox *m_pCBEnable; - TQLabel *m_pMLabel; - KSimpleConfig *m_simpleConf; - BGDialog *m_background; -}; - - -#endif // __Bgnd_h_Included__ |