123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123 |
- .TH "QwtDialNeedle" 3 "Mon Dec 28 2020" "Version 6.1.6" "Qwt User's Guide" \" -*- nroff -*-
- .ad l
- .nh
- .SH NAME
- QwtDialNeedle \- Base class for needles that can be used in a \fBQwtDial\fP\&.
- .SH SYNOPSIS
- .br
- .PP
- .PP
- \fC#include <qwt_dial_needle\&.h>\fP
- .PP
- Inherited by \fBQwtCompassMagnetNeedle\fP, \fBQwtCompassWindArrow\fP, and \fBQwtDialSimpleNeedle\fP\&.
- .SS "Public Member Functions"
- .in +1c
- .ti -1c
- .RI "\fBQwtDialNeedle\fP ()"
- .br
- .RI "Constructor\&. "
- .ti -1c
- .RI "virtual \fB~QwtDialNeedle\fP ()"
- .br
- .RI "Destructor\&. "
- .ti -1c
- .RI "virtual void \fBsetPalette\fP (const QPalette &)"
- .br
- .ti -1c
- .RI "const QPalette & \fBpalette\fP () const"
- .br
- .ti -1c
- .RI "virtual void \fBdraw\fP (QPainter *painter, const QPointF ¢er, double length, double direction, QPalette::ColorGroup=QPalette::Active) const"
- .br
- .in -1c
- .SS "Protected Member Functions"
- .in +1c
- .ti -1c
- .RI "virtual void \fBdrawNeedle\fP (QPainter *painter, double length, QPalette::ColorGroup colorGroup) const =0"
- .br
- .RI "Draw the needle\&. "
- .ti -1c
- .RI "virtual void \fBdrawKnob\fP (QPainter *, double width, const QBrush &, bool sunken) const"
- .br
- .RI "Draw the knob\&. "
- .in -1c
- .SH "Detailed Description"
- .PP
- Base class for needles that can be used in a \fBQwtDial\fP\&.
- \fBQwtDialNeedle\fP is a pointer that indicates a value by pointing to a specific direction\&.
- .PP
- \fBSee also\fP
- .RS 4
- \fBQwtDial\fP, \fBQwtCompass\fP
- .RE
- .PP
- .SH "Member Function Documentation"
- .PP
- .SS "void QwtDialNeedle::draw (QPainter * painter, const QPointF & center, double length, double direction, QPalette::ColorGroup colorGroup = \fCQPalette::Active\fP) const\fC [virtual]\fP"
- Draw the needle
- .PP
- \fBParameters\fP
- .RS 4
- \fIpainter\fP Painter
- .br
- \fIcenter\fP Center of the dial, start position for the needle
- .br
- \fIlength\fP Length of the needle
- .br
- \fIdirection\fP Direction of the needle, in degrees counter clockwise
- .br
- \fIcolorGroup\fP Color group, used for painting
- .RE
- .PP
- .SS "virtual void QwtDialNeedle::drawNeedle (QPainter * painter, double length, QPalette::ColorGroup colorGroup) const\fC [protected]\fP, \fC [pure virtual]\fP"
- .PP
- Draw the needle\&. The origin of the needle is at position (0\&.0, 0\&.0 ) pointing in direction 0\&.0 ( = east )\&.
- .PP
- The painter is already initialized with translation and rotation\&.
- .PP
- \fBParameters\fP
- .RS 4
- \fIpainter\fP Painter
- .br
- \fIlength\fP Length of the needle
- .br
- \fIcolorGroup\fP Color group, used for painting
- .RE
- .PP
- \fBSee also\fP
- .RS 4
- \fBsetPalette()\fP, \fBpalette()\fP
- .RE
- .PP
- .PP
- Implemented in \fBQwtCompassWindArrow\fP, \fBQwtCompassMagnetNeedle\fP, and \fBQwtDialSimpleNeedle\fP\&.
- .SS "const QPalette & QwtDialNeedle::palette () const"
- .PP
- \fBReturns\fP
- .RS 4
- the palette of the needle\&.
- .RE
- .PP
- .SS "void QwtDialNeedle::setPalette (const QPalette & palette)\fC [virtual]\fP"
- Sets the palette for the needle\&.
- .PP
- \fBParameters\fP
- .RS 4
- \fIpalette\fP New Palette
- .RE
- .PP
- .SH "Author"
- .PP
- Generated automatically by Doxygen for Qwt User's Guide from the source code\&.
|