GNU Radio Manual and C++ API Reference  3.7.6.2
The Free & Open Software Radio Ecosystem
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros Groups Pages
freq_sink_c.h
Go to the documentation of this file.
1 /* -*- c++ -*- */
2 /*
3  * Copyright 2012,2014 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_FREQ_SINK_C_H
24 #define INCLUDED_QTGUI_FREQ_SINK_C_H
25 
26 #ifdef ENABLE_PYTHON
27 #include <Python.h>
28 #endif
29 
30 #include <gnuradio/qtgui/api.h>
32 #include <gnuradio/sync_block.h>
33 #include <qapplication.h>
34 #include <gnuradio/filter/firdes.h>
35 
36 namespace gr {
37  namespace qtgui {
38 
39  /*!
40  * \brief A graphical sink to display multiple signals in frequency.
41  * \ingroup instrumentation_blk
42  * \ingroup qtgui_blk
43  *
44  * \details
45  * This is a QT-based graphical sink the takes set of a complex
46  * streams and plots the PSD. Each signal is plotted with a
47  * different color, and the \a set_title and \a set_color
48  * functions can be used to change the lable and color for a given
49  * input number.
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  * - freq (output):
59  * Produces a PMT pair with (intern("freq"), double(frequency).
60  * When a user double-clicks on the display, the block
61  * produces and emits a message containing the frequency of
62  * where on the x-axis the user clicked. This value can be
63  * used by other blocks to update their frequency setting.
64  *
65  * To perform click-to-tune behavior, this output 'freq'
66  * port can be redirected to this block's input 'freq' port
67  * to catch the message and update the center frequency of
68  * the display.
69  */
70  class QTGUI_API freq_sink_c : virtual public sync_block
71  {
72  public:
73  // gr::qtgui::freq_sink_c::sptr
74  typedef boost::shared_ptr<freq_sink_c> sptr;
75 
76  /*!
77  * \brief Build a complex PSD sink.
78  *
79  * \param fftsize size of the FFT to compute and display
80  * \param wintype type of window to apply (see gnuradio/filter/firdes.h)
81  * \param fc center frequency of signal (use for x-axis labels)
82  * \param bw bandwidth of signal (used to set x-axis labels)
83  * \param name title for the plot
84  * \param nconnections number of signals connected to sink
85  * \param parent a QWidget parent object, if any
86  */
87  static sptr make(int fftsize, int wintype,
88  double fc, double bw,
89  const std::string &name,
90  int nconnections=1,
91  QWidget *parent=NULL);
92 
93  virtual void exec_() = 0;
94  virtual QWidget* qwidget() = 0;
95 
96 #ifdef ENABLE_PYTHON
97  virtual PyObject* pyqwidget() = 0;
98 #else
99  virtual void* pyqwidget() = 0;
100 #endif
101 
102  virtual void set_fft_size(const int fftsize) = 0;
103  virtual int fft_size() const = 0;
104  virtual void set_fft_average(const float fftavg) = 0;
105  virtual float fft_average() const = 0;
106  virtual void set_fft_window(const gr::filter::firdes::win_type win) = 0;
107  virtual gr::filter::firdes::win_type fft_window() = 0;
108 
109  virtual void set_frequency_range(const double centerfreq, const double bandwidth) = 0;
110  virtual void set_y_axis(double min, double max) = 0;
111 
112  virtual void set_update_time(double t) = 0;
113 
114  virtual void set_title(const std::string &title) = 0;
115  virtual void set_line_label(int which, const std::string &label) = 0;
116  virtual void set_line_color(int which, const std::string &color) = 0;
117  virtual void set_line_width(int which, int width) = 0;
118  virtual void set_line_style(int which, int style) = 0;
119  virtual void set_line_marker(int which, int marker) = 0;
120  virtual void set_line_alpha(int which, double alpha) = 0;
121 
122  /*!
123  * Set up a trigger for the sink to know when to start
124  * plotting. Useful to isolate events and avoid noise.
125  *
126  * The trigger modes are Free, Auto, Normal, and Tag (see
127  * gr::qtgui::trigger_mode). The first three are like a normal
128  * trigger function. Free means free running with no trigger,
129  * auto will trigger if the trigger event is seen, but will
130  * still plot otherwise, and normal will hold until the trigger
131  * event is observed. The Tag trigger mode allows us to trigger
132  * off a specific stream tag. The tag trigger is based only on
133  * the name of the tag, so when a tag of the given name is seen,
134  * the trigger is activated.
135  *
136  * In auto and normal mode, we look to see if the magnitude of
137  * the any FFT point is over the set level.
138  *
139  * \param mode The trigger_mode: free, auto, normal, or tag.
140  * \param level The magnitude of the trigger even for auto or normal modes.
141  * \param channel Which input channel to use for the trigger events.
142  * \param tag_key The name (as a string) of the tag to trigger off
143  * of if using the tag mode.
144  */
145  virtual void set_trigger_mode(trigger_mode mode,
146  float level, int channel,
147  const std::string &tag_key="") = 0;
148 
149  virtual std::string title() = 0;
150  virtual std::string line_label(int which) = 0;
151  virtual std::string line_color(int which) = 0;
152  virtual int line_width(int which) = 0;
153  virtual int line_style(int which) = 0;
154  virtual int line_marker(int which) = 0;
155  virtual double line_alpha(int which) = 0;
156 
157  virtual void set_size(int width, int height) = 0;
158 
159  virtual void enable_menu(bool en=true) = 0;
160  virtual void enable_grid(bool en=true) = 0;
161  virtual void enable_autoscale(bool en=true) = 0;
162  virtual void clear_max_hold() = 0;
163  virtual void clear_min_hold() = 0;
164  virtual void reset() = 0;
165 
166  QApplication *d_qApplication;
167  };
168 
169  } /* namespace qtgui */
170 } /* namespace gr */
171 
172 #endif /* INCLUDED_QTGUI_FREQ_SINK_C_H */
float min(float a, float b)
A graphical sink to display multiple signals in frequency.
Definition: freq_sink_c.h:70
#define QTGUI_API
Definition: gr-qtgui/include/gnuradio/qtgui/api.h:30
trigger_mode
Definition: gr-qtgui/include/gnuradio/qtgui/trigger_mode.h:29
synchronous 1:1 input to output with historyOverride work to provide the signal processing implementa...
Definition: sync_block.h:37
QApplication * d_qApplication
Definition: freq_sink_c.h:166
boost::shared_ptr< freq_sink_c > sptr
Definition: freq_sink_c.h:74
win_type
Definition: firdes.h:45