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
432 B
25 lines
432 B
15 years ago
|
//
|
||
|
// Simple little hack to show off blending effects.
|
||
|
//
|
||
|
// (C) KDE Artistic Cristian Tibirna <tibirna@kde.org>
|
||
|
//
|
||
|
|
||
|
#ifndef __KBLEND_TEST_H
|
||
|
#define __KBLEND_TEST_H
|
||
|
|
||
14 years ago
|
#include <tqwidget.h>
|
||
|
#include <tqimage.h>
|
||
15 years ago
|
|
||
14 years ago
|
class KBlendWidget : public TQWidget
|
||
15 years ago
|
{
|
||
|
public:
|
||
14 years ago
|
KBlendWidget(TQWidget *parent=0, const char *name=0);
|
||
15 years ago
|
protected:
|
||
14 years ago
|
void paintEvent(TQPaintEvent *ev);
|
||
15 years ago
|
private:
|
||
14 years ago
|
TQImage image, original;
|
||
|
TQColor bgnd;
|
||
15 years ago
|
};
|
||
|
|
||
|
#endif
|