A color stop is a color at a specific position. The valid range for the positions is [0.0, 1.0]. When mapping a value into a color it is translated into this interval. If mode() == FixedColors the color is calculated from the next lower color stop. If mode() == ScaledColors the color is calculated by interpolating the colors of the adjacent stops.
Definition at line 111 of file qwt_color_map.h.
Public Types | |
enum | Mode { FixedColors, ScaledColors } |
Public Member Functions | |
QwtLinearColorMap (QwtColorMap::Format=QwtColorMap::RGB) | |
QwtLinearColorMap (const QColor &from, const QColor &to, QwtColorMap::Format=QwtColorMap::RGB) | |
QwtLinearColorMap (const QwtLinearColorMap &) | |
virtual | ~QwtLinearColorMap () |
QwtLinearColorMap & | operator= (const QwtLinearColorMap &) |
virtual QwtColorMap * | copy () const |
void | setMode (Mode) |
Mode | mode () const |
void | setColorInterval (const QColor &color1, const QColor &color2) |
void | addColorStop (double value, const QColor &) |
QwtArray< double > | colorStops () const |
QColor | color1 () const |
QColor | color2 () const |
virtual QRgb | rgb (const QwtDoubleInterval &, double value) const |
virtual unsigned char | colorIndex (const QwtDoubleInterval &, double value) const |
|
Mode of color map Definition at line 118 of file qwt_color_map.h. |
|
Build a color map with two stops at 0.0 and 1.0. The color at 0.0 is Qt::blue, at 1.0 it is Qt::yellow.
Definition at line 211 of file qwt_color_map.cpp. References setColorInterval(). Referenced by copy(). |
|
Build a color map with two stops at 0.0 and 1.0.
Definition at line 235 of file qwt_color_map.cpp. References setColorInterval(). |
|
Copy constructor.
Definition at line 221 of file qwt_color_map.cpp. |
|
Destructor.
Definition at line 245 of file qwt_color_map.cpp. |
|
Add a color stop The value has to be in the range [0.0, 1.0]. F.e. a stop at position 17.0 for a range [10.0,20.0] must be passed as: (17.0 - 10.0) / (20.0 - 10.0)
Definition at line 319 of file qwt_color_map.cpp. |
|
Definition at line 337 of file qwt_color_map.cpp. |
|
Definition at line 346 of file qwt_color_map.cpp. |
|
Map a value of a given interval into a color index, between 0 and 255
Implements QwtColorMap. Definition at line 370 of file qwt_color_map.cpp. References QwtDoubleInterval::isValid(), QwtDoubleInterval::maxValue(), QwtDoubleInterval::minValue(), and QwtDoubleInterval::width(). |
|
Return all positions of color stops in increasing order Definition at line 328 of file qwt_color_map.cpp. |
|
Clone the color map.
Implements QwtColorMap. Definition at line 260 of file qwt_color_map.cpp. References QwtLinearColorMap(). |
|
Definition at line 286 of file qwt_color_map.cpp. |
|
Assignment operator.
Definition at line 251 of file qwt_color_map.cpp. References d_data. |
|
Map a value of a given interval into a rgb value
Implements QwtColorMap. Definition at line 357 of file qwt_color_map.cpp. References QwtDoubleInterval::minValue(), and QwtDoubleInterval::width(). |
|
Set the color range Add stops at 0.0 and 1.0.
Definition at line 301 of file qwt_color_map.cpp. Referenced by QwtLinearColorMap(). |
|
Set the mode of the color map. FixedColors means the color is calculated from the next lower color stop. ScaledColors means the color is calculated by interpolating the colors of the adjacent stops.
Definition at line 277 of file qwt_color_map.cpp. |