You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
25 lines
433 B
25 lines
433 B
#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;
|
|
};
|
|
|