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
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
|
#include "khashtest.h"
#include <tdeapplication.h>
#include <kpixmapeffect.h>
#include <kimageeffect.h>
#include <tqpainter.h>
#include <tqdatetime.h>
#include <tqstring.h>
#include <tqimage.h>
int cols = 3, rows = 3; // how many
void KHashWidget::paintEvent(TQPaintEvent * /*ev*/)
{
TQTime time;
int it, ft;
TQString say;
TQColor cb = TQColor(0,70,70), ca = TQColor(80,200,200);
int x = 0, y = 0;
pix.resize(width()/cols, height()/rows);
TQPainter p(this);
p.setPen(Qt::white);
// draw once, so that the benchmarking be fair :-)
KPixmapEffect::gradient(pix,ca, cb, KPixmapEffect::VerticalGradient);
// vertical
time.start();
it = time.elapsed();
KPixmapEffect::gradient(pix,ca, cb, KPixmapEffect::VerticalGradient);
KPixmapEffect::hash(pix,KPixmapEffect::NorthLite);
ft = time.elapsed();
say.setNum( ft - it); say += " ms, Vertical";
p.drawPixmap(x*width()/cols, y*height()/rows, pix);
p.drawText(5 + (x++)*width()/cols, 15+y*height()/rows, say); // augment x
// horizontal
it = time.elapsed();
KPixmapEffect::gradient(pix,ca, cb, KPixmapEffect::HorizontalGradient);
KPixmapEffect::hash(pix,KPixmapEffect::SouthLite);
ft = time.elapsed() ;
say.setNum( ft - it); say += " ms, Horizontal";
p.drawPixmap(x*width()/cols, y*height()/rows, pix);
p.drawText(5+(x++)*width()/cols, 15+y*height()/rows, say);
// elliptic
it = time.elapsed();
KPixmapEffect::gradient(pix, ca, cb, KPixmapEffect::EllipticGradient);
KPixmapEffect::hash(pix,KPixmapEffect::NorthLite, 1);
ft = time.elapsed() ;
say.setNum( ft - it); say += " ms, Elliptic";
p.drawPixmap(x*width()/cols, y*height()/rows, pix);
p.drawText(5+(x++)*width()/cols, 15+y*height()/rows, say);
y++; // next row
x = 0; // reset the columns
// diagonal
it = time.elapsed();
KPixmapEffect::gradient(pix,ca, cb, KPixmapEffect::DiagonalGradient);
KPixmapEffect::hash(pix,KPixmapEffect::EastLite);
ft = time.elapsed();
say.setNum( ft - it); say += " ms, Diagonal";
p.drawPixmap(x*width()/cols, y*height()/rows, pix);
p.drawText(5+(x++)*width()/cols, 15+y*height()/rows, say);
// crossdiagonal
it = time.elapsed();
KPixmapEffect::gradient(pix,ca, cb, KPixmapEffect::CrossDiagonalGradient);
KPixmapEffect::hash(pix,KPixmapEffect::EastLite, 2);
ft = time.elapsed();
say.setNum( ft - it); say += " ms, CrossDiagonal";
p.drawPixmap(x*width()/cols, y*height()/rows, pix);
p.drawText(5+(x++)*width()/cols, 15+y*height()/rows, say);
TQImage image = TQImage("testimage.png");
it = time.elapsed();
KImageEffect::hash(image, KImageEffect::WestLite, 2);
ft = time.elapsed();
pix.resize(image.width(), image.height());
pix.convertFromImage(image);
pix.resize(width()/cols, height()/rows);
say.setNum( ft - it); say += " ms, CrossDiagonal";
p.drawPixmap(x*width()/cols, y*height()/rows, pix);
p.setPen(Qt::blue);
p.drawText(5+(x++)*width()/cols, 15+y*height()/rows, say);
p.setPen(Qt::white);
y++; // next row
x = 0; // reset the columns
// pyramidal
it = time.elapsed();
KPixmapEffect::gradient(pix, ca, cb, KPixmapEffect::PyramidGradient);
KPixmapEffect::hash(pix,KPixmapEffect::WestLite);
ft = time.elapsed();
say.setNum( ft - it); say += " ms, Pyramid";
p.drawPixmap(x*width()/cols, y*height()/rows, pix);
p.drawText(5+(x++)*width()/cols, 15+y*height()/rows, say);
// rectangular
it = time.elapsed();
KPixmapEffect::gradient(pix, ca, cb, KPixmapEffect::RectangleGradient);
KPixmapEffect::hash(pix,KPixmapEffect::NWLite);
ft = time.elapsed();
say.setNum( ft - it); say += " ms, Rectangle";
p.drawPixmap(x*width()/cols, y*height()/rows, pix);
p.drawText(5+(x++)*width()/rows, 15+y*height()/rows, say);
// crosspipe
it = time.elapsed();
KPixmapEffect::gradient(pix, ca, cb, KPixmapEffect::PipeCrossGradient);
KPixmapEffect::hash(pix,KPixmapEffect::WestLite, 3);
ft = time.elapsed();
say.setNum( ft - it); say += " ms, PipeCross";
p.drawPixmap(x*width()/cols, y*height()/rows, pix);
p.drawText(5+(x++)*width()/rows, 15+y*height()/rows, say);
}
int main(int argc, char **argv)
{
TDEApplication *app = new TDEApplication(argc, argv, "KHashTest");
KHashWidget w;
w.resize(250 * cols, 250 * rows);
app->setMainWidget(&w);
w.show();
return(app->exec());
}
#include <khashtest.moc>
|