GNU Radio Manual and C++ API Reference 3.10.5.1
The Free & Open Software Radio Ecosystem
time_raster_sink_b.h
Go to the documentation of this file.
1/* -*- c++ -*- */
2/*
3 * Copyright 2012,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_RASTER_SINK_B_H
12#define INCLUDED_QTGUI_TIME_RASTER_SINK_B_H
13
14#include <gnuradio/qtgui/api.h>
15#include <gnuradio/sync_block.h>
16#include <qapplication.h>
17#include <qwt_symbol.h>
18
19namespace gr {
20namespace qtgui {
21
22/*!
23 * \brief A graphical sink to display multiple signals on a
24 * time_raster plot.
25 * \ingroup instrumentation_blk
26 * \ingroup qtgui_blk
27 *
28 * \details
29 * This is a QT-based graphical sink that takes in byte
30 * streams and plots a time_raster (spectrogram) plot.
31 *
32 * Input stream: This expects a bit stream (0, 1 in the LSB of a
33 * byte). It will display packed bytes but the display will have
34 * to be autoscaled.
35 *
36 * The sink supports plotting streaming byte/char data or
37 * messages. The message port is named "in". The two modes cannot
38 * be used simultaneously, and \p nconnections should be set to 0
39 * when using the message mode. GRC handles this issue by
40 * providing the "Float Message" type that removes the streaming
41 * port(s).
42 *
43 * This sink can plot messages that contain either uniform vectors
44 * of byte/char values (pmt::is_{u,s}32vector) or PDUs where the
45 * data is a uniform vector of byte/char values.
46 */
48{
49public:
50 // gr::qtgui::time_raster_sink_b::sptr
51 typedef std::shared_ptr<time_raster_sink_b> sptr;
52
53 /*!
54 * \brief Build a bit time raster sink.
55 *
56 * \param samp_rate sample rate of signal
57 * \param cols number of cols to plot
58 * \param rows number of rows to plot
59 * \param mult vector of floats as a scaling multiplier for each input stream
60 * \param offset vector of floats as an offset for each input stream
61 * \param name title for the plot
62 * \param nconnections number of streams connected
63 * \param parent a QWidget parent object, if any
64 */
65 static sptr make(double samp_rate,
66 double rows,
67 double cols,
68 const std::vector<float>& mult,
69 const std::vector<float>& offset,
70 const std::string& name,
71 int nconnections = 1,
72 QWidget* parent = NULL);
73
74 virtual void exec_() = 0;
75 virtual QWidget* qwidget() = 0;
76
77 virtual void set_x_label(const std::string& label) = 0;
78 virtual void set_x_range(double start, double end) = 0;
79 virtual void set_y_label(const std::string& label) = 0;
80 virtual void set_y_range(double start, double end) = 0;
81 virtual void set_update_time(double t) = 0;
82 virtual void set_title(const std::string& title) = 0;
83 virtual void set_line_label(unsigned int which, const std::string& label) = 0;
84 virtual void set_line_color(unsigned int which, const std::string& color) = 0;
85 virtual void set_line_width(unsigned int which, int width) = 0;
86 virtual void set_line_style(unsigned int which, Qt::PenStyle style) = 0;
87 virtual void set_line_marker(unsigned int which, QwtSymbol::Style marker) = 0;
88 virtual void set_line_alpha(unsigned int which, double alpha) = 0;
89 virtual void set_color_map(unsigned int which, const int color) = 0;
90
91 virtual std::string title() = 0;
92 virtual std::string line_label(unsigned int which) = 0;
93 virtual std::string line_color(unsigned int which) = 0;
94 virtual int line_width(unsigned int which) = 0;
95 virtual int line_style(unsigned int which) = 0;
96 virtual int line_marker(unsigned int which) = 0;
97 virtual double line_alpha(unsigned int which) = 0;
98 virtual int color_map(unsigned int which) = 0;
99
100 virtual void set_size(int width, int height) = 0;
101
102 virtual void set_samp_rate(const double samp_rate) = 0;
103 virtual void set_num_rows(double rows) = 0;
104 virtual void set_num_cols(double cols) = 0;
105
106 virtual double num_rows() = 0;
107 virtual double num_cols() = 0;
108
109 virtual void set_multiplier(const std::vector<float>& mult) = 0;
110 virtual void set_offset(const std::vector<float>& offset) = 0;
111
112 virtual void set_intensity_range(float min, float max) = 0;
113
114 virtual void enable_menu(bool en) = 0;
115 virtual void enable_grid(bool en) = 0;
116 virtual void enable_autoscale(bool en) = 0;
117 virtual void enable_axis_labels(bool en = true) = 0;
118 virtual void reset() = 0;
119
120 QApplication* d_qApplication;
121};
122
123} /* namespace qtgui */
124} /* namespace gr */
125
126#endif /* INCLUDED_QTGUI_TIME_RASTER_SINK_B_H */
A graphical sink to display multiple signals on a time_raster plot.
Definition: time_raster_sink_b.h:48
virtual void set_size(int width, int height)=0
virtual void set_title(const std::string &title)=0
virtual double num_cols()=0
virtual int line_marker(unsigned int which)=0
virtual void set_line_label(unsigned int which, const std::string &label)=0
virtual std::string line_color(unsigned int which)=0
virtual void set_multiplier(const std::vector< float > &mult)=0
virtual void set_intensity_range(float min, float max)=0
virtual void set_x_label(const std::string &label)=0
virtual int line_style(unsigned int which)=0
virtual std::string line_label(unsigned int which)=0
virtual int line_width(unsigned int which)=0
virtual void enable_grid(bool en)=0
virtual std::string title()=0
virtual void set_line_marker(unsigned int which, QwtSymbol::Style marker)=0
virtual void set_samp_rate(const double samp_rate)=0
virtual void set_offset(const std::vector< float > &offset)=0
virtual void enable_autoscale(bool en)=0
std::shared_ptr< time_raster_sink_b > sptr
Definition: time_raster_sink_b.h:51
virtual int color_map(unsigned int which)=0
virtual void set_num_rows(double rows)=0
virtual void enable_axis_labels(bool en=true)=0
virtual QWidget * qwidget()=0
virtual void set_x_range(double start, double end)=0
virtual void set_line_style(unsigned int which, Qt::PenStyle style)=0
virtual void enable_menu(bool en)=0
static sptr make(double samp_rate, double rows, double cols, const std::vector< float > &mult, const std::vector< float > &offset, const std::string &name, int nconnections=1, QWidget *parent=NULL)
Build a bit time raster sink.
virtual void set_color_map(unsigned int which, const int color)=0
QApplication * d_qApplication
Definition: time_raster_sink_b.h:120
virtual void set_y_label(const std::string &label)=0
virtual void set_line_width(unsigned int which, int width)=0
virtual void set_num_cols(double cols)=0
virtual void set_line_alpha(unsigned int which, double alpha)=0
virtual void set_line_color(unsigned int which, const std::string &color)=0
virtual void set_y_range(double start, double end)=0
virtual void set_update_time(double t)=0
virtual double num_rows()=0
virtual double line_alpha(unsigned int which)=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