Qwt User's Guide
6.0.2
|
#include <qwt_thermo.h>
Public Types | |
enum | ScalePos { NoScale, LeftScale, RightScale, TopScale, BottomScale } |
Public Slots | |
virtual void | setValue (double val) |
Public Member Functions | |
QwtThermo (QWidget *parent=NULL) | |
virtual | ~QwtThermo () |
const QBrush & | alarmBrush () const |
bool | alarmEnabled () const |
double | alarmLevel () const |
int | borderWidth () const |
QwtColorMap * | colorMap () |
const QwtColorMap * | colorMap () const |
const QBrush & | fillBrush () const |
double | maxValue () const |
virtual QSize | minimumSizeHint () const |
double | minValue () const |
int | pipeWidth () const |
QwtInterval::BorderFlags | rangeFlags () const |
const QwtScaleDraw * | scaleDraw () const |
ScalePos | scalePosition () const |
void | setAlarmBrush (const QBrush &b) |
void | setAlarmEnabled (bool tf) |
void | setAlarmLevel (double v) |
void | setBorderWidth (int w) |
void | setColorMap (QwtColorMap *) |
void | setFillBrush (const QBrush &b) |
void | setMaxValue (double v) |
void | setMinValue (double v) |
void | setOrientation (Qt::Orientation, ScalePos) |
void | setPipeWidth (int w) |
void | setRange (double vmin, double vmax, bool lg=false) |
void | setRangeFlags (QwtInterval::BorderFlags) |
void | setScaleDraw (QwtScaleDraw *) |
void | setScalePosition (ScalePos s) |
void | setSpacing (int) |
virtual QSize | sizeHint () const |
int | spacing () const |
double | value () const |
![]() | |
QwtAbstractScale () | |
virtual | ~QwtAbstractScale () |
bool | autoScale () const |
const QwtScaleEngine * | scaleEngine () const |
QwtScaleEngine * | scaleEngine () |
const QwtScaleMap & | scaleMap () const |
int | scaleMaxMajor () const |
int | scaleMaxMinor () const |
void | setAutoScale () |
void | setScale (double vmin, double vmax, double step=0.0) |
void | setScale (const QwtInterval &, double step=0.0) |
void | setScale (const QwtScaleDiv &) |
void | setScaleEngine (QwtScaleEngine *) |
void | setScaleMaxMajor (int ticks) |
void | setScaleMaxMinor (int ticks) |
Protected Member Functions | |
virtual void | changeEvent (QEvent *) |
virtual void | drawLiquid (QPainter *, const QRect &) const |
virtual void | paintEvent (QPaintEvent *) |
QRect | pipeRect () const |
virtual void | resizeEvent (QResizeEvent *) |
virtual void | scaleChange () |
QwtScaleDraw * | scaleDraw () |
![]() | |
const QwtAbstractScaleDraw * | abstractScaleDraw () const |
QwtAbstractScaleDraw * | abstractScaleDraw () |
void | rescale (double vmin, double vmax, double step=0.0) |
void | setAbstractScaleDraw (QwtAbstractScaleDraw *) |
The Thermometer Widget.
QwtThermo is a widget which displays a value in an interval. It supports:
The fill colors might be calculated from an optional color map If no color map has been assigned QwtThermo uses the following colors/brushes from the widget palette:
By default, the scale and range run over the same interval of values. QwtAbstractScale::setScale() changes the interval of the scale and allows easy conversion between physical units.
The example shows how to make the scale indicate in degrees Fahrenheit and to set the value in degrees Kelvin:
enum QwtThermo::ScalePos |
Scale position. QwtThermo tries to enforce valid combinations of its orientation and scale position:
|
explicit |
Constructor
parent | Parent widget |
const QBrush & QwtThermo::alarmBrush | ( | ) | const |
Return the liquid brush ( QPalette::Highlight ) above the alarm threshold.
bool QwtThermo::alarmEnabled | ( | ) | const |
double QwtThermo::alarmLevel | ( | ) | const |
Return the alarm threshold.
int QwtThermo::borderWidth | ( | ) | const |
Return the border width of the thermometer pipe.
|
protectedvirtual |
Qt change event handler
event | Event |
QwtColorMap * QwtThermo::colorMap | ( | ) |
const QwtColorMap * QwtThermo::colorMap | ( | ) | const |
|
protectedvirtual |
Redraw the liquid in thermometer pipe.
painter | Painter |
pipeRect | Bounding rectangle of the pipe without borders |
const QBrush & QwtThermo::fillBrush | ( | ) | const |
Return the liquid ( QPalette::ButtonText ) brush.
|
virtual |
Return a minimum size hint.
|
protectedvirtual |
Qt paint event.
event | Paint event |
|
protected |
int QwtThermo::pipeWidth | ( | ) | const |
Return the width of the pipe.
QwtInterval::BorderFlags QwtThermo::rangeFlags | ( | ) | const |
|
protectedvirtual |
Qt resize event handler
event | Resize event |
const QwtScaleDraw * QwtThermo::scaleDraw | ( | ) | const |
|
protected |
QwtThermo::ScalePos QwtThermo::scalePosition | ( | ) | const |
Return the scale position.
void QwtThermo::setAlarmBrush | ( | const QBrush & | brush | ) |
Specify the liquid brush above the alarm threshold.
Changes the QPalette::Highlight brush of the palette.
brush | New brush. |
void QwtThermo::setAlarmEnabled | ( | bool | tf | ) |
Enable or disable the alarm threshold.
tf | true (disabled) or false (enabled) |
void QwtThermo::setAlarmLevel | ( | double | level | ) |
Specify the alarm threshold.
level | Alarm threshold |
void QwtThermo::setBorderWidth | ( | int | width | ) |
void QwtThermo::setColorMap | ( | QwtColorMap * | colorMap | ) |
Assign a color map for the fill color.
colorMap | Color map |
void QwtThermo::setFillBrush | ( | const QBrush & | brush | ) |
Change the brush of the liquid.
Changes the QPalette::ButtonText brush of the palette.
brush | New brush. |
void QwtThermo::setMaxValue | ( | double | maxValue | ) |
Set the maximum value.
maxValue | Maximum value |
void QwtThermo::setMinValue | ( | double | minValue | ) |
Set the minimum value.
minValue | Minimum value |
void QwtThermo::setOrientation | ( | Qt::Orientation | o, |
ScalePos | s | ||
) |
Set the thermometer orientation and the scale position.
The scale position NoScale disables the scale.
o | orientation. Possible values are Qt::Horizontal and Qt::Vertical. The default value is Qt::Vertical. |
s | Position of the scale. The default value is NoScale. |
A valid combination of scale position and orientation is enforced:
void QwtThermo::setPipeWidth | ( | int | width | ) |
void QwtThermo::setRange | ( | double | minValue, |
double | maxValue, | ||
bool | logarithmic = false |
||
) |
Set the range.
minValue | value corresponding lower or left end of the thermometer |
maxValue | value corresponding to the upper or right end of the thermometer |
logarithmic | logarithmic mapping, true or false |
void QwtThermo::setRangeFlags | ( | QwtInterval::BorderFlags | flags | ) |
Exclude/Include min/max values.
According to the flags minValue() and maxValue() are included/excluded from the pipe. In case of an excluded value the corresponding tick is painted 1 pixel off of the pipeRect().
F.e. when a minimum of 0.0 has to be displayed as an empty pipe the minValue() needs to be excluded.
flags | Range flags |
void QwtThermo::setScaleDraw | ( | QwtScaleDraw * | scaleDraw | ) |
Set a scale draw.
For changing the labels of the scales, it is necessary to derive from QwtScaleDraw and overload QwtScaleDraw::label().
scaleDraw | ScaleDraw object, that has to be created with new and will be deleted in ~QwtThermo or the next call of setScaleDraw(). |
void QwtThermo::setScalePosition | ( | ScalePos | scalePos | ) |
Change the scale position (and thermometer orientation).
scalePos | Position of the scale. |
A valid combination of scale position and orientation is enforced:
void QwtThermo::setSpacing | ( | int | spacing | ) |
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.
spacing | Number of pixels |
|
virtualslot |
|
virtual |
int QwtThermo::spacing | ( | ) | const |