GNU Radio 3.7.2 C++ API
waterfall_sink_c.h
Go to the documentation of this file.
1 /* -*- c++ -*- */
2 /*
3  * Copyright 2012 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 INCLUDED_QTGUI_WATERFALL_SINK_C_H
24 #define INCLUDED_QTGUI_WATERFALL_SINK_C_H
25 
26 #include <Python.h>
27 #include <gnuradio/qtgui/api.h>
28 #include <gnuradio/sync_block.h>
29 #include <qapplication.h>
30 #include <gnuradio/filter/firdes.h>
31 
32 namespace gr {
33  namespace qtgui {
34 
35  /*!
36  * \brief A graphical sink to display multiple signals on a
37  * waterfall (spectrogram) plot.
38  * \ingroup instrumentation_blk
39  * \ingroup qtgui_blk
40  *
41  * \details
42  * This is a QT-based graphical sink the takes set of a complex
43  * streams and plots a waterfall (spectrogram) plot.
44  *
45  * Note that unlike the other qtgui sinks, this one does not
46  * support multiple input streams. We have yet to figure out a
47  * good way to display multiple, independent signals on this kind
48  * of a plot. If there are any suggestions or examples of this, we
49  * would love to see them. Otherwise, to display multiple signals
50  * here, it's probably best to sum the signals together and
51  * connect that here.
52  */
53  class QTGUI_API waterfall_sink_c : virtual public sync_block
54  {
55  public:
56  // gr::qtgui::waterfall_sink_c::sptr
58 
59 
60  /*!
61  * \brief Build a complex waterfall sink.
62  *
63  * \param size size of the FFT to compute and display
64  * \param wintype type of window to apply (see gnuradio/filter/firdes.h)
65  * \param fc center frequency of signal (use for x-axis labels)
66  * \param bw bandwidth of signal (used to set x-axis labels)
67  * \param name title for the plot
68  * \param nconnections number of signals to be connected to the sink
69  * \param parent a QWidget parent object, if any
70  */
71  static sptr make(int size, int wintype,
72  double fc, double bw,
73  const std::string &name,
74  int nconnections=1,
75  QWidget *parent=NULL);
76 
77  virtual void exec_() = 0;
78  virtual PyObject* pyqwidget() = 0;
79 
80  virtual void clear_data() = 0;
81 
82  virtual void set_fft_size(const int fftsize) = 0;
83  virtual int fft_size() const = 0;
84  virtual void set_fft_average(const float fftavg) = 0;
85  virtual float fft_average() const = 0;
86  virtual void set_fft_window(const gr::filter::firdes::win_type win) = 0;
87  virtual gr::filter::firdes::win_type fft_window() = 0;
88 
89  virtual void set_frequency_range(const double centerfreq,
90  const double bandwidth) = 0;
91  virtual void set_intensity_range(const double min,
92  const double max) = 0;
93 
94  virtual void set_update_time(double t) = 0;
95  virtual void set_title(const std::string &title) = 0;
96  virtual void set_line_label(int which, const std::string &line) = 0;
97  virtual void set_line_alpha(int which, double alpha) = 0;
98  virtual void set_color_map(int which, const int color) = 0;
99 
100  virtual std::string title() = 0;
101  virtual std::string line_label(int which) = 0;
102  virtual double line_alpha(int which) = 0;
103  virtual int color_map(int which) = 0;
104 
105  virtual void set_size(int width, int height) = 0;
106 
107  virtual void auto_scale() = 0;
108  virtual double min_intensity(int which) = 0;
109  virtual double max_intensity(int which) = 0;
110 
111  virtual void enable_menu(bool en=true) = 0;
112  virtual void enable_grid(bool en=true) = 0;
113 
114  QApplication *d_qApplication;
115  };
116 
117  } /* namespace qtgui */
118 } /* namespace gr */
119 
120 #endif /* INCLUDED_QTGUI_WATERFALL_SINK_C_H */
QApplication * d_qApplication
Definition: waterfall_sink_c.h:114
float min(float a, float b)
#define QTGUI_API
Definition: gr-qtgui/include/gnuradio/qtgui/api.h:30
shared_ptr documentation stub
Definition: shared_ptr_docstub.h:15
A graphical sink to display multiple signals on a waterfall (spectrogram) plot.
Definition: waterfall_sink_c.h:53
synchronous 1:1 input to output with historyOverride work to provide the signal processing implementa...
Definition: sync_block.h:37
VOLK_API $kern pname $kern name
A function pointer to the dispatcher implementation.
boost::shared_ptr< waterfall_sink_c > sptr
Definition: waterfall_sink_c.h:57
win_type
Definition: firdes.h:45