GNU Radio Manual and C++ API Reference  3.7.13.4
The Free & Open Software Radio Ecosystem
FrequencyDisplayPlot.h
Go to the documentation of this file.
1 /* -*- c++ -*- */
2 /*
3  * Copyright 2008-2011 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 FREQUENCY_DISPLAY_PLOT_HPP
24 #define FREQUENCY_DISPLAY_PLOT_HPP
25 
26 #include <stdint.h>
27 #include <cstdio>
28 #include <vector>
30 
31 /*!
32  * \brief QWidget for displaying frequency domain (PSD) plots.
33  * \ingroup qtgui_blk
34  */
36 {
37  Q_OBJECT
38 
39  Q_PROPERTY ( QColor min_fft_color READ getMinFFTColor WRITE setMinFFTColor )
40  Q_PROPERTY ( QColor max_fft_color READ getMaxFFTColor WRITE setMaxFFTColor )
41  Q_PROPERTY ( bool min_fft_visible READ getMinFFTVisible WRITE setMinFFTVisible )
42  Q_PROPERTY ( bool max_fft_visible READ getMaxFFTVisible WRITE setMaxFFTVisible )
50  Q_PROPERTY ( QColor marker_CF_color READ getMarkerCFColor WRITE setMarkerCFColor )
51 
52 public:
53  FrequencyDisplayPlot(int nplots, QWidget*);
54  virtual ~FrequencyDisplayPlot();
55 
56  void setFrequencyRange(const double, const double,
57  const double units=1000.0,
58  const std::string &strunits = "kHz");
59  double getStartFrequency()const;
60  double getStopFrequency()const;
61 
62  void plotNewData(const std::vector<double*> dataPoints,
63  const int64_t numDataPoints,
64  const double noiseFloorAmplitude, const double peakFrequency,
65  const double peakAmplitude, const double timeInterval);
66 
67  // Old method to be removed
68  void plotNewData(const double* dataPoints,
69  const int64_t numDataPoints,
70  const double noiseFloorAmplitude, const double peakFrequency,
71  const double peakAmplitude, const double timeInterval);
72 
73  void replot();
74 
75  void setYaxis(double min, double max);
76  double getYMin() const;
77  double getYMax() const;
78 
79  void setTraceColour (QColor);
80  void setBGColour (QColor c);
81  void showCFMarker (const bool);
82 
83  const bool getMaxFFTVisible() const;
84  const bool getMinFFTVisible() const;
85  const QColor getMinFFTColor() const;
86  const QColor getMaxFFTColor() const;
87  const QColor getMarkerLowerIntensityColor () const;
88  const bool getMarkerLowerIntensityVisible () const;
89  const QColor getMarkerUpperIntensityColor () const;
90  const bool getMarkerUpperIntensityVisible () const;
91  const QColor getMarkerPeakAmplitudeColor () const;
92  const bool getMarkerNoiseFloorAmplitudeVisible () const;
93  const QColor getMarkerNoiseFloorAmplitudeColor () const;
94  const QColor getMarkerCFColor () const;
95 
96 public slots:
97  void setMaxFFTVisible(const bool);
98  void setMinFFTVisible(const bool);
99  void setMinFFTColor (QColor c);
100  void setMaxFFTColor (QColor c);
101  void setMarkerLowerIntensityColor (QColor c);
102  void setMarkerLowerIntensityVisible (bool visible);
103  void setMarkerUpperIntensityColor (QColor c);
104  void setMarkerUpperIntensityVisible (bool visible);
105  void setMarkerPeakAmplitudeColor (QColor c);
106  void setMarkerNoiseFloorAmplitudeVisible (bool visible);
107  void setMarkerNoiseFloorAmplitudeColor (QColor c);
108  void setMarkerCFColor (QColor c);
109 
110  void setLowerIntensityLevel(const double);
111  void setUpperIntensityLevel(const double);
112 
113  void onPickerPointSelected(const QwtDoublePoint & p);
114  void onPickerPointSelected6(const QPointF & p);
115 
116  void setAutoScale(bool state);
117  void setAutoScaleShot();
118 
119  void setPlotPosHalf(bool half);
120 
121  void setYLabel(const std::string &label,
122  const std::string &unit);
123 
124  void clearMaxData();
125  void clearMinData();
126 
127  void attachTriggerLine(bool en);
128  void setTriggerLine(double value);
129 
130 private:
131  void _resetXAxisPoints();
132  void _autoScale(double bottom, double top);
133 
134  std::vector<double*> d_ydata;
135 
136  QwtPlotCurve* d_min_fft_plot_curve;
137  QwtPlotCurve* d_max_fft_plot_curve;
138  QColor d_min_fft_color;
139  bool d_min_fft_visible;
140  QColor d_max_fft_color;
141  bool d_max_fft_visible;
142  QColor d_marker_lower_intensity_color;
143  bool d_marker_lower_intensity_visible;
144  QColor d_marker_upper_intensity_color;
145  bool d_marker_upper_intensity_visible;
146  QColor d_marker_peak_amplitude_color;
147  QColor d_marker_noise_floor_amplitude_color;
148  bool d_marker_noise_floor_amplitude_visible;
149  QColor d_marker_cf_color;
150 
151  double d_start_frequency;
152  double d_stop_frequency;
153  double d_center_frequency;
154  double d_ymax;
155  double d_ymin;
156  bool d_half_freq;
157 
158  QwtPlotMarker* d_lower_intensity_marker;
159  QwtPlotMarker* d_upper_intensity_marker;
160 
161  QwtPlotMarker *d_marker_peak_amplitude;
162  QwtPlotMarker *d_marker_noise_floor_amplitude;
163  QwtPlotMarker *d_marker_cf;
164 
165  double* d_xdata;
166  int d_xdata_multiplier;
167 
168  double* d_min_fft_data;
169  double* d_max_fft_data;
170 
171  double d_peak_frequency;
172  double d_peak_amplitude;
173 
174  double d_noise_floor_amplitude;
175 
176  bool d_autoscale_shot;
177 
178  QwtPlotMarker *d_trigger_line;
179 };
180 
181 #endif /* FREQUENCY_DISPLAY_PLOT_HPP */
const bool getMarkerNoiseFloorAmplitudeVisible() const
void setAutoScale(bool state)
void setMarkerLowerIntensityVisible(bool visible)
bool min_fft_visible
Definition: FrequencyDisplayPlot.h:41
const bool getMarkerLowerIntensityVisible() const
const bool getMaxFFTVisible() const
const QColor getMaxFFTColor() const
void onPickerPointSelected6(const QPointF &p)
void setFrequencyRange(const double, const double, const double units=1000.0, const std::string &strunits="kHz")
void setMarkerCFColor(QColor c)
QWidget base plot to build QTGUI plotting tools.
Definition: DisplayPlot.h:61
float min(float a, float b)
void setUpperIntensityLevel(const double)
void setTriggerLine(double value)
void plotNewData(const std::vector< double * > dataPoints, const int64_t numDataPoints, const double noiseFloorAmplitude, const double peakFrequency, const double peakAmplitude, const double timeInterval)
double getStartFrequency() const
STL namespace.
void setMaxFFTColor(QColor c)
void attachTriggerLine(bool en)
void setMarkerPeakAmplitudeColor(QColor c)
void setPlotPosHalf(bool half)
double getYMin() const
QColor min_fft_color
Definition: FrequencyDisplayPlot.h:39
double getYMax() const
bool marker_lower_intensity_visible
Definition: FrequencyDisplayPlot.h:44
QColor marker_CF_color
Definition: FrequencyDisplayPlot.h:50
const bool getMinFFTVisible() const
QColor marker_noise_floor_amplitude_color
Definition: FrequencyDisplayPlot.h:48
const QColor getMarkerNoiseFloorAmplitudeColor() const
void showCFMarker(const bool)
void setLowerIntensityLevel(const double)
void onPickerPointSelected(const QwtDoublePoint &p)
bool max_fft_visible
Definition: FrequencyDisplayPlot.h:42
bool marker_upper_intensity_visible
Definition: FrequencyDisplayPlot.h:46
const bool getMarkerUpperIntensityVisible() const
void setYaxis(double min, double max)
QWidget for displaying frequency domain (PSD) plots.
Definition: FrequencyDisplayPlot.h:35
const QColor getMarkerLowerIntensityColor() const
const QColor getMarkerPeakAmplitudeColor() const
void setMarkerNoiseFloorAmplitudeVisible(bool visible)
double getStopFrequency() const
void setYLabel(const std::string &label, const std::string &unit)
const QColor getMarkerUpperIntensityColor() const
void setMarkerUpperIntensityColor(QColor c)
void setMinFFTVisible(const bool)
void setTraceColour(QColor)
QColor marker_upper_intensity_color
Definition: FrequencyDisplayPlot.h:45
void setMarkerNoiseFloorAmplitudeColor(QColor c)
const QColor getMinFFTColor() const
void setBGColour(QColor c)
QColor max_fft_color
Definition: FrequencyDisplayPlot.h:40
void setMinFFTColor(QColor c)
void setMarkerLowerIntensityColor(QColor c)
const QColor getMarkerCFColor() const
bool marker_noise_floor_amplitude_visible
Definition: FrequencyDisplayPlot.h:49
void setMaxFFTVisible(const bool)
void setMarkerUpperIntensityVisible(bool visible)
QColor marker_peak_amplitude_color
Definition: FrequencyDisplayPlot.h:47
QColor marker_lower_intensity_color
Definition: FrequencyDisplayPlot.h:43