blob: 843a1be5996b6cc48d5cd4037315a71fbf555488 (
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
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
|
#ifndef XOSD_H_
#define XOSD_H_
#ifdef HAVE_CONFIG_H
#include <config.h>
#endif
#include <qstring.h>
#include <qwidget.h>
#include <qfont.h>
#include <qpixmap.h>
#include <qbitmap.h>
#include <netwm.h>
#include <kwin.h>
class xosd : public QWidget
{
Q_OBJECT
public:
xosd(QWidget* parent=0, const char *name=0);
virtual ~xosd();
void setText(const QString& t);
void setFont(const QString& font);
void setItalic();
void setBold();
void setSize(int size);
void setColor(const QString& color);
void setShadowColor(const QString& color);
void setShadowOffset(int off);
void move2(int x, int y);
void setOrientation(int orientation, int w, int mh);
void setClear(int nClean);
int yOffset;
int w, h;
int fontSize;
int fontStyle;
QString fontFamily;
private:
NETWinInfo *info;
QString text;
QFont f;
QString fontColor;
QString shadowColor;
int shadowOffset;
int fOrientation;
QPixmap bgBuffer;
int dw, rdh;
int lastX, lastY;
int fCleaner;
QPixmap maskBuffer;
protected:
void paintEvent(QPaintEvent *);
};
#endif // XOSD_H_
|