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
441 B
25 lines
441 B
15 years ago
|
#include <kdebug.h>
|
||
14 years ago
|
#include <tqwidget.h>
|
||
|
#include <tqimage.h>
|
||
|
#include <tqpixmap.h>
|
||
15 years ago
|
#include <kimageeffect.h>
|
||
|
#include <kalphapainter.h>
|
||
|
|
||
14 years ago
|
class KAlphaTest : public TQWidget
|
||
15 years ago
|
{
|
||
|
public:
|
||
|
KAlphaTest();
|
||
|
protected:
|
||
14 years ago
|
void paintEvent(TQPaintEvent *);
|
||
15 years ago
|
private:
|
||
14 years ago
|
TQImage m_image;
|
||
|
TQPixmap m_pixmap;
|
||
|
TQImage m_bg;
|
||
15 years ago
|
|
||
|
public:
|
||
|
static bool m_useDblBuffer;
|
||
|
static bool m_usePixmap;
|
||
|
static bool m_correctOverlapping;
|
||
|
};
|
||
|
|