qwt_dial.cpp
26.9 KB
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
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
/* -*- 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_dial.h"
#include "qwt_dial_needle.h"
#include "qwt_math.h"
#include "qwt_scale_engine.h"
#include "qwt_scale_map.h"
#include "qwt_painter.h"
#include <qpainter.h>
#include <qbitmap.h>
#include <qpalette.h>
#include <qpixmap.h>
#include <qevent.h>
#include <qalgorithms.h>
#include <qmath.h>
#include <qstyle.h>
#include <qstyleoption.h>
#include <qapplication.h>
#if QT_VERSION < 0x040601
#define qAtan(x) ::atan(x)
#endif
class QwtDial::PrivateData
{
public:
PrivateData():
frameShadow( Sunken ),
lineWidth( 0 ),
mode( RotateNeedle ),
direction( Clockwise ),
origin( 90.0 ),
minScaleArc( 0.0 ),
maxScaleArc( 0.0 ),
scaleDraw( 0 ),
maxMajIntv( 36 ),
maxMinIntv( 10 ),
scaleStep( 0.0 ),
needle( 0 )
{
}
~PrivateData()
{
delete scaleDraw;
delete needle;
}
Shadow frameShadow;
int lineWidth;
QwtDial::Mode mode;
QwtDial::Direction direction;
double origin;
double minScaleArc;
double maxScaleArc;
QwtDialScaleDraw *scaleDraw;
int maxMajIntv;
int maxMinIntv;
double scaleStep;
QwtDialNeedle *needle;
static double previousDir;
};
double QwtDial::PrivateData::previousDir = -1.0;
/*!
Constructor
\param parent Parent dial widget
*/
QwtDialScaleDraw::QwtDialScaleDraw( QwtDial *parent ):
d_parent( parent ),
d_penWidth( 1.0 )
{
}
/*!
Set the pen width used for painting the scale
\param penWidth Pen width
\sa penWidth(), QwtDial::drawScale()
*/
void QwtDialScaleDraw::setPenWidth( double penWidth )
{
d_penWidth = qMax( penWidth, 0.0 );
}
/*!
\return Pen width used for painting the scale
\sa setPenWidth, QwtDial::drawScale()
*/
double QwtDialScaleDraw::penWidth() const
{
return d_penWidth;
}
/*!
Call QwtDial::scaleLabel of the parent dial widget.
\param value Value to display
\sa QwtDial::scaleLabel()
*/
QwtText QwtDialScaleDraw::label( double value ) const
{
if ( d_parent == NULL )
return QwtRoundScaleDraw::label( value );
return d_parent->scaleLabel( value );
}
/*!
\brief Constructor
\param parent Parent widget
Create a dial widget with no scale and no needle.
The default origin is 90.0 with no valid value. It accepts
mouse and keyboard inputs and has no step size. The default mode
is QwtDial::RotateNeedle.
*/
QwtDial::QwtDial( QWidget* parent ):
QwtAbstractSlider( Qt::Horizontal, parent )
{
initDial();
}
void QwtDial::initDial()
{
d_data = new PrivateData;
setFocusPolicy( Qt::TabFocus );
QPalette p = palette();
for ( int i = 0; i < QPalette::NColorGroups; i++ )
{
const QPalette::ColorGroup cg = ( QPalette::ColorGroup )i;
// Base: background color of the circle inside the frame.
// WindowText: background color of the circle inside the scale
p.setColor( cg, QPalette::WindowText,
p.color( cg, QPalette::Base ) );
}
setPalette( p );
d_data->scaleDraw = new QwtDialScaleDraw( this );
d_data->scaleDraw->setRadius( 0 );
setScaleArc( 0.0, 360.0 ); // scale as a full circle
setRange( 0.0, 360.0, 1.0, 10 ); // degrees as deafult
}
//! Destructor
QwtDial::~QwtDial()
{
delete d_data;
}
/*!
Sets the frame shadow value from the frame style.
\param shadow Frame shadow
\sa setLineWidth(), QFrame::setFrameShadow()
*/
void QwtDial::setFrameShadow( Shadow shadow )
{
if ( shadow != d_data->frameShadow )
{
d_data->frameShadow = shadow;
if ( lineWidth() > 0 )
update();
}
}
/*!
\return Frame shadow
/sa setFrameShadow(), lineWidth(), QFrame::frameShadow
*/
QwtDial::Shadow QwtDial::frameShadow() const
{
return d_data->frameShadow;
}
/*!
Sets the line width
\param lineWidth Line width
\sa setFrameShadow()
*/
void QwtDial::setLineWidth( int lineWidth )
{
if ( lineWidth < 0 )
lineWidth = 0;
if ( d_data->lineWidth != lineWidth )
{
d_data->lineWidth = lineWidth;
update();
}
}
/*!
\return Line width of the frame
\sa setLineWidth(), frameShadow(), lineWidth()
*/
int QwtDial::lineWidth() const
{
return d_data->lineWidth;
}
/*!
\return bounding rect of the circle inside the frame
\sa setLineWidth(), scaleInnerRect(), boundingRect()
*/
QRectF QwtDial::innerRect() const
{
const double lw = lineWidth();
return boundingRect().adjusted( lw, lw, -lw, -lw );
}
/*!
\return bounding rect of the dial including the frame
\sa setLineWidth(), scaleInnerRect(), innerRect()
*/
QRectF QwtDial::boundingRect() const
{
const QRectF cr = contentsRect();
const double dim = qMin( cr.width(), cr.height() );
QRectF inner( 0, 0, dim, dim );
inner.moveCenter( cr.center() );
return inner;
}
/*!
\return rect inside the scale
\sa setLineWidth(), boundingRect(), innerRect()
*/
QRectF QwtDial::scaleInnerRect() const
{
QRectF rect = innerRect();
if ( d_data->scaleDraw )
{
double scaleDist = qCeil( d_data->scaleDraw->extent( font() ) );
scaleDist++; // margin
rect.adjust( scaleDist, scaleDist, -scaleDist, -scaleDist );
}
return rect;
}
/*!
\brief Change the mode of the meter.
\param mode New mode
The value of the meter is indicated by the difference
between north of the scale and the direction of the needle.
In case of QwtDial::RotateNeedle north is pointing
to the origin() and the needle is rotating, in case of
QwtDial::RotateScale, the needle points to origin()
and the scale is rotating.
The default mode is QwtDial::RotateNeedle.
\sa mode(), setValue(), setOrigin()
*/
void QwtDial::setMode( Mode mode )
{
if ( mode != d_data->mode )
{
d_data->mode = mode;
update();
}
}
/*!
\return mode of the dial.
The value of the dial is indicated by the difference
between the origin and the direction of the needle.
In case of QwtDial::RotateNeedle the scale arc is fixed
to the origin() and the needle is rotating, in case of
QwtDial::RotateScale, the needle points to origin()
and the scale is rotating.
The default mode is QwtDial::RotateNeedle.
\sa setMode(), origin(), setScaleArc(), value()
*/
QwtDial::Mode QwtDial::mode() const
{
return d_data->mode;
}
/*!
Sets whether it is possible to step the value from the highest value to
the lowest value and vice versa to on.
\param wrapping en/disables wrapping
\sa wrapping(), QwtDoubleRange::periodic()
\note The meaning of wrapping is like the wrapping property of QSpinBox,
but not like it is used in QDial.
*/
void QwtDial::setWrapping( bool wrapping )
{
setPeriodic( wrapping );
}
/*!
wrapping() holds whether it is possible to step the value from the
highest value to the lowest value and vice versa.
\sa setWrapping(), QwtDoubleRange::setPeriodic()
\note The meaning of wrapping is like the wrapping property of QSpinBox,
but not like it is used in QDial.
*/
bool QwtDial::wrapping() const
{
return periodic();
}
/*!
Set the direction of the dial (clockwise/counterclockwise)
\param direction Direction
\sa direction()
*/
void QwtDial::setDirection( Direction direction )
{
if ( direction != d_data->direction )
{
d_data->direction = direction;
update();
}
}
/*!
\return Direction of the dial
The default direction of a dial is QwtDial::Clockwise
\sa setDirection()
*/
QwtDial::Direction QwtDial::direction() const
{
return d_data->direction;
}
/*!
Paint the dial
\param event Paint event
*/
void QwtDial::paintEvent( QPaintEvent *event )
{
QPainter painter( this );
painter.setClipRegion( event->region() );
QStyleOption opt;
opt.init(this);
style()->drawPrimitive(QStyle::PE_Widget, &opt, &painter, this);
painter.setRenderHint( QPainter::Antialiasing, true );
painter.save();
drawContents( &painter );
painter.restore();
painter.save();
drawFrame( &painter );
painter.restore();
if ( hasFocus() )
drawFocusIndicator( &painter );
}
/*!
Draw a dotted round circle, if !isReadOnly()
\param painter Painter
*/
void QwtDial::drawFocusIndicator( QPainter *painter ) const
{
if ( !isReadOnly() )
{
QRectF focusRect = innerRect();
const int margin = 2;
focusRect.adjust( margin, margin, -margin, -margin );
QColor color = palette().color( QPalette::Base );
if ( color.isValid() )
{
const QColor gray( Qt::gray );
int h, s, v;
color.getHsv( &h, &s, &v );
color = ( v > 128 ) ? gray.dark( 120 ) : gray.light( 120 );
}
else
color = Qt::darkGray;
painter->save();
painter->setBrush( Qt::NoBrush );
painter->setPen( QPen( color, 0, Qt::DotLine ) );
painter->drawEllipse( focusRect );
painter->restore();
}
}
/*!
Draw the frame around the dial
\param painter Painter
\sa lineWidth(), frameShadow()
*/
void QwtDial::drawFrame( QPainter *painter )
{
if ( lineWidth() <= 0 )
return;
const double lw2 = 0.5 * lineWidth();
QRectF r = boundingRect();
r.adjust( lw2, lw2, -lw2, -lw2 );
QPen pen;
switch ( d_data->frameShadow )
{
case QwtDial::Raised:
case QwtDial::Sunken:
{
QColor c1 = palette().color( QPalette::Light );
QColor c2 = palette().color( QPalette::Dark );
if ( d_data->frameShadow == QwtDial::Sunken )
qSwap( c1, c2 );
QLinearGradient gradient( r.topLeft(), r.bottomRight() );
gradient.setColorAt( 0.0, c1 );
#if 0
gradient.setColorAt( 0.3, c1 );
gradient.setColorAt( 0.7, c2 );
#endif
gradient.setColorAt( 1.0, c2 );
pen = QPen( gradient, lineWidth() );
break;
}
default: // Plain
{
pen = QPen( palette().brush( QPalette::Dark ), lineWidth() );
}
}
painter->save();
painter->setPen( pen );
painter->setBrush( Qt::NoBrush );
painter->drawEllipse( r );
painter->restore();
}
/*!
\brief Draw the contents inside the frame
QPalette::Window is the background color outside of the frame.
QPalette::Base is the background color inside the frame.
QPalette::WindowText is the background color inside the scale.
\param painter Painter
\sa boundingRect(), innerRect(),
scaleInnerRect(), QWidget::setPalette()
*/
void QwtDial::drawContents( QPainter *painter ) const
{
if ( testAttribute( Qt::WA_NoSystemBackground ) ||
palette().brush( QPalette::Base ) !=
palette().brush( QPalette::Window ) )
{
const QRectF br = boundingRect();
painter->save();
painter->setPen( Qt::NoPen );
painter->setBrush( palette().brush( QPalette::Base ) );
painter->drawEllipse( br );
painter->restore();
}
const QRectF insideScaleRect = scaleInnerRect();
if ( palette().brush( QPalette::WindowText ) !=
palette().brush( QPalette::Base ) )
{
painter->save();
painter->setPen( Qt::NoPen );
painter->setBrush( palette().brush( QPalette::WindowText ) );
painter->drawEllipse( insideScaleRect );
painter->restore();
}
const QPointF center = insideScaleRect.center();
const double radius = 0.5 * insideScaleRect.width();
double direction = d_data->origin;
if ( isValid() )
{
direction = d_data->minScaleArc;
if ( maxValue() > minValue() &&
d_data->maxScaleArc > d_data->minScaleArc )
{
const double ratio =
( value() - minValue() ) / ( maxValue() - minValue() );
direction += ratio * ( d_data->maxScaleArc - d_data->minScaleArc );
}
if ( d_data->direction == QwtDial::CounterClockwise )
direction = d_data->maxScaleArc - ( direction - d_data->minScaleArc );
direction += d_data->origin;
if ( direction >= 360.0 )
direction -= 360.0;
else if ( direction < 0.0 )
direction += 360.0;
}
double origin = d_data->origin;
if ( mode() == RotateScale )
{
origin -= direction - d_data->origin;
direction = d_data->origin;
}
painter->save();
drawScale( painter, center, radius, origin,
d_data->minScaleArc, d_data->maxScaleArc );
painter->restore();
painter->save();
drawScaleContents( painter, center, radius );
painter->restore();
if ( isValid() )
{
QPalette::ColorGroup cg;
if ( isEnabled() )
cg = hasFocus() ? QPalette::Active : QPalette::Inactive;
else
cg = QPalette::Disabled;
painter->save();
drawNeedle( painter, center, radius, direction, cg );
painter->restore();
}
}
/*!
Draw the needle
\param painter Painter
\param center Center of the dial
\param radius Length for the needle
\param direction Direction of the needle in degrees, counter clockwise
\param cg ColorGroup
*/
void QwtDial::drawNeedle( QPainter *painter, const QPointF ¢er,
double radius, double direction, QPalette::ColorGroup cg ) const
{
if ( d_data->needle )
{
direction = 360.0 - direction; // counter clockwise
d_data->needle->draw( painter, center, radius, direction, cg );
}
}
/*!
Draw the scale
\param painter Painter
\param center Center of the dial
\param radius Radius of the scale
\param origin Origin of the scale
\param minArc Minimum of the arc
\param maxArc Minimum of the arc
\sa QwtRoundScaleDraw::setAngleRange()
*/
void QwtDial::drawScale( QPainter *painter, const QPointF ¢er,
double radius, double origin, double minArc, double maxArc ) const
{
if ( d_data->scaleDraw == NULL )
return;
origin -= 270.0; // hardcoded origin of QwtScaleDraw
double angle = maxArc - minArc;
if ( angle > 360.0 )
angle = ::fmod( angle, 360.0 );
minArc += origin;
if ( minArc < -360.0 )
minArc = ::fmod( minArc, 360.0 );
maxArc = minArc + angle;
if ( maxArc > 360.0 )
{
// QwtRoundScaleDraw::setAngleRange accepts only values
// in the range [-360.0..360.0]
minArc -= 360.0;
maxArc -= 360.0;
}
if ( d_data->direction == QwtDial::CounterClockwise )
qSwap( minArc, maxArc );
painter->setFont( font() );
d_data->scaleDraw->setAngleRange( minArc, maxArc );
d_data->scaleDraw->setRadius( radius );
d_data->scaleDraw->moveCenter( center );
QPalette pal = palette();
const QColor textColor = pal.color( QPalette::Text );
pal.setColor( QPalette::WindowText, textColor ); //ticks, backbone
painter->setPen( QPen( textColor, d_data->scaleDraw->penWidth() ) );
painter->setBrush( Qt::red );
d_data->scaleDraw->draw( painter, pal );
}
/*!
Draw the contents inside the scale
Paints nothing.
\param painter Painter
\param center Center of the contents circle
\param radius Radius of the contents circle
*/
void QwtDial::drawScaleContents( QPainter *painter,
const QPointF ¢er, double radius ) const
{
Q_UNUSED(painter);
Q_UNUSED(center);
Q_UNUSED(radius);
}
/*!
Set a needle for the dial
Qwt is missing a set of good looking needles.
Contributions are very welcome.
\param needle Needle
\warning The needle will be deleted, when a different needle is
set or in ~QwtDial()
*/
void QwtDial::setNeedle( QwtDialNeedle *needle )
{
if ( needle != d_data->needle )
{
if ( d_data->needle )
delete d_data->needle;
d_data->needle = needle;
update();
}
}
/*!
\return needle
\sa setNeedle()
*/
const QwtDialNeedle *QwtDial::needle() const
{
return d_data->needle;
}
/*!
\return needle
\sa setNeedle()
*/
QwtDialNeedle *QwtDial::needle()
{
return d_data->needle;
}
//! QwtDoubleRange update hook
void QwtDial::rangeChange()
{
updateScale();
}
/*!
Update the scale with the current attributes
\sa setScale()
*/
void QwtDial::updateScale()
{
if ( d_data->scaleDraw )
{
QwtLinearScaleEngine scaleEngine;
const QwtScaleDiv scaleDiv = scaleEngine.divideScale(
minValue(), maxValue(),
d_data->maxMajIntv, d_data->maxMinIntv, d_data->scaleStep );
d_data->scaleDraw->setTransformation( scaleEngine.transformation() );
d_data->scaleDraw->setScaleDiv( scaleDiv );
}
}
//! Return the scale draw
QwtDialScaleDraw *QwtDial::scaleDraw()
{
return d_data->scaleDraw;
}
//! Return the scale draw
const QwtDialScaleDraw *QwtDial::scaleDraw() const
{
return d_data->scaleDraw;
}
/*!
Set an individual scale draw
\param scaleDraw Scale draw
\warning The previous scale draw is deleted
*/
void QwtDial::setScaleDraw( QwtDialScaleDraw *scaleDraw )
{
if ( scaleDraw != d_data->scaleDraw )
{
if ( d_data->scaleDraw )
delete d_data->scaleDraw;
d_data->scaleDraw = scaleDraw;
updateScale();
update();
}
}
/*!
Change the intervals of the scale
\param maxMajIntv Maximum for the number of major steps
\param maxMinIntv Maximum number of minor steps
\param step Step size
\sa QwtScaleEngine::divideScale()
*/
void QwtDial::setScale( int maxMajIntv, int maxMinIntv, double step )
{
d_data->maxMajIntv = maxMajIntv;
d_data->maxMinIntv = maxMinIntv;
d_data->scaleStep = step;
updateScale();
}
/*!
A wrapper method for accessing the scale draw.
\param components Scale components
\sa QwtAbstractScaleDraw::enableComponent()
*/
void QwtDial::setScaleComponents(
QwtAbstractScaleDraw::ScaleComponents components )
{
if ( components == 0 )
setScaleDraw( NULL );
QwtDialScaleDraw *sd = d_data->scaleDraw;
if ( sd == NULL )
return;
sd->enableComponent( QwtAbstractScaleDraw::Backbone,
components & QwtAbstractScaleDraw::Backbone );
sd->enableComponent( QwtAbstractScaleDraw::Ticks,
components & QwtAbstractScaleDraw::Ticks );
sd->enableComponent( QwtAbstractScaleDraw::Labels,
components & QwtAbstractScaleDraw::Labels );
}
/*!
Assign length and width of the ticks
\param minLen Length of the minor ticks
\param medLen Length of the medium ticks
\param majLen Length of the major ticks
\param penWidth Width of the pen for all ticks
\sa QwtAbstractScaleDraw::setTickLength(), QwtDialScaleDraw::setPenWidth()
*/
void QwtDial::setScaleTicks( int minLen, int medLen,
int majLen, int penWidth )
{
QwtDialScaleDraw *sd = d_data->scaleDraw;
if ( sd )
{
sd->setTickLength( QwtScaleDiv::MinorTick, minLen );
sd->setTickLength( QwtScaleDiv::MediumTick, medLen );
sd->setTickLength( QwtScaleDiv::MajorTick, majLen );
sd->setPenWidth( penWidth );
}
}
/*!
Find the label for a value
\param value Value
\return label
*/
QwtText QwtDial::scaleLabel( double value ) const
{
#if 1
if ( value == -0 )
value = 0;
#endif
return QString::number( value );
}
//! \return Lower limit of the scale arc
double QwtDial::minScaleArc() const
{
return d_data->minScaleArc;
}
//! \return Upper limit of the scale arc
double QwtDial::maxScaleArc() const
{
return d_data->maxScaleArc;
}
/*!
\brief Change the origin
The origin is the angle where scale and needle is relative to.
\param origin New origin
\sa origin()
*/
void QwtDial::setOrigin( double origin )
{
d_data->origin = origin;
update();
}
/*!
The origin is the angle where scale and needle is relative to.
\return Origin of the dial
\sa setOrigin()
*/
double QwtDial::origin() const
{
return d_data->origin;
}
/*!
Change the arc of the scale
\param minArc Lower limit
\param maxArc Upper limit
*/
void QwtDial::setScaleArc( double minArc, double maxArc )
{
if ( minArc != 360.0 && minArc != -360.0 )
minArc = ::fmod( minArc, 360.0 );
if ( maxArc != 360.0 && maxArc != -360.0 )
maxArc = ::fmod( maxArc, 360.0 );
d_data->minScaleArc = qMin( minArc, maxArc );
d_data->maxScaleArc = qMax( minArc, maxArc );
if ( d_data->maxScaleArc - d_data->minScaleArc > 360.0 )
d_data->maxScaleArc = d_data->minScaleArc + 360.0;
update();
}
//! QwtDoubleRange update hook
void QwtDial::valueChange()
{
update();
QwtAbstractSlider::valueChange();
}
/*!
\return Size hint
*/
QSize QwtDial::sizeHint() const
{
int sh = 0;
if ( d_data->scaleDraw )
sh = qCeil( d_data->scaleDraw->extent( font() ) );
const int d = 6 * sh + 2 * lineWidth();
QSize hint( d, d );
if ( !isReadOnly() )
hint = hint.expandedTo( QApplication::globalStrut() );
return hint;
}
/*!
\brief Return a minimum size hint
\warning The return value of QwtDial::minimumSizeHint() depends on the
font and the scale.
*/
QSize QwtDial::minimumSizeHint() const
{
int sh = 0;
if ( d_data->scaleDraw )
sh = qCeil( d_data->scaleDraw->extent( font() ) );
const int d = 3 * sh + 2 * lineWidth();
return QSize( d, d );
}
static double line2Radians( const QPointF &p1, const QPointF &p2 )
{
const QPointF p = p2 - p1;
double angle;
if ( p.x() == 0 )
angle = ( p.y() <= 0.0 ) ? M_PI_2 : 3 * M_PI_2;
else
{
angle = qAtan( double( -p.y() ) / double( p.x() ) );
if ( p.x() < 0.0 )
angle += M_PI;
if ( angle < 0.0 )
angle += 2 * M_PI;
}
return 360.0 - angle * 180.0 / M_PI;
}
/*!
Find the value for a given position
\param pos Position
\return Value
*/
double QwtDial::getValue( const QPoint &pos )
{
if ( d_data->maxScaleArc == d_data->minScaleArc || maxValue() == minValue() )
return minValue();
double dir = line2Radians( innerRect().center(), pos ) - d_data->origin;
if ( dir < 0.0 )
dir += 360.0;
if ( mode() == RotateScale )
dir = 360.0 - dir;
// The position might be in the area that is outside the scale arc.
// We need the range of the scale if it was a complete circle.
const double completeCircle = 360.0 / ( d_data->maxScaleArc - d_data->minScaleArc )
* ( maxValue() - minValue() );
double posValue = minValue() + completeCircle * dir / 360.0;
if ( scrollMode() == ScrMouse )
{
if ( d_data->previousDir >= 0.0 ) // valid direction
{
// We have to find out whether the mouse is moving
// clock or counter clockwise
bool clockWise = false;
const double angle = dir - d_data->previousDir;
if ( ( angle >= 0.0 && angle <= 180.0 ) || angle < -180.0 )
clockWise = true;
if ( clockWise )
{
if ( dir < d_data->previousDir && mouseOffset() > 0.0 )
{
// We passed 360 -> 0
setMouseOffset( mouseOffset() - completeCircle );
}
if ( wrapping() )
{
if ( posValue - mouseOffset() > maxValue() )
{
// We passed maxValue and the value will be set
// to minValue. We have to adjust the mouseOffset.
setMouseOffset( posValue - minValue() );
}
}
else
{
if ( posValue - mouseOffset() > maxValue() ||
value() == maxValue() )
{
// We fix the value at maxValue by adjusting
// the mouse offset.
setMouseOffset( posValue - maxValue() );
}
}
}
else
{
if ( dir > d_data->previousDir && mouseOffset() < 0.0 )
{
// We passed 0 -> 360
setMouseOffset( mouseOffset() + completeCircle );
}
if ( wrapping() )
{
if ( posValue - mouseOffset() < minValue() )
{
// We passed minValue and the value will be set
// to maxValue. We have to adjust the mouseOffset.
setMouseOffset( posValue - maxValue() );
}
}
else
{
if ( posValue - mouseOffset() < minValue() ||
value() == minValue() )
{
// We fix the value at minValue by adjusting
// the mouse offset.
setMouseOffset( posValue - minValue() );
}
}
}
}
d_data->previousDir = dir;
}
return posValue;
}
/*!
See QwtAbstractSlider::getScrollMode()
\param pos point where the mouse was pressed
\retval scrollMode The scrolling mode
\retval direction direction: 1, 0, or -1.
\sa QwtAbstractSlider::getScrollMode()
*/
void QwtDial::getScrollMode( const QPoint &pos,
QwtAbstractSlider::ScrollMode &scrollMode, int &direction ) const
{
direction = 0;
scrollMode = QwtAbstractSlider::ScrNone;
const QRegion region( innerRect().toRect(), QRegion::Ellipse );
if ( region.contains( pos ) && pos != innerRect().center() )
{
scrollMode = QwtAbstractSlider::ScrMouse;
d_data->previousDir = -1.0;
}
}
/*!
Handles key events
- Key_Down, KeyLeft\n
Decrement by 1
- Key_Prior\n
Decrement by pageSize()
- Key_Home\n
Set the value to minValue()
- Key_Up, KeyRight\n
Increment by 1
- Key_Next\n
Increment by pageSize()
- Key_End\n
Set the value to maxValue()
\param event Key event
\sa isReadOnly()
*/
void QwtDial::keyPressEvent( QKeyEvent *event )
{
if ( isReadOnly() )
{
event->ignore();
return;
}
if ( !isValid() )
return;
double previous = prevValue();
switch ( event->key() )
{
case Qt::Key_Down:
case Qt::Key_Left:
QwtDoubleRange::incValue( -1 );
break;
case Qt::Key_PageUp:
QwtDoubleRange::incValue( -pageSize() );
break;
case Qt::Key_Home:
setValue( minValue() );
break;
case Qt::Key_Up:
case Qt::Key_Right:
QwtDoubleRange::incValue( 1 );
break;
case Qt::Key_PageDown:
QwtDoubleRange::incValue( pageSize() );
break;
case Qt::Key_End:
setValue( maxValue() );
break;
default:;
event->ignore();
}
if ( value() != previous )
Q_EMIT sliderMoved( value() );
}