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