GNU Radio Manual and C++ API Reference 3.10.5.1
The Free & Open Software Radio Ecosystem
waterfall_sink_c.h
Go to the documentation of this file.
1/* -*- c++ -*- */
2/*
3 * Copyright 2012,2014-2015 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 INCLUDED_QTGUI_WATERFALL_SINK_C_H
12#define INCLUDED_QTGUI_WATERFALL_SINK_C_H
13
14#include <gnuradio/fft/window.h>
15#include <gnuradio/qtgui/api.h>
16#include <gnuradio/sync_block.h>
17#include <qapplication.h>
18
19namespace gr {
20namespace qtgui {
21
22/*!
23 * \brief A graphical sink to display multiple signals on a
24 * waterfall (spectrogram) plot.
25 * \ingroup instrumentation_blk
26 * \ingroup qtgui_blk
27 *
28 * \details
29 * This is a QT-based graphical sink the takes set of a complex
30 * streams and plots a waterfall (spectrogram) plot.
31 *
32 * Note that unlike the other qtgui sinks, this one does not
33 * support multiple input streams. We have yet to figure out a
34 * good way to display multiple, independent signals on this kind
35 * of a plot. If there are any suggestions or examples of this, we
36 * would love to see them. Otherwise, to display multiple signals
37 * here, it's probably best to sum the signals together and
38 * connect that here.
39 *
40 * The sink supports plotting streaming complex data or
41 * messages. The message port is named "in". The two modes cannot
42 * be used simultaneously, and \p nconnections should be set to 0
43 * when using the message mode. GRC handles this issue by
44 * providing the "Complex Message" type that removes the streaming
45 * port(s).
46 *
47 * This sink can plot messages that contain either uniform vectors
48 * of complex 32 values (pmt::is_c32vector) or PDUs where the data
49 * is a uniform vector of complex 32 values.
50 *
51 * Message Ports:
52 *
53 * - freq (input):
54 * Receives a PMT pair: (intern("freq"), double(frequency)).
55 * This is used to retune the center frequency of the
56 * display's x-axis.
57 *
58 * - bw (input):
59 * Receives a PMT pair: (intern("bw"), double(bandwidth)).
60 * This is used to programmatically change the bandwidth of
61 * of the display's x-axis.
62 *
63 * - freq (output):
64 * Produces a PMT pair with (intern("freq"), double(frequency)).
65 * When a user double-clicks on the display, the block
66 * produces and emits a message containing the frequency of
67 * where on the x-axis the user clicked. This value can be
68 * used by other blocks to update their frequency setting.
69 *
70 * To perform click-to-tune behavior, this output 'freq'
71 * port can be redirected to this block's input 'freq' port
72 * to catch the message and update the center frequency of
73 * the display.
74 */
76{
77public:
78 // gr::qtgui::waterfall_sink_c::sptr
79 typedef std::shared_ptr<waterfall_sink_c> sptr;
80
81 /*!
82 * \brief Build a complex waterfall sink.
83 *
84 * \param fftsize size of the FFT to compute and display. If using
85 * the PDU message port to plot samples, the length of
86 * each PDU must be a multiple of the FFT size.
87 * \param wintype type of window to apply (see gr::fft::window::win_type)
88 * \param fc center frequency of signal (use for x-axis labels)
89 * \param bw bandwidth of signal (used to set x-axis labels)
90 * \param name title for the plot
91 * \param nconnections number of signals to be connected to the
92 * sink. The PDU message port is always available for a
93 * connection, and this value must be set to 0 if only
94 * the PDU message port is being used.
95 * \param parent a QWidget parent object, if any
96 */
97 static sptr make(int fftsize,
98 int wintype,
99 double fc,
100 double bw,
101 const std::string& name,
102 int nconnections = 1,
103 QWidget* parent = NULL);
104
105 virtual void exec_() = 0;
106 virtual QWidget* qwidget() = 0;
107
108 virtual void clear_data() = 0;
109
110 virtual void set_fft_size(const int fftsize) = 0;
111 virtual int fft_size() const = 0;
112 virtual void set_time_per_fft(const double t) = 0;
113 virtual void set_fft_average(const float fftavg) = 0;
114 virtual float fft_average() const = 0;
115 virtual void set_fft_window(const gr::fft::window::win_type win) = 0;
117
118 virtual void set_frequency_range(const double centerfreq, const double bandwidth) = 0;
119 virtual void set_intensity_range(const double min, const double max) = 0;
120
121 virtual void set_update_time(double t) = 0;
122 virtual void set_title(const std::string& title) = 0;
123 virtual void set_time_title(const std::string& title) = 0;
124 virtual void set_line_label(unsigned int which, const std::string& line) = 0;
125 virtual void set_line_alpha(unsigned int which, double alpha) = 0;
126 virtual void set_color_map(unsigned int which, const int color) = 0;
127
128 virtual std::string title() = 0;
129 virtual std::string line_label(unsigned int which) = 0;
130 virtual double line_alpha(unsigned int which) = 0;
131 virtual int color_map(unsigned int which) = 0;
132
133 virtual void set_size(int width, int height) = 0;
134
135 virtual void auto_scale() = 0;
136 virtual double min_intensity(unsigned int which) = 0;
137 virtual double max_intensity(unsigned int which) = 0;
138
139 virtual void enable_menu(bool en = true) = 0;
140 virtual void enable_grid(bool en = true) = 0;
141 virtual void disable_legend() = 0;
142 virtual void enable_axis_labels(bool en = true) = 0;
143
144 QApplication* d_qApplication;
145};
146
147} /* namespace qtgui */
148} /* namespace gr */
149
150#endif /* INCLUDED_QTGUI_WATERFALL_SINK_C_H */
win_type
Definition: window.h:28
A graphical sink to display multiple signals on a waterfall (spectrogram) plot.
Definition: waterfall_sink_c.h:76
virtual void set_fft_window(const gr::fft::window::win_type win)=0
virtual void auto_scale()=0
virtual double line_alpha(unsigned int which)=0
virtual std::string line_label(unsigned int which)=0
virtual void enable_axis_labels(bool en=true)=0
virtual void set_time_title(const std::string &title)=0
virtual void set_fft_size(const int fftsize)=0
virtual void enable_grid(bool en=true)=0
virtual double min_intensity(unsigned int which)=0
QApplication * d_qApplication
Definition: waterfall_sink_c.h:144
virtual gr::fft::window::win_type fft_window()=0
virtual void set_fft_average(const float fftavg)=0
virtual void set_line_alpha(unsigned int which, double alpha)=0
virtual void set_update_time(double t)=0
std::shared_ptr< waterfall_sink_c > sptr
Definition: waterfall_sink_c.h:79
virtual int fft_size() const =0
virtual QWidget * qwidget()=0
static sptr make(int fftsize, int wintype, double fc, double bw, const std::string &name, int nconnections=1, QWidget *parent=NULL)
Build a complex waterfall sink.
virtual std::string title()=0
virtual void set_size(int width, int height)=0
virtual void set_title(const std::string &title)=0
virtual void set_line_label(unsigned int which, const std::string &line)=0
virtual void set_intensity_range(const double min, const double max)=0
virtual double max_intensity(unsigned int which)=0
virtual void enable_menu(bool en=true)=0
virtual int color_map(unsigned int which)=0
virtual void set_color_map(unsigned int which, const int color)=0
virtual float fft_average() const =0
virtual void clear_data()=0
virtual void disable_legend()=0
virtual void set_time_per_fft(const double t)=0
virtual void set_frequency_range(const double centerfreq, const double bandwidth)=0
synchronous 1:1 input to output with history
Definition: sync_block.h:26
#define QTGUI_API
Definition: gr-qtgui/include/gnuradio/qtgui/api.h:18
float min(float a, float b)
GNU Radio logging wrapper.
Definition: basic_block.h:29