blob: 201f96cd615445b82cd653fbd5046e3dcd981369 (
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 TQWidget
{
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;
};
|