summaryrefslogtreecommitdiffstats
path: root/kcontrol/screensaver/kswidget.h
blob: 11ec33a74ff1ecd581e37af287c091a715c34f5c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
#ifndef KSWIDGET_H
#define KSWIDGET_H

#include <qxembed.h>
#include <X11/X.h>

class KSWidget : public QXEmbed
{
    Q_OBJECT
public:
    KSWidget( TQWidget *parent = NULL, const char* name = NULL, int flags = 0 );
    virtual ~KSWidget();
private:
    Colormap colormap;
};

#endif