summaryrefslogtreecommitdiffstats
path: root/kcontrol/screensaver/kswidget.h
blob: 56d7319559021a1e55ede8da38be5a9626d4390d (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( QWidget *parent = NULL, const char* name = NULL, int flags = 0 );
    virtual ~KSWidget();
private:
    Colormap colormap;
};

#endif