📄 qwt_plot_spectrogram.cpp
字号:
/* -*- mode: C++ ; c-file-style: "stroustrup" -*- *****************************
* Qwt Widget Library
* Copyright (C) 1997 Josef Wilgen
* Copyright (C) 2002 Uwe Rathmann
*
* This library is free software; you can redistribute it and/or
* modify it under the terms of the Qwt License, Version 1.0
*****************************************************************************/
#include <qimage.h>
#include <qpen.h>
#include <qpainter.h>
#include "qwt_painter.h"
#include "qwt_double_interval.h"
#include "qwt_scale_map.h"
#include "qwt_color_map.h"
#include "qwt_plot_spectrogram.h"
#if QT_VERSION < 0x040000
typedef QValueVector<QRgb> QwtColorTable;
#else
typedef QVector<QRgb> QwtColorTable;
#endif
class QwtPlotSpectrogramImage: public QImage
{
// This class hides some Qt3/Qt4 API differences
public:
QwtPlotSpectrogramImage(const QSize &size, QwtColorMap::Format format):
#if QT_VERSION < 0x040000
QImage(size, format == QwtColorMap::RGB ? 32 : 8)
#else
QImage(size, format == QwtColorMap::RGB
? QImage::Format_ARGB32 : QImage::Format_Indexed8 )
#endif
{
}
QwtPlotSpectrogramImage(const QImage &other):
QImage(other)
{
}
void initColorTable(const QImage& other)
{
#if QT_VERSION < 0x040000
const unsigned int numColors = other.numColors();
setNumColors(numColors);
for ( unsigned int i = 0; i < numColors; i++ )
setColor(i, other.color(i));
#else
setColorTable(other.colorTable());
#endif
}
#if QT_VERSION < 0x040000
void setColorTable(const QwtColorTable &colorTable)
{
setNumColors(colorTable.size());
for ( unsigned int i = 0; i < colorTable.size(); i++ )
setColor(i, colorTable[i]);
}
QwtColorTable colorTable() const
{
QwtColorTable table(numColors());
for ( int i = 0; i < numColors(); i++ )
table[i] = color(i);
return table;
}
#endif
};
class QwtPlotSpectrogram::PrivateData
{
public:
class DummyData: public QwtRasterData
{
public:
virtual QwtRasterData *copy() const
{
return new DummyData();
}
virtual double value(double, double) const
{
return 0.0;
}
virtual QwtDoubleInterval range() const
{
return QwtDoubleInterval(0.0, 1.0);
}
};
PrivateData()
{
data = new DummyData();
colorMap = new QwtLinearColorMap();
displayMode = ImageMode;
conrecAttributes = QwtRasterData::IgnoreAllVerticesOnLevel;
conrecAttributes |= QwtRasterData::IgnoreOutOfRange;
}
~PrivateData()
{
delete data;
delete colorMap;
}
QwtRasterData *data;
QwtColorMap *colorMap;
int displayMode;
QwtValueList contourLevels;
QPen defaultContourPen;
int conrecAttributes;
};
/*!
Sets the following item attributes:
- QwtPlotItem::AutoScale: true
- QwtPlotItem::Legend: false
The z value is initialized by 8.0.
\param title Title
\sa QwtPlotItem::setItemAttribute(), QwtPlotItem::setZ()
*/
QwtPlotSpectrogram::QwtPlotSpectrogram(const QString &title):
QwtPlotRasterItem(title)
{
d_data = new PrivateData();
setItemAttribute(QwtPlotItem::AutoScale, true);
setItemAttribute(QwtPlotItem::Legend, false);
setZ(8.0);
}
//! Destructor
QwtPlotSpectrogram::~QwtPlotSpectrogram()
{
delete d_data;
}
//! \return QwtPlotItem::Rtti_PlotSpectrogram
int QwtPlotSpectrogram::rtti() const
{
return QwtPlotItem::Rtti_PlotSpectrogram;
}
/*!
The display mode controls how the raster data will be represented.
\param mode Display mode
\param on On/Off
The default setting enables ImageMode.
\sa DisplayMode, displayMode()
*/
void QwtPlotSpectrogram::setDisplayMode(DisplayMode mode, bool on)
{
if ( on != bool(mode & d_data->displayMode) )
{
if ( on )
d_data->displayMode |= mode;
else
d_data->displayMode &= ~mode;
}
itemChanged();
}
/*!
The display mode controls how the raster data will be represented.
\param mode Display mode
\return true if mode is enabled
*/
bool QwtPlotSpectrogram::testDisplayMode(DisplayMode mode) const
{
return (d_data->displayMode & mode);
}
/*!
Change the color map
Often it is useful to display the mapping between intensities and
colors as an additional plot axis, showing a color bar.
\param colorMap Color Map
\sa colorMap(), QwtScaleWidget::setColorBarEnabled(),
QwtScaleWidget::setColorMap()
*/
void QwtPlotSpectrogram::setColorMap(const QwtColorMap &colorMap)
{
delete d_data->colorMap;
d_data->colorMap = colorMap.copy();
invalidateCache();
itemChanged();
}
/*!
\return Color Map used for mapping the intensity values to colors
\sa setColorMap()
*/
const QwtColorMap &QwtPlotSpectrogram::colorMap() const
{
return *d_data->colorMap;
}
/*!
\brief Set the default pen for the contour lines
If the spectrogram has a valid default contour pen
a contour line is painted using the default contour pen.
Otherwise (pen.style() == Qt::NoPen) the pen is calculated
for each contour level using contourPen().
\sa defaultContourPen, contourPen
*/
void QwtPlotSpectrogram::setDefaultContourPen(const QPen &pen)
{
if ( pen != d_data->defaultContourPen )
{
d_data->defaultContourPen = pen;
itemChanged();
}
}
/*!
\return Default contour pen
\sa setDefaultContourPen
*/
QPen QwtPlotSpectrogram::defaultContourPen() const
{
return d_data->defaultContourPen;
}
/*!
\brief Calculate the pen for a contour line
The color of the pen is the color for level calculated by the color map
\param level Contour level
\return Pen for the contour line
\note contourPen is only used if defaultContourPen().style() == Qt::NoPen
\sa setDefaultContourPen, setColorMap, setContourLevels
*/
QPen QwtPlotSpectrogram::contourPen(double level) const
{
const QwtDoubleInterval intensityRange = d_data->data->range();
const QColor c(d_data->colorMap->rgb(intensityRange, level));
return QPen(c);
}
/*!
Modify an attribute of the CONREC algorithm, used to calculate
the contour lines.
\param attribute CONREC attribute
\param on On/Off
\sa testConrecAttribute, renderContourLines, QwtRasterData::contourLines
*/
void QwtPlotSpectrogram::setConrecAttribute(
QwtRasterData::ConrecAttribute attribute, bool on)
{
if ( bool(d_data->conrecAttributes & attribute) == on )
return;
if ( on )
d_data->conrecAttributes |= attribute;
else
d_data->conrecAttributes &= ~attribute;
itemChanged();
}
/*!
Test an attribute of the CONREC algorithm, used to calculate
the contour lines.
\param attribute CONREC attribute
\return true, is enabled
\sa setConrecAttribute, renderContourLines, QwtRasterData::contourLines
*/
bool QwtPlotSpectrogram::testConrecAttribute(
QwtRasterData::ConrecAttribute attribute) const
{
return d_data->conrecAttributes & attribute;
}
/*!
Set the levels of the contour lines
\param levels Values of the contour levels
\sa contourLevels, renderContourLines, QwtRasterData::contourLines
\note contourLevels returns the same levels but sorted.
*/
void QwtPlotSpectrogram::setContourLevels(const QwtValueList &levels)
{
d_data->contourLevels = levels;
#if QT_VERSION >= 0x040000
qSort(d_data->contourLevels);
#else
qHeapSort(d_data->contourLevels);
#endif
itemChanged();
}
/*!
\brief Return the levels of the contour lines.
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -