blob: 6143b569d87361fc22898c52b309e4c06af1a293 (
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
|
#include <kdebug.h>
#include <tqwidget.h>
#include <tqimage.h>
#include <tqpixmap.h>
#include <kimageeffect.h>
#include <kalphapainter.h>
class KAlphaTest : public QWidget
{
public:
KAlphaTest();
protected:
void paintEvent(TQPaintEvent *);
private:
TQImage m_image;
TQPixmap m_pixmap;
TQImage m_bg;
public:
static bool m_useDblBuffer;
static bool m_usePixmap;
static bool m_correctOverlapping;
};
|