summaryrefslogtreecommitdiffstats
path: root/kcontrol/background/main.h
blob: 79e72d5a356a4dcba6aef63886d6672b8abf5785 (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
/*
 *
 * 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__

#include <tdecmodule.h>

class TDEConfig;
class BGDialog;

/**
 * The Desktop/Background tab in kcontrol.
 */
class KBackground: public TDECModule
{
    Q_OBJECT

public:
    KBackground(TQWidget *parent, const char *name, const TQStringList &);
    ~KBackground();

    virtual void load();
    virtual void load( bool useDefaults );
    virtual void save();
    virtual void defaults();

private:
    BGDialog      *m_base;
    TDEConfig       *m_pConfig;
};


#endif // __Bgnd_h_Included__