-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathqwt_thermo.cpp
812 lines (691 loc) · 19.5 KB
/
qwt_thermo.cpp
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
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
/* -*- 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_thermo.h"
#include "qwt_scale_engine.h"
#include "qwt_scale_draw.h"
#include "qwt_scale_map.h"
#include "qwt_color_map.h"
#include <qpainter.h>
#include <qevent.h>
#include <qdrawutil.h>
#include <qstyle.h>
#include <qstyleoption.h>
static inline bool qwtIsLogarithmic( const QwtThermo *thermo )
{
const QwtScaleTransformation::Type scaleType =
thermo->scaleEngine->transformation()->type();
return ( scaleType == QwtScaleTransformation::Log10 );
}
static inline void qwtDrawLine(
QPainter *painter, int pos,
const QColor &color, const QRect pipeRect,
Qt::Orientation orientation )
{
painter->setPen( color );
if ( orientation == Qt::Horizontal )
painter->drawLine( pos, pipeRect.top(), pos, pipeRect.bottom() );
else
painter->drawLine( pipeRect.left(), pos, pipeRect.right(), pos );
}
QVector<double> qwtTickList( const QwtScaleDiv &scaleDiv, double value )
{
QVector<double> values;
double lowerLimit = scaleDiv.interval().minValue();
double upperLimit = scaleDiv.interval().maxValue();
if ( upperLimit < lowerLimit )
qSwap( lowerLimit, upperLimit );
if ( value < lowerLimit )
return values;
if ( value < upperLimit )
upperLimit = value;
values += lowerLimit;
for ( int tickType = QwtScaleDiv::MinorTick;
tickType < QwtScaleDiv::NTickTypes; tickType++ )
{
const QList<double> ticks = scaleDiv.ticks( tickType );
for ( int i = 0; i < ( int )ticks.count(); i++ )
{
const double v = ticks[i];
if ( v > lowerLimit && v < upperLimit )
values += v;
}
}
values += upperLimit;
return values;
}
class QwtThermo::PrivateData
{
public:
PrivateData():
orientation( Qt::Vertical ),
scalePos( QwtThermo::LeftScale ),
spacing( 3 ),
borderWidth( 2 ),
pipeWidth( 10 ),
minValue( 0.0 ),
maxValue( 0.0 ),
value( 0.0 ),
autoFillPipe( true ),
colorMap( NULL )
{
}
~PrivateData()
{
delete colorMap;
}
Qt::Orientation orientation;
ScalePos scalePos;
int spacing;
int borderWidth;
int pipeWidth;
double minValue;
double maxValue;
double value;
bool autoFillPipe;
QwtColorMap *colorMap;
};
/*!
Constructor
\param parent Parent widget
*/
QwtThermo::QwtThermo( QWidget *parent ):
QWidget( parent )
{
d_data = new PrivateData;
setRange( 0.0, 1.0, false );
QSizePolicy policy( QSizePolicy::MinimumExpanding, QSizePolicy::Fixed );
if ( d_data->orientation == Qt::Vertical )
policy.transpose();
setSizePolicy( policy );
setAttribute( Qt::WA_WState_OwnSizePolicy, false );
}
//! Destructor
QwtThermo::~QwtThermo()
{
delete d_data;
}
/*!
Set the maximum value.
\param maxValue Maximum value
\sa maxValue(), setMinValue(), setRange()
*/
void QwtThermo::setMaxValue( double maxValue )
{
setRange( d_data->minValue, maxValue, qwtIsLogarithmic( this ) );
}
//! Return the maximum value.
double QwtThermo::maxValue() const
{
return d_data->maxValue;
}
/*!
Set the minimum value.
\param minValue Minimum value
\sa minValue(), setMaxValue(), setRange()
*/
void QwtThermo::setMinValue( double minValue )
{
setRange( minValue, d_data->maxValue, qwtIsLogarithmic( this ) );
}
//! Return the minimum value.
double QwtThermo::minValue() const
{
return d_data->minValue;
}
/*!
Set the current value.
\param value New Value
\sa value()
*/
void QwtThermo::setValue( double value )
{
if ( d_data->value != value )
{
d_data->value = value;
update();
}
}
//! Return the value.
double QwtThermo::value() const
{
return d_data->value;
}
/*!
\brief Set a scale draw
For changing the labels of the scales, it
is necessary to derive from QwtScaleDraw and
overload QwtScaleDraw::label().
\param scaleDraw ScaleDraw object, that has to be created with
new and will be deleted in ~QwtThermo or the next
call of setscaleDraw.
*/
void QwtThermo::setScaleDraw( QwtScaleDraw *scaleDraw )
{
setAbstractScaleDraw( scaleDraw );
}
/*!
Qt paint event.
\param event Paint event
*/
void QwtThermo::paintEvent( QPaintEvent *event )
{
QPainter painter( this );
painter.setClipRegion( event->region() );
QStyleOption opt;
opt.init(this);
style()->drawPrimitive(QStyle::PE_Widget, &opt, &painter, this);
const QRect tRect = pipeRect();
if ( !tRect.contains( event->rect() ) )
{
if ( d_data->scalePos != NoScale )
scaleDraw->draw( &painter, palette() );
}
const int bw = d_data->borderWidth;
const QBrush brush = palette().brush( QPalette::Base );
qDrawShadePanel( &painter,
tRect.adjusted( -bw, -bw, bw, bw ),
palette(), true, bw,
d_data->autoFillPipe ? &brush : NULL );
drawLiquid( &painter, tRect );
}
/*!
Qt resize event handler
\param event Resize event
*/
void QwtThermo::resizeEvent( QResizeEvent *event )
{
Q_UNUSED( event );
layoutThermo( false );
}
/*!
Qt change event handler
\param event Event
*/
void QwtThermo::changeEvent( QEvent *event )
{
switch( event->type() )
{
case QEvent::StyleChange:
case QEvent::FontChange:
{
layoutThermo( true );
break;
}
default:
break;
}
}
/*!
Recalculate the QwtThermo geometry and layout based on
the QwtThermo::contentsRect() and the fonts.
\param update_geometry notify the layout system and call update
to redraw the scale
*/
void QwtThermo::layoutThermo( bool update_geometry )
{
const QRect tRect = pipeRect();
const int bw = d_data->borderWidth + d_data->spacing;
int from, to;
if ( d_data->orientation == Qt::Horizontal )
{
from = tRect.left();
to = tRect.right();
switch ( d_data->scalePos )
{
case TopScale:
{
scaleDraw->setAlignment( QwtScaleDraw::TopScale );
scaleDraw->move( from, tRect.top() - bw );
scaleDraw->setLength( to - from );
break;
}
case BottomScale:
case NoScale:
default:
{
scaleDraw->setAlignment( QwtScaleDraw::BottomScale );
scaleDraw->move( from, tRect.bottom() + bw );
scaleDraw->setLength( to - from );
break;
}
}
}
else // Qt::Vertical
{
from = tRect.top();
to = tRect.bottom();
switch ( d_data->scalePos )
{
case RightScale:
{
scaleDraw->setAlignment( QwtScaleDraw::RightScale );
scaleDraw->move( tRect.right() + bw, from );
scaleDraw->setLength( to - from );
break;
}
case LeftScale:
case NoScale:
default:
{
scaleDraw->setAlignment( QwtScaleDraw::LeftScale );
scaleDraw->move( tRect.left() - bw, from );
scaleDraw->setLength( to - from );
break;
}
}
}
if ( update_geometry )
{
updateGeometry();
update();
}
}
/*!
\return Bounding rectangle of the pipe ( without borders )
in widget coordinates
*/
QRect QwtThermo::pipeRect() const
{
const QRect cr = contentsRect();
int bw = d_data->borderWidth;
QRect tRect;
if ( d_data->orientation == Qt::Horizontal )
{
switch ( d_data->scalePos )
{
case TopScale:
{
tRect.setRect(
cr.x() + bw,
cr.y() + cr.height() - d_data->pipeWidth - 2 * bw,
cr.width() - 2 * bw,
d_data->pipeWidth
);
break;
}
case BottomScale:
case NoScale:
default:
{
tRect.setRect(
cr.x() + bw,
cr.y() + d_data->borderWidth,
cr.width() - 2 * bw,
d_data->pipeWidth
);
break;
}
}
}
else // Qt::Vertical
{
switch ( d_data->scalePos )
{
case RightScale:
{
tRect.setRect(
cr.x() + bw,
cr.y() + bw,
d_data->pipeWidth,
cr.height() - 2 * bw
);
break;
}
case LeftScale:
case NoScale:
default:
{
tRect.setRect(
cr.x() + cr.width() - 2 * bw - d_data->pipeWidth,
cr.y() + bw,
d_data->pipeWidth,
cr.height() - 2 * bw );
break;
}
}
}
return tRect;
}
/*!
\brief Set the thermometer orientation and the scale position.
The scale position NoScale disables the scale.
\param o orientation. Possible values are Qt::Horizontal and Qt::Vertical.
The default value is Qt::Vertical.
\param s Position of the scale.
The default value is NoScale.
A valid combination of scale position and orientation is enforced:
- a horizontal thermometer can have the scale positions TopScale,
BottomScale or NoScale;
- a vertical thermometer can have the scale positions LeftScale,
RightScale or NoScale;
- an invalid scale position will default to NoScale.
\sa setScalePosition()
*/
void QwtThermo::setOrientation( Qt::Orientation o, ScalePos s )
{
if ( o == d_data->orientation && s == d_data->scalePos )
return;
switch ( o )
{
case Qt::Horizontal:
{
if ( ( s == NoScale ) || ( s == BottomScale ) || ( s == TopScale ) )
d_data->scalePos = s;
else
d_data->scalePos = NoScale;
break;
}
case Qt::Vertical:
{
if ( ( s == NoScale ) || ( s == LeftScale ) || ( s == RightScale ) )
d_data->scalePos = s;
else
d_data->scalePos = NoScale;
break;
}
}
if ( o != d_data->orientation )
{
if ( !testAttribute( Qt::WA_WState_OwnSizePolicy ) )
{
QSizePolicy sp = sizePolicy();
sp.transpose();
setSizePolicy( sp );
setAttribute( Qt::WA_WState_OwnSizePolicy, false );
}
}
d_data->orientation = o;
layoutThermo( true );
}
/*!
\brief Change the scale position (and thermometer orientation).
\param scalePos Position of the scale.
A valid combination of scale position and orientation is enforced:
- if the new scale position is LeftScale or RightScale, the
scale orientation will become Qt::Vertical;
- if the new scale position is BottomScale or TopScale, the scale
orientation will become Qt::Horizontal;
- if the new scale position is NoScale, the scale orientation
will not change.
\sa setOrientation(), scalePosition()
*/
void QwtThermo::setScalePosition( ScalePos scalePos )
{
if ( ( scalePos == BottomScale ) || ( scalePos == TopScale ) )
setOrientation( Qt::Horizontal, scalePos );
else if ( ( scalePos == LeftScale ) || ( scalePos == RightScale ) )
setOrientation( Qt::Vertical, scalePos );
else
setOrientation( d_data->orientation, NoScale );
}
/*!
Return the scale position.
\sa setScalePosition()
*/
QwtThermo::ScalePos QwtThermo::scalePosition() const
{
return d_data->scalePos;
}
//! Notify a scale change.
void QwtThermo::scaleChange()
{
layoutThermo( true );
}
/*!
Redraw the liquid in thermometer pipe.
\param painter Painter
\param pipeRect Bounding rectangle of the pipe without borders
*/
void QwtThermo::drawLiquid(
QPainter *painter, const QRect &pipeRect ) const
{
painter->save();
painter->setClipRect( pipeRect, Qt::IntersectClip );
const bool inverted = ( maxValue() < minValue() );
if ( d_data->colorMap != NULL )
{
QwtInterval interval( d_data->minValue, d_data->maxValue );
interval = interval.normalized();
// Because the positions of the ticks are rounded
// we calculate the colors for the rounded tick values
QVector<double> values = qwtTickList(
scaleDraw->scaleDiv(), d_data->value );
if ( scaleDraw->scaleMap().isInverting() )
qSort( values.begin(), values.end(), qGreater<double>() );
else
qSort( values.begin(), values.end(), qLess<double>() );
int from;
if ( !values.isEmpty() )
{
from = qRound( scaleDraw->scaleMap().transform( values[0] ) );
qwtDrawLine( painter, from,
d_data->colorMap->rgb( interval, values[0] ),
pipeRect, d_data->orientation );
}
for ( int i = 1; i < values.size(); i++ )
{
const int to = qRound( scaleDraw->scaleMap().transform( values[i] ) );
for ( int pos = from + 1; pos < to; pos++ )
{
const double v = scaleDraw->scaleMap().invTransform( pos );
qwtDrawLine( painter, pos,
d_data->colorMap->rgb( interval, v ),
pipeRect, d_data->orientation );
}
qwtDrawLine( painter, to,
d_data->colorMap->rgb( interval, values[i] ),
pipeRect, d_data->orientation );
from = to;
}
}
else
{
const int tval = qRound( scaleDraw->scaleMap().transform( d_data->value ) );
QRect fillRect = pipeRect;
if ( d_data->orientation == Qt::Horizontal )
{
if ( inverted )
fillRect.setLeft( tval );
else
fillRect.setRight( tval );
}
else // Qt::Vertical
{
if ( inverted )
fillRect.setBottom( tval );
else
fillRect.setTop( tval );
}
painter->fillRect( fillRect, palette().brush( QPalette::ButtonText ) );
}
painter->restore();
}
/*!
\brief Change the spacing between pipe and scale
A spacing of 0 means, that the backbone of the scale is below
the pipe.
The default setting is 3 pixels.
\param spacing Number of pixels
\sa spacing();
*/
void QwtThermo::setSpacing( int spacing )
{
if ( spacing <= 0 )
spacing = 0;
if ( spacing != d_data->spacing )
{
d_data->spacing = spacing;
layoutThermo( true );
}
}
/*!
\return Number of pixels between pipe and scale
\sa setSpacing()
*/
int QwtThermo::spacing() const
{
return d_data->spacing;
}
/*!
Set the border width of the pipe.
\param width Border width
\sa borderWidth()
*/
void QwtThermo::setBorderWidth( int width )
{
if ( width <= 0 )
width = 0;
if ( width != d_data->borderWidth )
{
d_data->borderWidth = width;
layoutThermo( true );
}
}
/*!
Return the border width of the thermometer pipe.
\sa setBorderWidth()
*/
int QwtThermo::borderWidth() const
{
return d_data->borderWidth;
}
/*!
\brief Set the range
\param minValue value corresponding lower or left end
of the thermometer
\param maxValue value corresponding to the upper or
right end of the thermometer
\param logarithmic logarithmic mapping, true or false
*/
void QwtThermo::setRange(
double minValue, double maxValue, bool logarithmic )
{
if ( minValue == d_data->minValue && maxValue == d_data->maxValue
&& logarithmic == qwtIsLogarithmic( this ) )
{
return;
}
if ( logarithmic != qwtIsLogarithmic( this ) )
{
if ( logarithmic )
setScaleEngine( new QwtLog10ScaleEngine );
else
setScaleEngine( new QwtLinearScaleEngine );
}
d_data->minValue = minValue;
d_data->maxValue = maxValue;
rescale( minValue, maxValue );
layoutThermo( true );
}
/*!
\brief Assign a color map for the fill color
\param colorMap Color map
*/
void QwtThermo::setColorMap( QwtColorMap *colorMap )
{
if ( colorMap != d_data->colorMap )
{
delete d_data->colorMap;
d_data->colorMap = colorMap;
}
}
/*!
\return Color map for the fill color
*/
QwtColorMap *QwtThermo::colorMap()
{
return d_data->colorMap;
}
/*!
\return Color map for the fill color
*/
const QwtColorMap *QwtThermo::colorMap() const
{
return d_data->colorMap;
}
/*!
\brief Change the brush of the liquid.
Changes the QPalette::ButtonText brush of the palette.
\param brush New brush.
\sa fillBrush(), QWidget::setPalette()
*/
void QwtThermo::setFillBrush( const QBrush& brush )
{
QPalette pal = palette();
pal.setBrush( QPalette::ButtonText, brush );
setPalette( pal );
}
/*!
Return the liquid ( QPalette::ButtonText ) brush.
\sa setFillBrush(), QWidget::palette()
*/
const QBrush& QwtThermo::fillBrush() const
{
return palette().brush( QPalette::ButtonText );
}
/*!
Change the width of the pipe.
\param width Width of the pipe
\sa pipeWidth()
*/
void QwtThermo::setPipeWidth( int width )
{
if ( width > 0 )
{
d_data->pipeWidth = width;
layoutThermo( true );
}
}
/*!
Return the width of the pipe.
\sa setPipeWidth()
*/
int QwtThermo::pipeWidth() const
{
return d_data->pipeWidth;
}
/*!
\return the minimum size hint
\sa minimumSizeHint()
*/
QSize QwtThermo::sizeHint() const
{
return minimumSizeHint();
}
/*!
\brief Return a minimum size hint
\warning The return value depends on the font and the scale.
\sa sizeHint()
*/
QSize QwtThermo::minimumSizeHint() const
{
int w = 0, h = 0;
if ( d_data->scalePos != NoScale )
{
const int sdExtent = qCeil( scaleDraw->extent( font() ) );
//const int sdLength = scaleDraw->minLength( font() );
//w = sdLength;
h = d_data->pipeWidth + sdExtent +
d_data->borderWidth + d_data->spacing;
}
else // no scale
{
w = 200;
h = d_data->pipeWidth;
}
if ( d_data->orientation == Qt::Vertical )
qSwap( w, h );
w += 2 * d_data->borderWidth;
h += 2 * d_data->borderWidth;
int left, right, top, bottom;
getContentsMargins( &left, &top, &right, &bottom );
w += left + right;
h += top + bottom;
return QSize( w, h );
}