GNU Radio Manual and C++ API Reference 3.10.5.1
The Free & Open Software Radio Ecosystem
time_sink_f.h
Go to the documentation of this file.
1/* -*- c++ -*- */
2/*
3 * Copyright 2011-2013,2015 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_TIME_SINK_F_H
12#define INCLUDED_QTGUI_TIME_SINK_F_H
13
14#include <gnuradio/qtgui/api.h>
16#include <gnuradio/sync_block.h>
17#include <qapplication.h>
18
19namespace gr {
20namespace qtgui {
21
22/*!
23 * \brief A graphical sink to display multiple signals in time.
24 * \ingroup instrumentation_blk
25 * \ingroup qtgui_blk
26 *
27 * \details
28 * This is a QT-based graphical sink the takes set of a float streams
29 * and plots them in the time domain. Each signal is plotted with a
30 * different color, and the \a set_title and \a set_color functions
31 * can be used to change the label and color for a given input number.
32 *
33 * The sink supports plotting streaming float data or
34 * messages. The message port is named "in". The two modes cannot
35 * be used simultaneously, and \p nconnections should be set to 0
36 * when using the message mode. GRC handles this issue by
37 * providing the "Float Message" type that removes the streaming
38 * port(s).
39 *
40 * This sink can plot messages that contain either uniform vectors
41 * of float 32 values (pmt::is_f32vector) or PDUs where the data
42 * is a uniform vector of float 32 values.
43 */
44class QTGUI_API time_sink_f : virtual public sync_block
45{
46public:
47 // gr::qtgui::time_sink_f::sptr
48 typedef std::shared_ptr<time_sink_f> sptr;
49
50 /*!
51 * \brief Build floating point time sink
52 *
53 * \param size number of points to plot at once
54 * \param samp_rate sample rate (used to set x-axis labels)
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(int size,
60 double samp_rate,
61 const std::string& name,
62 unsigned int nconnections = 1,
63 QWidget* parent = NULL);
64
65 virtual void exec_() = 0;
66 virtual QWidget* qwidget() = 0;
67
68 virtual void set_y_axis(double min, double max) = 0;
69 virtual void set_y_label(const std::string& label, const std::string& unit = "") = 0;
70 virtual void set_update_time(double t) = 0;
71 virtual void set_title(const std::string& title) = 0;
72 virtual void set_line_label(unsigned int which, const std::string& line) = 0;
73 virtual void set_line_color(unsigned int which, const std::string& color) = 0;
74 virtual void set_line_width(unsigned int which, int width) = 0;
75 virtual void set_line_style(unsigned int which, int style) = 0;
76 virtual void set_line_marker(unsigned int which, int marker) = 0;
77 virtual void set_nsamps(const int newsize) = 0;
78 virtual void set_samp_rate(const double samp_rate) = 0;
79 virtual void set_line_alpha(unsigned int which, double alpha) = 0;
80
81 /*!
82 * Set up a trigger for the sink to know when to start
83 * plotting. Useful to isolate events and avoid noise.
84 *
85 * The trigger modes are Free, Auto, Normal, and Tag (see
86 * gr::qtgui::trigger_mode). The first three are like a normal
87 * oscope trigger function. Free means free running with no
88 * trigger, auto will trigger if the trigger event is seen, but
89 * will still plot otherwise, and normal will hold until the
90 * trigger event is observed. The Tag trigger mode allows us to
91 * trigger off a specific stream tag. The tag trigger is based
92 * only on the name of the tag, so when a tag of the given name
93 * is seen, the trigger is activated.
94 *
95 * In auto and normal mode, we look for the slope of the of the
96 * signal. Given a gr::qtgui::trigger_slope as either Positive
97 * or Negative, if the value between two samples moves in the
98 * given direction (x[1] > x[0] for Positive or x[1] < x[0] for
99 * Negative), then the trigger is activated.
100 *
101 * The \p delay value is specified in time based off the sample
102 * rate. If the sample rate of the block is set to 1, the delay
103 * is then also the sample number offset. This is the offset
104 * from the left-hand y-axis of the plot. It delays the signal
105 * to show the trigger event at the given delay along with some
106 * portion of the signal before the event. The delay must be
107 * within 0 - t_max where t_max is the maximum amount of time
108 * displayed on the time plot.
109 *
110 * \param mode The trigger_mode: free, auto, normal, or tag.
111 * \param slope The trigger_slope: positive or negative. Only
112 * used for auto and normal modes.
113 * \param level The magnitude of the trigger even for auto or normal modes.
114 * \param delay The delay (in units of time) for where the trigger happens.
115 * \param channel Which input channel to use for the trigger events.
116 * \param tag_key The name (as a string) of the tag to trigger off
117 * of if using the tag mode.
118 */
120 trigger_slope slope,
121 float level,
122 float delay,
123 int channel,
124 const std::string& tag_key = "") = 0;
125
126 virtual std::string title() = 0;
127 virtual std::string line_label(unsigned int which) = 0;
128 virtual std::string line_color(unsigned int which) = 0;
129 virtual int line_width(unsigned int which) = 0;
130 virtual int line_style(unsigned int which) = 0;
131 virtual int line_marker(unsigned int which) = 0;
132 virtual double line_alpha(unsigned int which) = 0;
133
134 virtual void set_size(int width, int height) = 0;
135
136 virtual void enable_menu(bool en = true) = 0;
137 virtual void enable_grid(bool en = true) = 0;
138 virtual void enable_autoscale(bool en = true) = 0;
139 virtual void enable_stem_plot(bool en = true) = 0;
140 virtual void enable_semilogx(bool en = true) = 0;
141 virtual void enable_semilogy(bool en = true) = 0;
142 virtual void enable_control_panel(bool en = true) = 0;
143 virtual void enable_tags(unsigned int which, bool en) = 0;
144 virtual void enable_tags(bool en) = 0;
145 virtual void enable_axis_labels(bool en = true) = 0;
146 virtual void disable_legend() = 0;
147
148 virtual int nsamps() const = 0;
149 virtual void reset() = 0;
150
151 QApplication* d_qApplication;
152};
153
154} /* namespace qtgui */
155} /* namespace gr */
156
157#endif /* INCLUDED_QTGUI_TIME_SINK_F_H */
A graphical sink to display multiple signals in time.
Definition: time_sink_f.h:45
virtual void set_samp_rate(const double samp_rate)=0
virtual void set_line_label(unsigned int which, const std::string &line)=0
std::shared_ptr< time_sink_f > sptr
Definition: time_sink_f.h:48
virtual void enable_tags(bool en)=0
virtual void set_line_alpha(unsigned int which, double alpha)=0
virtual void reset()=0
virtual void set_nsamps(const int newsize)=0
virtual void enable_autoscale(bool en=true)=0
virtual int nsamps() const =0
static sptr make(int size, double samp_rate, const std::string &name, unsigned int nconnections=1, QWidget *parent=NULL)
Build floating point time sink.
virtual void enable_grid(bool en=true)=0
virtual void set_line_width(unsigned int which, int width)=0
virtual void enable_axis_labels(bool en=true)=0
virtual void set_trigger_mode(trigger_mode mode, trigger_slope slope, float level, float delay, int channel, const std::string &tag_key="")=0
virtual std::string line_label(unsigned int which)=0
virtual QWidget * qwidget()=0
virtual int line_width(unsigned int which)=0
virtual void set_update_time(double t)=0
QApplication * d_qApplication
Definition: time_sink_f.h:151
virtual void set_line_color(unsigned int which, const std::string &color)=0
virtual std::string line_color(unsigned int which)=0
virtual int line_style(unsigned int which)=0
virtual void enable_tags(unsigned int which, bool en)=0
virtual void set_line_style(unsigned int which, int style)=0
virtual void exec_()=0
virtual void set_y_label(const std::string &label, const std::string &unit="")=0
virtual void enable_semilogx(bool en=true)=0
virtual void disable_legend()=0
virtual void set_y_axis(double min, double max)=0
virtual void enable_menu(bool en=true)=0
virtual void set_line_marker(unsigned int which, int marker)=0
virtual void enable_stem_plot(bool en=true)=0
virtual int line_marker(unsigned int which)=0
virtual void set_size(int width, int height)=0
virtual std::string title()=0
virtual double line_alpha(unsigned int which)=0
virtual void set_title(const std::string &title)=0
virtual void enable_semilogy(bool en=true)=0
virtual void enable_control_panel(bool en=true)=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
trigger_mode
Definition: trigger_mode.h:17
trigger_slope
Definition: trigger_mode.h:24
float min(float a, float b)
GNU Radio logging wrapper.
Definition: basic_block.h:29