GNU Radio Manual and C++ API Reference  v3.9.2.0-89-gb7c7001e
The Free & Open Software Radio Ecosystem
vector_sink_f.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  * SPDX-License-Identifier: GPL-3.0-or-later
8  *
9  */
10 
11 #ifndef INCLUDED_QTGUI_VECTOR_SINK_F_H
12 #define INCLUDED_QTGUI_VECTOR_SINK_F_H
13 
14 #ifdef ENABLE_PYTHON
15 #include <Python.h>
16 #endif
17 
18 #include <gnuradio/qtgui/api.h>
19 #include <gnuradio/sync_block.h>
20 #include <qapplication.h>
21 
22 namespace gr {
23 namespace qtgui {
24 
25 /*!
26  * \brief A graphical sink to display multiple vector-based signals.
27  * \ingroup instrumentation_blk
28  * \ingroup qtgui_blk
29  *
30  * \details
31  * This is a QT-based graphical sink that plots vectors of data as-is.
32  * Each signal is plotted with a different color, and the set_title()
33  * and set_color() functions can be used to change the label and color
34  * for a given input number.
35  *
36  * To specify units for the x- and y-axes, use the set_x_axis_units()
37  * and set_y_axis_units() functions. This does not change the x- and
38  * y-labels, which are either specified during construction, or by
39  * calling the set_x_axis_label() and set_y_axis_label() methods.
40  */
41 class QTGUI_API vector_sink_f : virtual public sync_block
42 {
43 public:
44  // gr::qtgui::vector_sink_f::sptr
45  typedef std::shared_ptr<vector_sink_f> sptr;
46 
47  /*!
48  * \brief Build a vector plotting sink.
49  *
50  * \param vlen Vector length at input. This cannot be changed during operations.
51  * \param x_start The x-Axis value of the first vector element
52  * \param x_step The step with which x-Axis values increment
53  * \param x_axis_label The X-Axis label
54  * \param y_axis_label The Y-Axis label
55  * \param name title for the plot
56  * \param nconnections number of signals connected to sink
57  * \param parent a QWidget parent object, if any
58  */
59  static sptr make(unsigned int vlen,
60  double x_start,
61  double x_step,
62  const std::string& x_axis_label,
63  const std::string& y_axis_label,
64  const std::string& name,
65  int nconnections = 1,
66  QWidget* parent = NULL);
67 
68  virtual void exec_() = 0;
69  virtual QWidget* qwidget() = 0;
70 
71 #ifdef ENABLE_PYTHON
72  virtual PyObject* pyqwidget() = 0;
73 #else
74  virtual void* pyqwidget() = 0;
75 #endif
76 
77  virtual unsigned int vlen() const = 0;
78  virtual void set_vec_average(const float avg) = 0;
79  virtual float vec_average() const = 0;
80 
81  //! Update the values on the x-Axis.
82  //
83  // \param start The value for the first vector element.
84  // \param step Increments per x-Axis value
85  virtual void set_x_axis(const double start, const double step) = 0;
86  virtual void set_y_axis(double min, double max) = 0;
87  //! The ref level is a reference line
88  virtual void set_ref_level(double ref_level) = 0;
89 
90  virtual void set_x_axis_label(const std::string& label) = 0;
91  virtual void set_y_axis_label(const std::string& label) = 0;
92 
93  //! Change the units string on the x-Axis (e.g. 'm' if x-Axis label was 'Distance')
94  virtual void set_x_axis_units(const std::string& units) = 0;
95  //! Change the units string on the y-Axis (e.g. 'V' if x-Axis label was 'Amplitude')
96  virtual void set_y_axis_units(const std::string& units) = 0;
97 
98  virtual void set_update_time(double t) = 0;
99  virtual void set_title(const std::string& title) = 0;
100  virtual void set_line_label(unsigned int which, const std::string& label) = 0;
101  virtual void set_line_color(unsigned int which, const std::string& color) = 0;
102  virtual void set_line_width(unsigned int which, int width) = 0;
103  virtual void set_line_style(unsigned int which, int style) = 0;
104  virtual void set_line_marker(unsigned int which, int marker) = 0;
105  virtual void set_line_alpha(unsigned int which, double alpha) = 0;
106 
107  virtual std::string title() = 0;
108  virtual std::string line_label(unsigned int which) = 0;
109  virtual std::string line_color(unsigned int which) = 0;
110  virtual int line_width(unsigned int which) = 0;
111  virtual int line_style(unsigned int which) = 0;
112  virtual int line_marker(unsigned int which) = 0;
113  virtual double line_alpha(unsigned int which) = 0;
114 
115  virtual void set_size(int width, int height) = 0;
116 
117  virtual void enable_menu(bool en = true) = 0;
118  virtual void enable_grid(bool en = true) = 0;
119  virtual void enable_autoscale(bool en = true) = 0;
120  virtual void clear_max_hold() = 0;
121  virtual void clear_min_hold() = 0;
122  virtual void reset() = 0;
123 
124  QApplication* d_qApplication;
125 };
126 
127 } /* namespace qtgui */
128 } /* namespace gr */
129 
130 #endif /* INCLUDED_QTGUI_VECTOR_SINK_F_H */
A graphical sink to display multiple vector-based signals.
Definition: vector_sink_f.h:42
virtual float vec_average() const =0
virtual int line_style(unsigned int which)=0
QApplication * d_qApplication
Definition: vector_sink_f.h:124
virtual QWidget * qwidget()=0
virtual void set_x_axis(const double start, const double step)=0
Update the values on the x-Axis.
virtual void * pyqwidget()=0
std::shared_ptr< vector_sink_f > sptr
Definition: vector_sink_f.h:45
virtual unsigned int vlen() const =0
virtual void set_y_axis_label(const std::string &label)=0
static sptr make(unsigned int vlen, double x_start, double x_step, const std::string &x_axis_label, const std::string &y_axis_label, const std::string &name, int nconnections=1, QWidget *parent=NULL)
Build a vector plotting sink.
virtual void set_x_axis_units(const std::string &units)=0
Change the units string on the x-Axis (e.g. 'm' if x-Axis label was 'Distance')
virtual void set_update_time(double t)=0
virtual void set_title(const std::string &title)=0
virtual void set_line_label(unsigned int which, const std::string &label)=0
virtual void set_line_style(unsigned int which, int style)=0
virtual void set_line_color(unsigned int which, const std::string &color)=0
virtual std::string line_color(unsigned int which)=0
virtual std::string title()=0
virtual int line_marker(unsigned int which)=0
virtual std::string line_label(unsigned int which)=0
virtual void clear_max_hold()=0
virtual void set_line_marker(unsigned int which, int marker)=0
virtual void set_line_width(unsigned int which, int width)=0
virtual void set_x_axis_label(const std::string &label)=0
virtual void enable_autoscale(bool en=true)=0
virtual double line_alpha(unsigned int which)=0
virtual void set_vec_average(const float avg)=0
virtual void set_y_axis(double min, double max)=0
virtual void enable_grid(bool en=true)=0
virtual void enable_menu(bool en=true)=0
virtual int line_width(unsigned int which)=0
virtual void set_size(int width, int height)=0
virtual void set_y_axis_units(const std::string &units)=0
Change the units string on the y-Axis (e.g. 'V' if x-Axis label was 'Amplitude')
virtual void reset()=0
virtual void set_ref_level(double ref_level)=0
The ref level is a reference line.
virtual void clear_min_hold()=0
virtual void exec_()=0
virtual void set_line_alpha(unsigned int which, double alpha)=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 for log4cpp library (C++ port of log4j)
Definition: basic_block.h:29