GNU Radio Manual and C++ API Reference 3.10.5.1
The Free & Open Software Radio Ecosystem
TimeRasterDisplayPlot.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 * SPDX-License-Identifier: GPL-3.0-or-later
8 *
9 */
10
11#ifndef TIMERASTER_DISPLAY_PLOT_H
12#define TIMERASTER_DISPLAY_PLOT_H
13
18#include <qwt_plot_rasteritem.h>
19#include <cstdint>
20#include <cstdio>
21#include <vector>
22
23#include <qwt_interval.h>
24
25/*!
26 * \brief QWidget for time raster (time vs. time) plots.
27 * \ingroup qtgui_blk
28 */
30{
31 Q_OBJECT
32
37
38public:
40 int nplots, double samp_rate, double rows, double cols, QWidget*);
42
43 void reset();
44
45 void setNumRows(double rows);
46 void setNumCols(double cols);
47 void setAlpha(unsigned int which, int alpha);
48 void setSampleRate(double samprate);
49 void setXLabel(const std::string& label);
50 void setXAxis(double start, double end);
51 void setYLabel(const std::string& label);
52 void setYAxis(double start, double end);
53
54 double numRows() const;
55 double numCols() const;
56
57 int getAlpha(unsigned int which);
58
59 void setPlotDimensions(const double rows,
60 const double cols,
61 const double units,
62 const std::string& strunits);
63
64 void plotNewData(const std::vector<double*> dataPoints, const uint64_t numDataPoints);
65
66 void plotNewData(const double* dataPoints, const uint64_t numDataPoints);
67
68 void setIntensityRange(const double minIntensity, const double maxIntensity);
69
70 void replot(void) override;
71
72 int getIntensityColorMapType(unsigned int) const;
74 void
75 setIntensityColorMapType(const unsigned int, const int, const QColor, const QColor);
79 const QColor getUserDefinedLowIntensityColor() const;
81
82 double getMinIntensity(unsigned int which) const;
83 double getMaxIntensity(unsigned int which) const;
84
85signals:
86 void updatedLowerIntensityLevel(const double);
87 void updatedUpperIntensityLevel(const double);
88
89private:
90 void _updateIntensityRangeDisplay();
91
92 std::vector<TimeRasterData*> d_data;
93 std::vector<PlotTimeRaster*> d_raster;
94
95 double d_samp_rate;
96 double d_rows, d_cols;
97
98 std::vector<int> d_color_map_type;
99 QColor d_low_intensity;
100 QColor d_high_intensity;
101
102 int d_color_bar_title_font_size;
103
104 std::string d_x_label;
105 double d_x_start_value;
106 double d_x_end_value;
107 std::string d_y_label;
108 double d_y_start_value;
109 double d_y_end_value;
110};
111
112#endif /* TIMERASTER_DISPLAY_PLOT_H */
QWidget base plot to build QTGUI plotting tools.
Definition: DisplayPlot.h:42
QWidget for time raster (time vs. time) plots.
Definition: TimeRasterDisplayPlot.h:30
void updatedUpperIntensityLevel(const double)
double numRows() const
void plotNewData(const double *dataPoints, const uint64_t numDataPoints)
void setPlotDimensions(const double rows, const double cols, const double units, const std::string &strunits)
void setXLabel(const std::string &label)
void setColorMapTitleFontSize(int tfs)
~TimeRasterDisplayPlot() override
void setSampleRate(double samprate)
void setYLabel(const std::string &label)
void replot(void) override
int getColorMapTitleFontSize() const
void setXAxis(double start, double end)
void plotNewData(const std::vector< double * > dataPoints, const uint64_t numDataPoints)
void setNumRows(double rows)
int getAlpha(unsigned int which)
int getIntensityColorMapType1() const
int getIntensityColorMapType(unsigned int) const
int intensity_color_map_type1
Definition: TimeRasterDisplayPlot.h:34
void updatedLowerIntensityLevel(const double)
void setYAxis(double start, double end)
void setNumCols(double cols)
int color_map_title_font_size
Definition: TimeRasterDisplayPlot.h:36
void setIntensityRange(const double minIntensity, const double maxIntensity)
double getMinIntensity(unsigned int which) const
const QColor getUserDefinedHighIntensityColor() const
const QColor getUserDefinedLowIntensityColor() const
double getMaxIntensity(unsigned int which) const
TimeRasterDisplayPlot(int nplots, double samp_rate, double rows, double cols, QWidget *)
void setAlpha(unsigned int which, int alpha)
double numCols() const
void setIntensityColorMapType1(int)
void setIntensityColorMapType(const unsigned int, const int, const QColor, const QColor)