QwtDial.3
14.5 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
.TH "QwtDial" 3 "Sat Jan 26 2013" "Version 6.1-rc3" "Qwt User's Guide" \" -*- nroff -*-
.ad l
.nh
.SH NAME
QwtDial \-
.PP
\fBQwtDial\fP class provides a rounded range control\&.
.SH SYNOPSIS
.br
.PP
.PP
\fC#include <qwt_dial\&.h>\fP
.PP
Inherits \fBQwtAbstractSlider\fP\&.
.PP
Inherited by \fBQwtAnalogClock\fP, and \fBQwtCompass\fP\&.
.SS "Public Types"
.in +1c
.ti -1c
.RI "enum \fBShadow\fP { \fBPlain\fP = QFrame::Plain, \fBRaised\fP = QFrame::Raised, \fBSunken\fP = QFrame::Sunken }"
.br
.RI "\fIFrame shadow\&. \fP"
.ti -1c
.RI "enum \fBMode\fP { \fBRotateNeedle\fP, \fBRotateScale\fP }"
.br
.RI "\fIMode controlling whether the needle or the scale is rotating\&. \fP"
.in -1c
.SS "Public Member Functions"
.in +1c
.ti -1c
.RI "\fBQwtDial\fP (QWidget *parent=NULL)"
.br
.RI "\fIConstructor\&. \fP"
.ti -1c
.RI "virtual \fB~QwtDial\fP ()"
.br
.RI "\fIDestructor\&. \fP"
.ti -1c
.RI "void \fBsetFrameShadow\fP (\fBShadow\fP)"
.br
.ti -1c
.RI "\fBShadow\fP \fBframeShadow\fP () const "
.br
.ti -1c
.RI "void \fBsetLineWidth\fP (int)"
.br
.ti -1c
.RI "int \fBlineWidth\fP () const "
.br
.ti -1c
.RI "void \fBsetMode\fP (\fBMode\fP)"
.br
.RI "\fIChange the mode of the dial\&. \fP"
.ti -1c
.RI "\fBMode\fP \fBmode\fP () const "
.br
.ti -1c
.RI "void \fBsetScaleArc\fP (double min, double max)"
.br
.ti -1c
.RI "void \fBsetMinScaleArc\fP (double min)"
.br
.ti -1c
.RI "double \fBminScaleArc\fP () const "
.br
.ti -1c
.RI "void \fBsetMaxScaleArc\fP (double min)"
.br
.ti -1c
.RI "double \fBmaxScaleArc\fP () const "
.br
.ti -1c
.RI "virtual void \fBsetOrigin\fP (double)"
.br
.RI "\fIChange the origin\&. \fP"
.ti -1c
.RI "double \fBorigin\fP () const "
.br
.ti -1c
.RI "void \fBsetNeedle\fP (\fBQwtDialNeedle\fP *)"
.br
.ti -1c
.RI "const \fBQwtDialNeedle\fP * \fBneedle\fP () const "
.br
.ti -1c
.RI "\fBQwtDialNeedle\fP * \fBneedle\fP ()"
.br
.ti -1c
.RI "QRect \fBboundingRect\fP () const "
.br
.ti -1c
.RI "QRect \fBinnerRect\fP () const "
.br
.ti -1c
.RI "virtual QRect \fBscaleInnerRect\fP () const "
.br
.ti -1c
.RI "virtual QSize \fBsizeHint\fP () const "
.br
.ti -1c
.RI "virtual QSize \fBminimumSizeHint\fP () const "
.br
.ti -1c
.RI "void \fBsetScaleDraw\fP (\fBQwtRoundScaleDraw\fP *)"
.br
.ti -1c
.RI "\fBQwtRoundScaleDraw\fP * \fBscaleDraw\fP ()"
.br
.ti -1c
.RI "const \fBQwtRoundScaleDraw\fP * \fBscaleDraw\fP () const "
.br
.in -1c
.SS "Protected Member Functions"
.in +1c
.ti -1c
.RI "virtual void \fBwheelEvent\fP (QWheelEvent *)"
.br
.ti -1c
.RI "virtual void \fBpaintEvent\fP (QPaintEvent *)"
.br
.ti -1c
.RI "virtual void \fBchangeEvent\fP (QEvent *)"
.br
.ti -1c
.RI "virtual void \fBdrawFrame\fP (QPainter *p)"
.br
.ti -1c
.RI "virtual void \fBdrawContents\fP (QPainter *) const "
.br
.RI "\fIDraw the contents inside the frame\&. \fP"
.ti -1c
.RI "virtual void \fBdrawFocusIndicator\fP (QPainter *) const "
.br
.ti -1c
.RI "void \fBinvalidateCache\fP ()"
.br
.ti -1c
.RI "virtual void \fBdrawScale\fP (QPainter *, const QPointF ¢er, double radius) const "
.br
.ti -1c
.RI "virtual void \fBdrawScaleContents\fP (QPainter *painter, const QPointF ¢er, double radius) const "
.br
.ti -1c
.RI "virtual void \fBdrawNeedle\fP (QPainter *, const QPointF &, double radius, double direction, QPalette::ColorGroup) const "
.br
.ti -1c
.RI "virtual double \fBscrolledTo\fP (const QPoint &) const "
.br
.RI "\fIDetermine the value for a new position of the slider handle\&. \fP"
.ti -1c
.RI "virtual bool \fBisScrollPosition\fP (const QPoint &) const "
.br
.RI "\fIDetermine what to do when the user presses a mouse button\&. \fP"
.ti -1c
.RI "virtual void \fBsliderChange\fP ()"
.br
.RI "\fICalling update() \fP"
.ti -1c
.RI "virtual void \fBscaleChange\fP ()"
.br
.in -1c
.SS "Additional Inherited Members"
.SH "Detailed Description"
.PP
\fBQwtDial\fP class provides a rounded range control\&.
\fBQwtDial\fP is intended as base class for dial widgets like speedometers, compass widgets, clocks \&.\&.\&.
.PP
.PP
A dial contains a scale and a needle indicating the current value of the dial\&. Depending on Mode one of them is fixed and the other is rotating\&. If not \fBisReadOnly()\fP the dial can be rotated by dragging the mouse or using keyboard inputs (see \fBQwtAbstractSlider::keyPressEvent()\fP)\&. A dial might be wrapping, what means a rotation below/above one limit continues on the other limit (f\&.e compass)\&. The scale might cover any arc of the dial, its values are related to the \fBorigin()\fP of the dial\&.
.PP
Often dials have to be updated very often according to values from external devices\&. For these high refresh rates \fBQwtDial\fP caches as much as possible\&. For derived classes it might be necessary to clear these caches manually according to attribute changes using \fBinvalidateCache()\fP\&.
.PP
\fBSee Also:\fP
.RS 4
\fBQwtCompass\fP, \fBQwtAnalogClock\fP, \fBQwtDialNeedle\fP
.RE
.PP
\fBNote:\fP
.RS 4
The controls and dials examples shows different types of dials\&.
.PP
QDial is more similar to \fBQwtKnob\fP than to \fBQwtDial\fP
.RE
.PP
.SH "Member Enumeration Documentation"
.PP
.SS "enum \fBQwtDial::Mode\fP"
.PP
Mode controlling whether the needle or the scale is rotating\&.
.PP
\fBEnumerator\fP
.in +1c
.TP
\fB\fIRotateNeedle \fP\fP
The needle is rotating\&.
.TP
\fB\fIRotateScale \fP\fP
The needle is fixed, the scales are rotating\&.
.SS "enum \fBQwtDial::Shadow\fP"
.PP
Frame shadow\&. Unfortunately it is not possible to use QFrame::Shadow as a property of a widget that is not derived from QFrame\&. The following enum is made for the designer only\&. It is safe to use QFrame::Shadow instead\&.
.PP
\fBEnumerator\fP
.in +1c
.TP
\fB\fIPlain \fP\fP
QFrame::Plain\&.
.TP
\fB\fIRaised \fP\fP
QFrame::Raised\&.
.TP
\fB\fISunken \fP\fP
QFrame::Sunken\&.
.SH "Constructor & Destructor Documentation"
.PP
.SS "QwtDial::QwtDial (QWidget *parent = \fCNULL\fP)\fC [explicit]\fP"
.PP
Constructor\&. \fBParameters:\fP
.RS 4
\fIparent\fP Parent widget
.RE
.PP
Create a dial widget with no needle\&. The scale is initialized to [ 0\&.0, 360\&.0 ] and 360 steps ( \fBQwtAbstractSlider::setTotalSteps()\fP )\&. The origin of the scale is at 90°,
.PP
The value is set to 0\&.0\&.
.PP
The default mode is \fBQwtDial::RotateNeedle\fP\&.
.SH "Member Function Documentation"
.PP
.SS "QRect QwtDial::boundingRect () const"
\fBReturns:\fP
.RS 4
bounding rectangle of the dial including the frame
.RE
.PP
\fBSee Also:\fP
.RS 4
\fBsetLineWidth()\fP, \fBscaleInnerRect()\fP, \fBinnerRect()\fP
.RE
.PP
.SS "void QwtDial::changeEvent (QEvent *event)\fC [protected]\fP, \fC [virtual]\fP"
Change Event handler
.PP
\fBParameters:\fP
.RS 4
\fIevent\fP Change event
.RE
.PP
Invalidates internal paint caches if necessary
.SS "void QwtDial::drawContents (QPainter *painter) const\fC [protected]\fP, \fC [virtual]\fP"
.PP
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\&.
.PP
\fBParameters:\fP
.RS 4
\fIpainter\fP Painter
.RE
.PP
\fBSee Also:\fP
.RS 4
\fBboundingRect()\fP, \fBinnerRect()\fP, \fBscaleInnerRect()\fP, QWidget::setPalette()
.RE
.PP
.SS "void QwtDial::drawFocusIndicator (QPainter *painter) const\fC [protected]\fP, \fC [virtual]\fP"
Draw the focus indicator
.PP
\fBParameters:\fP
.RS 4
\fIpainter\fP Painter
.RE
.PP
.SS "void QwtDial::drawFrame (QPainter *painter)\fC [protected]\fP, \fC [virtual]\fP"
Draw the frame around the dial
.PP
\fBParameters:\fP
.RS 4
\fIpainter\fP Painter
.RE
.PP
\fBSee Also:\fP
.RS 4
\fBlineWidth()\fP, \fBframeShadow()\fP
.RE
.PP
.SS "void QwtDial::drawNeedle (QPainter *painter, const QPointF ¢er, doubleradius, doubledirection, QPalette::ColorGroupcolorGroup) const\fC [protected]\fP, \fC [virtual]\fP"
Draw the needle
.PP
\fBParameters:\fP
.RS 4
\fIpainter\fP Painter
.br
\fIcenter\fP Center of the dial
.br
\fIradius\fP Length for the needle
.br
\fIdirection\fP Direction of the needle in degrees, counter clockwise
.br
\fIcolorGroup\fP ColorGroup
.RE
.PP
.PP
Reimplemented in \fBQwtAnalogClock\fP\&.
.SS "void QwtDial::drawScale (QPainter *painter, const QPointF ¢er, doubleradius) const\fC [protected]\fP, \fC [virtual]\fP"
Draw the scale
.PP
\fBParameters:\fP
.RS 4
\fIpainter\fP Painter
.br
\fIcenter\fP Center of the dial
.br
\fIradius\fP Radius of the scale
.RE
.PP
.SS "void QwtDial::drawScaleContents (QPainter *painter, const QPointF ¢er, doubleradius) const\fC [protected]\fP, \fC [virtual]\fP"
Draw the contents inside the scale
.PP
Paints nothing\&.
.PP
\fBParameters:\fP
.RS 4
\fIpainter\fP Painter
.br
\fIcenter\fP Center of the contents circle
.br
\fIradius\fP Radius of the contents circle
.RE
.PP
.PP
Reimplemented in \fBQwtCompass\fP\&.
.SS "\fBQwtDial::Shadow\fP QwtDial::frameShadow () const"
\fBReturns:\fP
.RS 4
Frame shadow /sa \fBsetFrameShadow()\fP, \fBlineWidth()\fP, QFrame::frameShadow()
.RE
.PP
.SS "QRect QwtDial::innerRect () const"
\fBReturns:\fP
.RS 4
bounding rectangle of the circle inside the frame
.RE
.PP
\fBSee Also:\fP
.RS 4
\fBsetLineWidth()\fP, \fBscaleInnerRect()\fP, \fBboundingRect()\fP
.RE
.PP
.SS "void QwtDial::invalidateCache ()\fC [protected]\fP"
Invalidate the internal caches used to speed up repainting
.SS "bool QwtDial::isScrollPosition (const QPoint &pos) const\fC [protected]\fP, \fC [virtual]\fP"
.PP
Determine what to do when the user presses a mouse button\&. \fBParameters:\fP
.RS 4
\fIpos\fP Mouse position
.RE
.PP
\fBReturn values:\fP
.RS 4
\fITrue,when\fP the inner circle contains pos
.RE
.PP
\fBSee Also:\fP
.RS 4
\fBscrolledTo()\fP
.RE
.PP
.PP
Implements \fBQwtAbstractSlider\fP\&.
.SS "int QwtDial::lineWidth () const"
\fBReturns:\fP
.RS 4
Line width of the frame
.RE
.PP
\fBSee Also:\fP
.RS 4
\fBsetLineWidth()\fP, \fBframeShadow()\fP, \fBlineWidth()\fP
.RE
.PP
.SS "double QwtDial::maxScaleArc () const"
\fBReturns:\fP
.RS 4
Upper limit of the scale arc
.RE
.PP
\fBSee Also:\fP
.RS 4
\fBsetScaleArc()\fP
.RE
.PP
.SS "QSize QwtDial::minimumSizeHint () const\fC [virtual]\fP"
\fBReturns:\fP
.RS 4
Minimum size hint
.RE
.PP
\fBSee Also:\fP
.RS 4
\fBsizeHint()\fP
.RE
.PP
.SS "double QwtDial::minScaleArc () const"
\fBReturns:\fP
.RS 4
Lower limit of the scale arc
.RE
.PP
\fBSee Also:\fP
.RS 4
\fBsetScaleArc()\fP
.RE
.PP
.SS "\fBQwtDial::Mode\fP QwtDial::mode () const"
\fBReturns:\fP
.RS 4
Mode of the dial\&.
.RE
.PP
\fBSee Also:\fP
.RS 4
\fBsetMode()\fP, \fBorigin()\fP, \fBsetScaleArc()\fP, \fBvalue()\fP
.RE
.PP
.SS "const \fBQwtDialNeedle\fP * QwtDial::needle () const"
\fBReturns:\fP
.RS 4
needle
.RE
.PP
\fBSee Also:\fP
.RS 4
\fBsetNeedle()\fP
.RE
.PP
.SS "\fBQwtDialNeedle\fP * QwtDial::needle ()"
\fBReturns:\fP
.RS 4
needle
.RE
.PP
\fBSee Also:\fP
.RS 4
\fBsetNeedle()\fP
.RE
.PP
.SS "double QwtDial::origin () const"
The origin is the angle where scale and needle is relative to\&.
.PP
\fBReturns:\fP
.RS 4
Origin of the dial
.RE
.PP
\fBSee Also:\fP
.RS 4
\fBsetOrigin()\fP
.RE
.PP
.SS "void QwtDial::paintEvent (QPaintEvent *event)\fC [protected]\fP, \fC [virtual]\fP"
Paint the dial
.PP
\fBParameters:\fP
.RS 4
\fIevent\fP Paint event
.RE
.PP
.SS "void QwtDial::scaleChange ()\fC [protected]\fP, \fC [virtual]\fP"
Invalidate the internal caches and call \fBQwtAbstractSlider::scaleChange()\fP
.PP
Reimplemented from \fBQwtAbstractSlider\fP\&.
.SS "\fBQwtRoundScaleDraw\fP * QwtDial::scaleDraw ()"
\fBReturns:\fP
.RS 4
the scale draw
.RE
.PP
.SS "const \fBQwtRoundScaleDraw\fP * QwtDial::scaleDraw () const"
\fBReturns:\fP
.RS 4
the scale draw
.RE
.PP
.SS "QRect QwtDial::scaleInnerRect () const\fC [virtual]\fP"
\fBReturns:\fP
.RS 4
rectangle inside the scale
.RE
.PP
\fBSee Also:\fP
.RS 4
\fBsetLineWidth()\fP, \fBboundingRect()\fP, \fBinnerRect()\fP
.RE
.PP
.SS "double QwtDial::scrolledTo (const QPoint &pos) const\fC [protected]\fP, \fC [virtual]\fP"
.PP
Determine the value for a new position of the slider handle\&. \fBParameters:\fP
.RS 4
\fIpos\fP Mouse position
.RE
.PP
\fBReturns:\fP
.RS 4
Value for the mouse position
.RE
.PP
\fBSee Also:\fP
.RS 4
\fBisScrollPosition()\fP
.RE
.PP
.PP
Implements \fBQwtAbstractSlider\fP\&.
.SS "void QwtDial::setFrameShadow (\fBShadow\fPshadow)"
Sets the frame shadow value from the frame style\&.
.PP
\fBParameters:\fP
.RS 4
\fIshadow\fP Frame shadow
.RE
.PP
\fBSee Also:\fP
.RS 4
\fBsetLineWidth()\fP, QFrame::setFrameShadow()
.RE
.PP
.SS "void QwtDial::setLineWidth (intlineWidth)"
Sets the line width of the frame
.PP
\fBParameters:\fP
.RS 4
\fIlineWidth\fP Line width
.RE
.PP
\fBSee Also:\fP
.RS 4
\fBsetFrameShadow()\fP
.RE
.PP
.SS "void QwtDial::setMaxScaleArc (doublemax)"
\fBSee Also:\fP
.RS 4
\fBsetScaleArc()\fP
.RE
.PP
.SS "void QwtDial::setMinScaleArc (doublemin)"
\fBSee Also:\fP
.RS 4
\fBsetScaleArc()\fP
.RE
.PP
.SS "void QwtDial::setMode (\fBMode\fPmode)"
.PP
Change the mode of the dial\&. \fBParameters:\fP
.RS 4
\fImode\fP New mode
.RE
.PP
In case of \fBQwtDial::RotateNeedle\fP the needle is rotating, in case of \fBQwtDial::RotateScale\fP, the needle points to \fBorigin()\fP and the scale is rotating\&.
.PP
The default mode is \fBQwtDial::RotateNeedle\fP\&.
.PP
\fBSee Also:\fP
.RS 4
\fBmode()\fP, \fBsetValue()\fP, \fBsetOrigin()\fP
.RE
.PP
.SS "void QwtDial::setNeedle (\fBQwtDialNeedle\fP *needle)"
Set a needle for the dial
.PP
\fBParameters:\fP
.RS 4
\fIneedle\fP Needle
.RE
.PP
\fBWarning:\fP
.RS 4
The needle will be deleted, when a different needle is set or in \fB~QwtDial()\fP
.RE
.PP
.SS "void QwtDial::setOrigin (doubleorigin)\fC [virtual]\fP"
.PP
Change the origin\&. The origin is the angle where scale and needle is relative to\&.
.PP
\fBParameters:\fP
.RS 4
\fIorigin\fP New origin
.RE
.PP
\fBSee Also:\fP
.RS 4
\fBorigin()\fP
.RE
.PP
.SS "void QwtDial::setScaleArc (doubleminArc, doublemaxArc)"
Change the arc of the scale
.PP
\fBParameters:\fP
.RS 4
\fIminArc\fP Lower limit
.br
\fImaxArc\fP Upper limit
.RE
.PP
\fBSee Also:\fP
.RS 4
\fBminScaleArc()\fP, \fBmaxScaleArc()\fP
.RE
.PP
.SS "void QwtDial::setScaleDraw (\fBQwtRoundScaleDraw\fP *scaleDraw)"
Set an individual scale draw
.PP
The motivation for setting a scale draw is often to overload \fBQwtRoundScaleDraw::label()\fP to return individual tick labels\&.
.PP
\fBParameters:\fP
.RS 4
\fIscaleDraw\fP Scale draw
.RE
.PP
\fBWarning:\fP
.RS 4
The previous scale draw is deleted
.RE
.PP
.SS "QSize QwtDial::sizeHint () const\fC [virtual]\fP"
\fBReturns:\fP
.RS 4
Size hint
.RE
.PP
\fBSee Also:\fP
.RS 4
\fBminimumSizeHint()\fP
.RE
.PP
.SS "void QwtDial::wheelEvent (QWheelEvent *event)\fC [protected]\fP, \fC [virtual]\fP"
Wheel Event handler
.PP
\fBParameters:\fP
.RS 4
\fIevent\fP Wheel event
.RE
.PP
.PP
Reimplemented from \fBQwtAbstractSlider\fP\&.
.SH "Author"
.PP
Generated automatically by Doxygen for Qwt User's Guide from the source code\&.