blob: 66d26e6f32b2cd5d0b0c5974a54040af14d21211 (
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 <qwidget.h>
#include <qimage.h>
#include <qpixmap.h>
#include <kimageeffect.h>
#include <kalphapainter.h>
class KAlphaTest : public QWidget
{
public:
KAlphaTest();
protected:
void paintEvent(QPaintEvent *);
private:
QImage m_image;
QPixmap m_pixmap;
QImage m_bg;
public:
static bool m_useDblBuffer;
static bool m_usePixmap;
static bool m_correctOverlapping;
};
|