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