GNU Radio Manual and C++ API Reference  3.8.1.0
The Free & Open Software Radio Ecosystem
const_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  * 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_CONST_SINK_C_H
24 #define INCLUDED_QTGUI_CONST_SINK_C_H
25 
26 #ifdef ENABLE_PYTHON
27 #include <Python.h>
28 #endif
29 
30 #include <gnuradio/filter/firdes.h>
31 #include <gnuradio/qtgui/api.h>
33 #include <gnuradio/sync_block.h>
34 #include <qapplication.h>
35 
36 namespace gr {
37 namespace qtgui {
38 
39 /*!
40  * \brief A graphical sink to display the IQ constellation of multiple signals.
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 them on an IQ constellation plot.
47  *
48  * The sink supports plotting streaming complex data or
49  * messages. The message port is named "in". The two modes cannot
50  * be used simultaneously, and \p nconnections should be set to 0
51  * when using the message mode. GRC handles this issue by
52  * providing the "Complex Message" type that removes the streaming
53  * port(s).
54  *
55  * This sink can plot messages that contain either uniform vectors
56  * of complex 32 values (pmt::is_c32vector) or PDUs where the data
57  * is a uniform vector of complex 32 values.
58  */
59 class QTGUI_API const_sink_c : virtual public sync_block
60 {
61 public:
62  // gr::qtgui::const_sink_c::sptr
63  typedef boost::shared_ptr<const_sink_c> sptr;
64 
65  /*!
66  * \brief Build a constellation plot sink.
67  *
68  * \param size number of points to plot at once
69  * \param name title for the plot
70  * \param nconnections number of signals connected to sink
71  * \param parent a QWidget parent object, if any
72  */
73  static sptr
74  make(int size, const std::string& name, int nconnections = 1, QWidget* parent = NULL);
75 
76  virtual void exec_() = 0;
77  virtual QWidget* qwidget() = 0;
78 
79 #ifdef ENABLE_PYTHON
80  virtual PyObject* pyqwidget() = 0;
81 #else
82  virtual void* pyqwidget() = 0;
83 #endif
84 
85  virtual void set_y_axis(double min, double max) = 0;
86  virtual void set_x_axis(double min, double max) = 0;
87 
88  virtual void set_update_time(double t) = 0;
89  virtual void set_title(const std::string& title) = 0;
90  virtual void set_line_label(unsigned int which, const std::string& label) = 0;
91  virtual void set_line_color(unsigned int which, const std::string& color) = 0;
92  virtual void set_line_width(unsigned int which, int width) = 0;
93  virtual void set_line_style(unsigned int which, int style) = 0;
94  virtual void set_line_marker(unsigned int which, int marker) = 0;
95  virtual void set_nsamps(const int newsize) = 0;
96  virtual void set_line_alpha(unsigned int which, double alpha) = 0;
97 
98  /*!
99  * Set up a trigger for the sink to know when to start
100  * plotting. Useful to isolate events and avoid noise.
101  *
102  * The trigger modes are Free, Auto, Normal, and Tag (see
103  * gr::qtgui::trigger_mode). The first three are like a normal
104  * oscope trigger function. Free means free running with no
105  * trigger, auto will trigger if the trigger event is seen, but
106  * will still plot otherwise, and normal will hold until the
107  * trigger event is observed. The Tag trigger mode allows us to
108  * trigger off a specific stream tag. The tag trigger is based
109  * only on the name of the tag, so when a tag of the given name
110  * is seen, the trigger is activated.
111  *
112  * In auto and normal mode, we look for the slope of the
113  * magnitude of the signal. As a constellation sink, this only
114  * takes in complex numbers to plot. Given a
115  * gr::qtgui::trigger_slope as either Positive or Negative, if
116  * the magnitude between two samples moves in the given
117  * direction (x[1] > x[0] for Positive or x[1] < x[0] for
118  * Negative), then the trigger is activated.
119  *
120  * \param mode The trigger_mode: free, auto, normal, or tag.
121  * \param slope The trigger_slope: positive or negative. Only
122  * used for auto and normal modes.
123  * \param level The magnitude of the trigger even for auto or normal modes.
124  * \param channel Which input channel to use for the trigger events.
125  * \param tag_key The name (as a string) of the tag to trigger off
126  * of if using the tag mode.
127  */
128  virtual void set_trigger_mode(trigger_mode mode,
129  trigger_slope slope,
130  float level,
131  int channel,
132  const std::string& tag_key = "") = 0;
133 
134  virtual std::string title() = 0;
135  virtual std::string line_label(unsigned int which) = 0;
136  virtual std::string line_color(unsigned int which) = 0;
137  virtual int line_width(unsigned int which) = 0;
138  virtual int line_style(unsigned int which) = 0;
139  virtual int line_marker(unsigned int which) = 0;
140  virtual double line_alpha(unsigned int which) = 0;
141 
142  virtual void set_size(int width, int height) = 0;
143 
144  virtual void enable_menu(bool en = true) = 0;
145  virtual void enable_autoscale(bool en) = 0;
146  virtual void enable_grid(bool en) = 0;
147  virtual void enable_axis_labels(bool en = true) = 0;
148  virtual void disable_legend() = 0;
149  virtual int nsamps() const = 0;
150  virtual void reset() = 0;
151 
152  QApplication* d_qApplication;
153 };
154 
155 } /* namespace qtgui */
156 } /* namespace gr */
157 
158 #endif /* INCLUDED_QTGUI_CONST_SINK_C_H */
float min(float a, float b)
boost::shared_ptr< const_sink_c > sptr
Definition: const_sink_c.h:63
#define QTGUI_API
Definition: gr-qtgui/include/gnuradio/qtgui/api.h:30
trigger_slope
Definition: trigger_mode.h:36
trigger_mode
Definition: trigger_mode.h:29
GNU Radio logging wrapper for log4cpp library (C++ port of log4j)
Definition: basic_block.h:43
synchronous 1:1 input to output with historyOverride work to provide the signal processing implementa...
Definition: sync_block.h:37
A graphical sink to display the IQ constellation of multiple signals.
Definition: const_sink_c.h:59
QApplication * d_qApplication
Definition: const_sink_c.h:152