Newer
Older
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
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
/* -*- mode: C++ ; c-file-style: "stroustrup" -*- *****************************
* Qwt Widget Library
* Copyright (C) 1997 Josef Wilgen
* Copyright (C) 2002 Uwe Rathmann
*
* This library is free software; you can redistribute it and/or
* modify it under the terms of the Qwt License, Version 1.0
*****************************************************************************/
#include "qwt_point_mapper.h"
#include "qwt_scale_map.h"
#include "qwt_pixel_matrix.h"
#include <qpolygon.h>
#include <qimage.h>
#include <qpen.h>
#include <qpainter.h>
#if QT_VERSION >= 0x040400
#include <qthread.h>
#include <qfuture.h>
#include <qtconcurrentrun.h>
#if !defined(QT_NO_QFUTURE)
#define QWT_USE_THREADS 0
#endif
#endif
static QRectF qwtInvalidRect( 0.0, 0.0, -1.0, -1.0 );
// Helper class to work around the 5 parameters
// limitation of QtConcurrent::run()
class QwtDotsCommand
{
public:
const QwtSeriesData<QPointF> *series;
int from;
int to;
QRgb rgb;
};
static void qwtRenderDots(
const QwtScaleMap &xMap, const QwtScaleMap &yMap,
const QwtDotsCommand command, const QPoint &pos, QImage *image )
{
const QRgb rgb = command.rgb;
QRgb *bits = reinterpret_cast<QRgb *>( image->bits() );
const int w = image->width();
const int h = image->height();
const int x0 = pos.x();
const int y0 = pos.y();
for ( int i = command.from; i <= command.to; i++ )
{
const QPointF sample = command.series->sample( i );
const int x = static_cast<int>( xMap.transform( sample.x() ) + 0.5 ) - x0;
const int y = static_cast<int>( yMap.transform( sample.y() ) + 0.5 ) - y0;
if ( x >= 0 && x < w && y >= 0 && y < h )
bits[ y * w + x ] = rgb;
}
}
static inline int qwtRoundValue( double value )
{
#if 1
return qRound( value );
#else
// A little bit faster, but differs from qRound()
// for negative values. Should be no problem as we are
// rounding widgets coordinates, where negative values
// are clipped off anyway ( at least when there is no
// painter transformation )
return static_cast<int>( value + 0.5 );
#endif
}
// some functors, so that the compile can inline
struct QwtRoundI
{
inline int operator()( double value )
{
return qwtRoundValue( value );
}
};
struct QwtRoundF
{
inline double operator()( double value )
{
return static_cast<double>( qwtRoundValue( value ) );
}
};
struct QwtNoRoundF
{
inline double operator()( double value )
{
return value;
}
};
// mapping points without any filtering - beside checking
// the bounding rectangle
template<class Polygon, class Point, class Round>
static inline Polygon qwtToPoints(
const QRectF &boundingRect,
const QwtScaleMap &xMap, const QwtScaleMap &yMap,
const QwtSeriesData<QPointF> *series,
int from, int to, Round round )
{
Polygon polyline( to - from + 1 );
Point *points = polyline.data();
int numPoints = 0;
if ( boundingRect.isValid() )
{
// iterating over all values
// filtering out all points outside of
// the bounding rectangle
for ( int i = from; i <= to; i++ )
{
const QPointF sample = series->sample( i );
const double x = xMap.transform( sample.x() );
const double y = yMap.transform( sample.y() );
if ( boundingRect.contains( x, y ) )
{
points[ numPoints ].rx() = round( x );
points[ numPoints ].ry() = round( y );
numPoints++;
}
}
polyline.resize( numPoints );
}
else
{
// simply iterating over all values
// without any filtering
for ( int i = from; i <= to; i++ )
{
const QPointF sample = series->sample( i );
const double x = xMap.transform( sample.x() );
const double y = yMap.transform( sample.y() );
points[ numPoints ].rx() = round( x );
points[ numPoints ].ry() = round( y );
numPoints++;
}
}
return polyline;
}
static inline QPolygon qwtToPointsI(
const QRectF &boundingRect,
const QwtScaleMap &xMap, const QwtScaleMap &yMap,
const QwtSeriesData<QPointF> *series,
int from, int to )
{
return qwtToPoints<QPolygon, QPoint>(
boundingRect, xMap, yMap, series, from, to, QwtRoundI() );
}
template<class Round>
static inline QPolygonF qwtToPointsF(
const QRectF &boundingRect,
const QwtScaleMap &xMap, const QwtScaleMap &yMap,
const QwtSeriesData<QPointF> *series,
int from, int to, Round round )
{
return qwtToPoints<QPolygonF, QPointF>(
boundingRect, xMap, yMap, series, from, to, round );
}
// Mapping points with filtering out consecutive
// points mapped to the same position
template<class Polygon, class Point, class Round>
static inline Polygon qwtToPolylineFiltered(
const QwtScaleMap &xMap, const QwtScaleMap &yMap,
const QwtSeriesData<QPointF> *series,
int from, int to, Round round )
{
// in curves with many points consecutive points
// are often mapped to the same position. As this might
// result in empty lines ( or symbols hidden by others )
// we try to filter them out
Polygon polyline( to - from + 1 );
Point *points = polyline.data();
const QPointF sample0 = series->sample( from );
points[0].rx() = round( xMap.transform( sample0.x() ) );
points[0].ry() = round( yMap.transform( sample0.y() ) );
int pos = 0;
for ( int i = from + 1; i <= to; i++ )
{
const QPointF sample = series->sample( i );
const Point p( round( xMap.transform( sample.x() ) ),
round( yMap.transform( sample.y() ) ) );
if ( points[pos] != p )
points[++pos] = p;
}
polyline.resize( pos + 1 );
return polyline;
}
static inline QPolygon qwtToPolylineFilteredI(
const QwtScaleMap &xMap, const QwtScaleMap &yMap,
const QwtSeriesData<QPointF> *series,
int from, int to )
{
return qwtToPolylineFiltered<QPolygon, QPoint>(
xMap, yMap, series, from, to, QwtRoundI() );
}
template<class Round>
static inline QPolygonF qwtToPolylineFilteredF(
const QwtScaleMap &xMap, const QwtScaleMap &yMap,
const QwtSeriesData<QPointF> *series,
int from, int to, Round round )
{
return qwtToPolylineFiltered<QPolygonF, QPointF>(
xMap, yMap, series, from, to, round );
}
template<class Polygon, class Point>
static inline Polygon qwtToPointsFiltered(
const QRectF &boundingRect,
const QwtScaleMap &xMap, const QwtScaleMap &yMap,
const QwtSeriesData<QPointF> *series, int from, int to )
{
// F.e. in scatter plots ( no connecting lines ) we
// can sort out all duplicates ( not only consecutive points )
Polygon polygon( to - from + 1 );
Point *points = polygon.data();
QwtPixelMatrix pixelMatrix( boundingRect.toAlignedRect() );
int numPoints = 0;
for ( int i = from; i <= to; i++ )
{
const QPointF sample = series->sample( i );
const int x = qwtRoundValue( xMap.transform( sample.x() ) );
const int y = qwtRoundValue( yMap.transform( sample.y() ) );
if ( pixelMatrix.testAndSetPixel( x, y, true ) == false )
{
points[ numPoints ].rx() = x;
points[ numPoints ].ry() = y;
numPoints++;
}
}
polygon.resize( numPoints );
return polygon;
}
static inline QPolygon qwtToPointsFilteredI(
const QRectF &boundingRect,
const QwtScaleMap &xMap, const QwtScaleMap &yMap,
const QwtSeriesData<QPointF> *series, int from, int to )
{
return qwtToPointsFiltered<QPolygon, QPoint>(
boundingRect, xMap, yMap, series, from, to );
}
static inline QPolygonF qwtToPointsFilteredF(
const QRectF &boundingRect,
const QwtScaleMap &xMap, const QwtScaleMap &yMap,
const QwtSeriesData<QPointF> *series, int from, int to )
{
return qwtToPointsFiltered<QPolygonF, QPointF>(
boundingRect, xMap, yMap, series, from, to );
}
class QwtPointMapper::PrivateData
{
public:
PrivateData():
boundingRect( qwtInvalidRect )
{
}
QRectF boundingRect;
QwtPointMapper::TransformationFlags flags;
};
//! Constructor
QwtPointMapper::QwtPointMapper()
{
d_data = new PrivateData();
}
//! Destructor
QwtPointMapper::~QwtPointMapper()
{
delete d_data;
}
/*!
Set the flags affecting the transformation process
\param flags Flags
\sa flags(), setFlag()
*/
void QwtPointMapper::setFlags( TransformationFlags flags )
{
d_data->flags = flags;
}
/*!
\return Flags affecting the transformation process
\sa setFlags(), setFlag()
*/
QwtPointMapper::TransformationFlags QwtPointMapper::flags() const
{
return d_data->flags;
}
/*!
Modify a flag affecting the transformation process
\param flag Flag type
\param on Value
\sa flag(), setFlags()
*/
void QwtPointMapper::setFlag( TransformationFlag flag, bool on )
{
if ( on )
d_data->flags |= flag;
else
d_data->flags &= ~flag;
}
/*!
\return True, when the flag is set
\param flag Flag type
\sa setFlag(), setFlags()
*/
bool QwtPointMapper::testFlag( TransformationFlag flag ) const
{
return d_data->flags & flag;
}
/*!
Set a bounding rectangle for the point mapping algorithm
A valid bounding rectangle can be used for optimizations
\param rect Bounding rectangle
\sa boundingRect()
*/
void QwtPointMapper::setBoundingRect( const QRectF &rect )
{
d_data->boundingRect = rect;
}
/*!
\return Bounding rectangle
\sa setBoundingRect()
*/
QRectF QwtPointMapper::boundingRect() const
{
return d_data->boundingRect;
}
/*!
\brief Translate a series of points into a QPolygonF
When the WeedOutPoints flag is enabled consecutive points,
that are mapped to the same position will be one point.
When RoundPoints is set all points are rounded to integers
but returned as PolygonF - what only makes sense
when the further processing of the values need a QPolygonF.
\param xMap x map
\param yMap y map
\param series Series of points to be mapped
\param from Index of the first point to be painted
\param to Index of the last point to be painted
\return Translated polygon
*/
QPolygonF QwtPointMapper::toPolygonF(
const QwtScaleMap &xMap, const QwtScaleMap &yMap,
const QwtSeriesData<QPointF> *series, int from, int to ) const
{
QPolygonF polyline;
if ( d_data->flags & WeedOutPoints )
{
if ( d_data->flags & RoundPoints )
{
polyline = qwtToPolylineFilteredF(
xMap, yMap, series, from, to, QwtRoundF() );
}
else
{
polyline = qwtToPolylineFilteredF(
xMap, yMap, series, from, to, QwtNoRoundF() );
}
}
else
{
if ( d_data->flags & RoundPoints )
{
polyline = qwtToPointsF( qwtInvalidRect,
xMap, yMap, series, from, to, QwtRoundF() );
}
else
{
polyline = qwtToPointsF( qwtInvalidRect,
xMap, yMap, series, from, to, QwtNoRoundF() );
}
}
return polyline;
}
/*!
\brief Translate a series of points into a QPolygon
When the WeedOutPoints flag is enabled consecutive points,
that are mapped to the same position will be one point.
\param xMap x map
\param yMap y map
\param series Series of points to be mapped
\param from Index of the first point to be painted
\param to Index of the last point to be painted
\return Translated polygon
*/
QPolygon QwtPointMapper::toPolygon(
const QwtScaleMap &xMap, const QwtScaleMap &yMap,
const QwtSeriesData<QPointF> *series, int from, int to ) const
{
QPolygon polyline;
if ( d_data->flags & WeedOutPoints )
{
polyline = qwtToPolylineFilteredI(
xMap, yMap, series, from, to );
}
else
{
polyline = qwtToPointsI(
qwtInvalidRect, xMap, yMap, series, from, to );
}
return polyline;
}
/*!
\brief Translate a series into a QPolygonF
- WeedOutPoints & RoundPoints & boundingRect().isValid()
All points that are mapped to the same position
will be one point. Points outside of the bounding
rectangle are ignored.
- WeedOutPoints & RoundPoints & !boundingRect().isValid()
All consecutive points that are mapped to the same position
will one point
- WeedOutPoints & !RoundPoints
All consecutive points that are mapped to the same position
will one point
- !WeedOutPoints & boundingRect().isValid()
Points outside of the bounding rectangle are ignored.
When RoundPoints is set all points are rounded to integers
but returned as PolygonF - what only makes sense
when the further processing of the values need a QPolygonF.
\param xMap x map
\param yMap y map
\param series Series of points to be mapped
\param from Index of the first point to be painted
\param to Index of the last point to be painted
\return Translated polygon
*/
QPolygonF QwtPointMapper::toPointsF(
const QwtScaleMap &xMap, const QwtScaleMap &yMap,
const QwtSeriesData<QPointF> *series, int from, int to ) const
{
QPolygonF points;
if ( d_data->flags & WeedOutPoints )
{
if ( d_data->flags & RoundPoints )
{
if ( d_data->boundingRect.isValid() )
{
points = qwtToPointsFilteredF( d_data->boundingRect,
xMap, yMap, series, from, to );
}
else
{
// without a bounding rectangle all we can
// do is to filter out duplicates of
// consecutive points
points = qwtToPolylineFilteredF(
xMap, yMap, series, from, to, QwtRoundF() );
}
}
else
{
// when rounding is not allowed we can't use
// qwtToPointsFilteredF
points = qwtToPolylineFilteredF(
xMap, yMap, series, from, to, QwtNoRoundF() );
}
}
else
{
if ( d_data->flags & RoundPoints )
{
points = qwtToPointsF( d_data->boundingRect,
xMap, yMap, series, from, to, QwtRoundF() );
}
else
{
points = qwtToPointsF( d_data->boundingRect,
xMap, yMap, series, from, to, QwtNoRoundF() );
}
}
return points;
}
/*!
\brief Translate a series of points into a QPolygon
- WeedOutPoints & boundingRect().isValid()
All points that are mapped to the same position
will be one point. Points outside of the bounding
rectangle are ignored.
- WeedOutPoints & !boundingRect().isValid()
All consecutive points that are mapped to the same position
will one point
- !WeedOutPoints & boundingRect().isValid()
Points outside of the bounding rectangle are ignored.
\param xMap x map
\param yMap y map
\param series Series of points to be mapped
\param from Index of the first point to be painted
\param to Index of the last point to be painted
\return Translated polygon
*/
QPolygon QwtPointMapper::toPoints(
const QwtScaleMap &xMap, const QwtScaleMap &yMap,
const QwtSeriesData<QPointF> *series, int from, int to ) const
{
QPolygon points;
if ( d_data->flags & WeedOutPoints )
{
if ( d_data->boundingRect.isValid() )
{
points = qwtToPointsFilteredI( d_data->boundingRect,
xMap, yMap, series, from, to );
}
else
{
// when we don't have the bounding rectangle all
// we can do is to filter out consecutive duplicates
points = qwtToPolylineFilteredI(
xMap, yMap, series, from, to );
}
}
else
{
points = qwtToPointsI(
d_data->boundingRect, xMap, yMap, series, from, to );
}
return points;
}
/*!
\brief Translate a series into a QImage
\param xMap x map
\param yMap y map
\param series Series of points to be mapped
\param from Index of the first point to be painted
\param to Index of the last point to be painted
\param pen Pen used for drawing a point
of the image, where a point is mapped to
\param antialiased True, when the dots should be displayed
antialiased
\param numThreads Number of threads to be used for rendering.
If numThreads is set to 0, the system specific
ideal thread count is used.
\return Image displaying the series
*/
QImage QwtPointMapper::toImage(
const QwtScaleMap &xMap, const QwtScaleMap &yMap,
const QwtSeriesData<QPointF> *series, int from, int to,
const QPen &pen, bool antialiased, uint numThreads ) const
{
Q_UNUSED( antialiased )
#if QWT_USE_THREADS
if ( numThreads == 0 )
numThreads = QThread::idealThreadCount();
if ( numThreads <= 0 )
numThreads = 1;
#else
Q_UNUSED( numThreads )
#endif
// a very special optimization for scatter plots
// where every sample is mapped to one pixel only.
const QRect rect = d_data->boundingRect.toAlignedRect();
QImage image( rect.size(), QImage::Format_ARGB32 );
image.fill( Qt::transparent );
if ( pen.width() <= 1 && pen.color().alpha() == 255 )
{
QwtDotsCommand command;
command.series = series;
command.rgb = pen.color().rgba();
#if QWT_USE_THREADS
const int numPoints = ( to - from + 1 ) / numThreads;
QList< QFuture<void> > futures;
for ( uint i = 0; i < numThreads; i++ )
{
const QPoint pos = rect.topLeft();
const int index0 = from + i * numPoints;
if ( i == numThreads - 1 )
{
command.from = index0;
command.to = to;
qwtRenderDots( xMap, yMap, command, pos, &image );
}
else
{
command.from = index0;
command.to = index0 + numPoints - 1;
futures += QtConcurrent::run( &qwtRenderDots,
xMap, yMap, command, pos, &image );
}
}
for ( int i = 0; i < futures.size(); i++ )
futures[i].waitForFinished();
#else
command.from = from;
command.to = to;
qwtRenderDots( xMap, yMap, command, rect.topLeft(), &image );
#endif
}
else
{
// fallback implementation: to be replaced later by
// setting the pixels of the image like above, TODO ...
QPainter painter( &image );
painter.setPen( pen );
painter.setRenderHint( QPainter::Antialiasing, antialiased );
const int chunkSize = 1000;
for ( int i = from; i <= to; i += chunkSize )
{
const int indexTo = qMin( i + chunkSize - 1, to );
const QPolygon points = toPoints(
xMap, yMap, series, i, indexTo );
painter.drawPoints( points );
}
}
return image;
}