- bookworm 6.1.4-2
- testing 6.1.4-2
- unstable 6.1.4-2
- experimental 6.2.0-1
QwtColorMap(3) | Qwt User's Guide | QwtColorMap(3) |
NAME¶
QwtColorMap - QwtColorMap is used to map values into colors.
SYNOPSIS¶
#include <qwt_color_map.h>
Inherited by QwtAlphaColorMap, and QwtLinearColorMap.
Public Types¶
enum Format { RGB, Indexed }
Public Member Functions¶
QwtColorMap (Format=QwtColorMap::RGB)
Constructor. virtual ~QwtColorMap ()
Destructor. Format format () const
virtual QRgb rgb (const QwtInterval &interval, double value)
const =0
virtual unsigned char colorIndex (const QwtInterval
&interval, double value) const =0
QColor color (const QwtInterval &, double value) const
virtual QVector< QRgb > colorTable (const QwtInterval
&) const
Detailed Description¶
QwtColorMap is used to map values into colors.
For displaying 3D data on a 2D plane the 3rd dimension is often displayed using colors, like f.e in a spectrogram.
Each color map is optimized to return colors for only one of the following image formats:
- QImage::Format_Indexed8
- QImage::Format_ARGB32
See also:
Member Enumeration Documentation¶
enum QwtColorMap::Format¶
Format for color mapping
See also:
Enumerator
Member Function Documentation¶
QColor QwtColorMap::color (const QwtInterval & interval, double value) const [inline]¶
Map a value into a color
Parameters:
value Value
Returns:
Warning:
virtual unsigned char QwtColorMap::colorIndex (const QwtInterval & interval, double value) const [pure virtual]¶
Map a value of a given interval into a color index
Parameters:
value Value
Returns:
Implemented in QwtLinearColorMap.
QVector< QRgb > QwtColorMap::colorTable (const QwtInterval & interval) const [virtual]¶
Build and return a color map of 256 colors
The color table is needed for rendering indexed images in combination with using colorIndex().
Parameters:
Returns:
QwtColorMap::Format QwtColorMap::format () const [inline]¶
Returns:
See also:
virtual QRgb QwtColorMap::rgb (const QwtInterval & interval, double value) const [pure virtual]¶
Map a value of a given interval into a RGB value.
Parameters:
value Value
Returns:
Implemented in QwtAlphaColorMap, and QwtLinearColorMap.
Author¶
Generated automatically by Doxygen for Qwt User's Guide from the source code.
Wed Jan 2 2019 | Version 6.1.4 |