blob: 24a01c4f16049053d3005fb8377ae5353b7148b2 (
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
25
26
|
//
// 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 <qwidget.h>
#include <kpixmap.h>
class KHashWidget : public QWidget
{
Q_OBJECT
public:
KHashWidget(QWidget *parent=0, const char *name=0)
: QWidget(parent, name){;}
protected:
void paintEvent(QPaintEvent *ev);
private:
KPixmap pix;
};
#endif
|