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