GNU Radio Manual and C++ API Reference 3.8.5.0
The Free & Open Software Radio Ecosystem
 
Loading...
Searching...
No Matches
plot_raster.h
Go to the documentation of this file.
1/* -*- c++ -*- */
2/*
3 * Copyright 2012,2013 Free Software Foundation, Inc.
4 *
5 * This file is part of GNU Radio
6 *
7 * GNU Radio is free software; you can redistribute it and/or modify
8 * it under the terms of the GNU General Public License as published by
9 * the Free Software Foundation; either version 3, or (at your option)
10 * any later version.
11 *
12 * GNU Radio is distributed in the hope that it will be useful,
13 * but WITHOUT ANY WARRANTY; without even the implied warranty of
14 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15 * GNU General Public License for more details.
16 *
17 * You should have received a copy of the GNU General Public License
18 * along with GNU Radio; see the file COPYING. If not, write to
19 * the Free Software Foundation, Inc., 51 Franklin Street,
20 * Boston, MA 02110-1301, USA.
21 */
22
23#ifndef PLOT_TIMERASTER_H
24#define PLOT_TIMERASTER_H
25
27#include <qglobal.h>
28#include <qwt_plot_rasteritem.h>
29
30#if QWT_VERSION >= 0x060000
31#include <qsize.h>
32#include <qwt_interval.h>
33
34typedef QwtInterval QwtDoubleInterval;
35#endif
36
37class QwtColorMap;
38
39/*!
40 * \brief A plot item, which displays a time raster.
41 * \ingroup qtgui_blk
42 *
43 * \details
44 * A time raster displays three-dimensional data, where the 3rd dimension
45 * (the intensity) is displayed using colors. The colors are calculated
46 * from the values using a color map.
47 *
48 * \sa QwtRasterData, QwtColorMap
49 */
50class PlotTimeRaster : public QwtPlotRasterItem
51{
52public:
53 explicit PlotTimeRaster(const QString& title = QString::null);
54 virtual ~PlotTimeRaster();
55
56 const TimeRasterData* data() const;
57
59
60 void setColorMap(const QwtColorMap* map);
61
62 const QwtColorMap& colorMap() const;
63
64#if QWT_VERSION < 0x060000
65 virtual QwtDoubleRect boundingRect() const;
66 virtual QSize rasterHint(const QwtDoubleRect&) const;
67 virtual QwtDoubleInterval interval(Qt::Axis ax) const;
68#else
69 virtual QwtInterval interval(Qt::Axis ax) const;
70#endif
71
72 virtual int rtti() const;
73
74protected:
75#if QWT_VERSION < 0x060000
76 QImage renderImage(const QwtScaleMap& xMap,
77 const QwtScaleMap& yMap,
78 const QwtDoubleRect& rect) const;
79#else
80 QImage renderImage(const QwtScaleMap& xMap,
81 const QwtScaleMap& yMap,
82 const QRectF& rect,
83 const QSize& size = QSize(0, 0)) const;
84#endif
85
86private:
87 class PrivateData;
88 PrivateData* d_data;
89};
90
91#endif
A plot item, which displays a time raster.
Definition plot_raster.h:51
PlotTimeRaster(const QString &title=QString::null)
void setData(TimeRasterData *data)
void setColorMap(const QwtColorMap *map)
QImage renderImage(const QwtScaleMap &xMap, const QwtScaleMap &yMap, const QwtDoubleRect &rect) const
virtual QwtDoubleInterval interval(Qt::Axis ax) const
virtual QSize rasterHint(const QwtDoubleRect &) const
virtual QwtDoubleRect boundingRect() const
virtual int rtti() const
const QwtColorMap & colorMap() const
virtual ~PlotTimeRaster()
const TimeRasterData * data() const
Definition timeRasterGlobalData.h:36