Qwt User's Guide svn
Public Types | Public Member Functions | Protected Member Functions
QwtRoundScaleDraw Class Reference

#include <qwt_round_scale_draw.h>

Inherits QwtAbstractScaleDraw.

Inherited by QwtDialScaleDraw.

List of all members.

Public Types

enum  ScaleComponent {
  Backbone = 0x01,
  Ticks = 0x02,
  Labels = 0x04
}
typedef QFlags< ScaleComponentScaleComponents

Public Member Functions

QPointF center () const
virtual void draw (QPainter *, const QPalette &) const
void enableComponent (ScaleComponent, bool enable=true)
virtual double extent (const QFont &) const
bool hasComponent (ScaleComponent) const
virtual QwtText label (double) const
double maxTickLength () const
double minimumExtent () const
void moveCenter (double x, double y)
void moveCenter (const QPointF &)
int penWidth () const
 QwtRoundScaleDraw ()
int radius () const
const QwtScaleDivscaleDiv () const
const QwtScaleMapscaleMap () const
QwtScaleMapscaleMap ()
void setAngleRange (double angle1, double angle2)
void setMinimumExtent (double)
void setPenWidth (int width)
void setRadius (int radius)
void setScaleDiv (const QwtScaleDiv &s)
void setSpacing (double margin)
void setTickLength (QwtScaleDiv::TickType, double length)
void setTransformation (QwtScaleTransformation *)
double spacing () const
double tickLength (QwtScaleDiv::TickType) const
virtual ~QwtRoundScaleDraw ()

Protected Member Functions

virtual void drawBackbone (QPainter *p) const
virtual void drawLabel (QPainter *p, double val) const
virtual void drawTick (QPainter *p, double val, double len) const
void invalidateCache ()
const QwtTexttickLabel (const QFont &, double value) const

Detailed Description

A class for drawing round scales.

QwtRoundScaleDraw can be used to draw round scales. The circle segment can be adjusted by QwtRoundScaleDraw::setAngleRange(). The geometry of the scale can be specified with QwtRoundScaleDraw::moveCenter() and QwtRoundScaleDraw::setRadius().

After a scale division has been specified as a QwtScaleDiv object using QwtAbstractScaleDraw::setScaleDiv(const QwtScaleDiv &s), the scale can be drawn with the QwtAbstractScaleDraw::draw() member.


Member Typedef Documentation

Scale components.


Member Enumeration Documentation

Components of a scale

See also:
enableComponent(), hasComponent
Enumerator:
Backbone 

Backbone = the line where the ticks are located.

Ticks 

Ticks.

Labels 

Labels.


Constructor & Destructor Documentation

QwtRoundScaleDraw::QwtRoundScaleDraw ( )

Constructor.

The range of the scale is initialized to [0, 100], The center is set to (50, 50) with a radius of 50. The angle range is set to [-135, 135].

QwtRoundScaleDraw::~QwtRoundScaleDraw ( ) [virtual]

Destructor.


Member Function Documentation

QPointF QwtRoundScaleDraw::center ( ) const

Get the center of the scale.

void QwtAbstractScaleDraw::draw ( QPainter *  painter,
const QPalette &  palette 
) const [virtual, inherited]

Draw the scale.

Parameters:
painterThe painter
palettePalette, text color is used for the labels, foreground color for ticks and backbone
void QwtRoundScaleDraw::drawBackbone ( QPainter *  painter) const [protected, virtual]

Draws the baseline of the scale

Parameters:
painterPainter
See also:
drawTick(), drawLabel()

Implements QwtAbstractScaleDraw.

void QwtRoundScaleDraw::drawLabel ( QPainter *  painter,
double  value 
) const [protected, virtual]

Draws the label for a major scale tick

Parameters:
painterPainter
valueValue
See also:
drawTick(), drawBackbone()

Implements QwtAbstractScaleDraw.

void QwtRoundScaleDraw::drawTick ( QPainter *  painter,
double  value,
double  len 
) const [protected, virtual]

Draw a tick

Parameters:
painterPainter
valueValue of the tick
lenLenght of the tick
See also:
drawBackbone(), drawLabel()

Implements QwtAbstractScaleDraw.

void QwtAbstractScaleDraw::enableComponent ( ScaleComponent  component,
bool  enable = true 
) [inherited]

En/Disable a component of the scale

Parameters:
componentScale component
enableOn/Off
See also:
hasComponent()
double QwtRoundScaleDraw::extent ( const QFont &  font) const [virtual]

Calculate the extent of the scale

The extent is the distance between the baseline to the outermost pixel of the scale draw. radius() + extent() is an upper limit for the radius of the bounding circle.

Parameters:
fontFont used for painting the labels
See also:
setMinimumExtent(), minimumExtent()
Warning:
The implemented algo is not too smart and calculates only an upper limit, that might be a few pixels too large

Implements QwtAbstractScaleDraw.

bool QwtAbstractScaleDraw::hasComponent ( ScaleComponent  component) const [inherited]

Check if a component is enabled

See also:
enableComponent()
void QwtAbstractScaleDraw::invalidateCache ( ) [protected, inherited]

