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.
|
|
|
//
|
|
|
|
// Simple little hack to show off new diagonal gradients.
|
|
|
|
//
|
|
|
|
// (C) KDE Artistic Daniel M. Duley <mosfet@kde.org>
|
|
|
|
//
|
|
|
|
|
|
|
|
#ifndef __KHASH_TEST_H
|
|
|
|
#define __KHASH_TEST_H
|
|
|
|
|
|
|
|
#include <tqwidget.h>
|
|
|
|
#include <kpixmap.h>
|
|
|
|
|
|
|
|
class KHashWidget : public QWidget
|
|
|
|
{
|
|
|
|
Q_OBJECT
|
|
|
|
|
|
|
|
public:
|
|
|
|
KHashWidget(TQWidget *parent=0, const char *name=0)
|
|
|
|
: TQWidget(parent, name){;}
|
|
|
|
protected:
|
|
|
|
void paintEvent(TQPaintEvent *ev);
|
|
|
|
private:
|
|
|
|
KPixmap pix;
|
|
|
|
};
|
|
|
|
|
|
|
|
#endif
|