Invalidate the cache used by QwtAbstractScaleDraw::tickLabel

The cache is invalidated, when a new QwtScaleDiv is set. If the labels need to be changed. while the same QwtScaleDiv is set, invalidateCache() needs to be called manually.

QwtText QwtAbstractScaleDraw::label ( double  value) const [virtual, inherited]

Convert a value into its representing label.

The value is converted to a plain text using QLocale::system().toString(value). This method is often overloaded by applications to have individual labels.

Parameters:
valueValue
Returns:
Label string.

Reimplemented in QwtDialScaleDraw.

double QwtAbstractScaleDraw::maxTickLength ( ) const [inherited]
Returns:
Length of the longest tick

Useful for layout calculations

See also:
tickLength(), setTickLength()
double QwtAbstractScaleDraw::minimumExtent ( ) const [inherited]

Get the minimum extent

See also:
extent(), setMinimumExtent()
void QwtRoundScaleDraw::moveCenter ( double  x,
double  y 
) [inline]

Move the center of the scale draw, leaving the radius unchanged.

void QwtRoundScaleDraw::moveCenter ( const QPointF &  center)

Move the center of the scale draw, leaving the radius unchanged

Parameters:
centerNew center
See also:
setRadius()
int QwtAbstractScaleDraw::penWidth ( ) const [inherited]
Returns:
Scale pen width
See also:
setPenWidth()

Reimplemented in QwtDialScaleDraw.

int QwtRoundScaleDraw::radius ( ) const

Get the radius

Radius is the radius of the backbone without ticks and labels.

See also:
setRadius(), extent()
const QwtScaleDiv & QwtAbstractScaleDraw::scaleDiv ( ) const [inherited]
Returns:
scale division
const QwtScaleMap & QwtAbstractScaleDraw::scaleMap ( ) const [inherited]
Returns:
Map how to translate between scale and pixel values
QwtScaleMap & QwtAbstractScaleDraw::scaleMap ( ) [inherited]
Returns:
Map how to translate between scale and pixel values
void QwtRoundScaleDraw::setAngleRange ( double  angle1,
double  angle2 
)

Adjust the baseline circle segment for round scales.

The baseline will be drawn from min(angle1,angle2) to max(angle1, angle2). The default setting is [ -135, 135 ]. An angle of 0 degrees corresponds to the 12 o'clock position, and positive angles count in a clockwise direction.

Parameters:
angle1
angle2boundaries of the angle interval in degrees.
Warning:
  • The angle range is limited to [-360, 360] degrees. Angles exceeding this range will be clipped.
  • For angles more than 359 degrees above or below min(angle1, angle2), scale marks will not be drawn.
  • If you need a counterclockwise scale, use QwtScaleDiv::setRange
void QwtAbstractScaleDraw::setMinimumExtent ( double  minExtent) [inherited]

Set a minimum for the extent.

The extent is calculated from the coomponents of the scale draw. In situations, where the labels are changing and the layout depends on the extent (f.e scrolling a scale), setting an upper limit as minimum extent will avoid jumps of the layout.

Parameters:
minExtentMinimum extent
See also:
extent(), minimumExtent()
void QwtAbstractScaleDraw::setPenWidth ( int  width) [inherited]

Specify the width of the scale pen.

Parameters:
widthPen width
See also:
penWidth()
void QwtRoundScaleDraw::setRadius ( int  radius)

Change of radius the scale

Radius is the radius of the backbone without ticks and labels.

Parameters:
radiusNew Radius
See also:
moveCenter()
void QwtAbstractScaleDraw::setScaleDiv ( const QwtScaleDiv sd) [inherited]

Change the scale division

Parameters:
sdNew scale division
void QwtAbstractScaleDraw::setSpacing ( double  spacing) [inherited]

Set the spacing between tick and labels.

The spacing is the distance between ticks and labels. The default spacing is 4 pixels.

Parameters:
spacingSpacing
See also:
spacing()
void QwtAbstractScaleDraw::setTickLength ( QwtScaleDiv::TickType  tickType,
double  length 
) [inherited]

Set the length of the ticks

Parameters:
tickTypeTick type
lengthNew length
Warning:
the length is limited to [0..1000]
void QwtAbstractScaleDraw::setTransformation ( QwtScaleTransformation transformation) [inherited]

Change the transformation of the scale

Parameters:
transformationNew scale transformation
double QwtAbstractScaleDraw::spacing ( ) const [inherited]

Get the spacing.

The spacing is the distance between ticks and labels. The default spacing is 4 pixels.

See also:
setSpacing()
const QwtText & QwtAbstractScaleDraw::tickLabel ( const QFont &  font,
double  value 
) const [protected, inherited]

Convert a value into its representing label and cache it.

The conversion between value and label is called very often in the layout and painting code. Unfortunately the calculation of the label sizes might be slow (really slow for rich text in Qt4), so it's necessary to cache the labels.

Parameters:
fontFont
valueValue
Returns:
Tick label
double QwtAbstractScaleDraw::tickLength ( QwtScaleDiv::TickType  tickType) const [inherited]

Return the length of the ticks

See also:
setTickLength(), maxTickLength()
qmi style