GNU Radio Manual and C++ API Reference  3.7.13.4
The Free & Open Software Radio Ecosystem
histogram_sink_f.h
Go to the documentation of this file.
1 /* -*- c++ -*- */
2 /*
3  * Copyright 2013,2015 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_HISTOGRAM_SINK_F_H
24 #define INCLUDED_QTGUI_HISTOGRAM_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 a histogram.
39  * \ingroup instrumentation_blk
40  * \ingroup qtgui_blk
41  *
42  * \details
43  * This is a QT-based graphical sink the displays a histogram of
44  * the data.
45  *
46  * This histogram allows you to set and change at runtime the
47  * number of points to plot at once and the number of bins in the
48  * histogram. Both x and y-axis have their own auto-scaling
49  * behavior. By default, auto-scaling the y-axis is turned on and
50  * continuously updates the y-axis max value based on the
51  * currently plotted histogram.
52  *
53  * The x-axis auto-scaling function only updates once when
54  * clicked. This resets the x-axis to the current range of minimum
55  * and maximum values represented in the histogram. It resets any
56  * values currently displayed because the location and width of
57  * the bins may have changed.
58  *
59  * The histogram also has an accumulate function that simply
60  * accumulates the data between calls to work. When accumulate is
61  * activated, the y-axis autoscaling is turned on by default as
62  * the values will quickly grow in the this direction.
63  *
64  * The sink supports plotting streaming float data or
65  * messages. The message port is named "in". The two modes cannot
66  * be used simultaneously, and \p nconnections should be set to 0
67  * when using the message mode. GRC handles this issue by
68  * providing the "Float Message" type that removes the streaming
69  * port(s).
70  *
71  * This sink can plot messages that contain either uniform vectors
72  * of float 32 values (pmt::is_f32vector) or PDUs where the data
73  * is a uniform vector of float 32 values.
74  */
75  class QTGUI_API histogram_sink_f : virtual public sync_block
76  {
77  public:
78  // gr::qtgui::histogram_sink_f::sptr
79  typedef boost::shared_ptr<histogram_sink_f> sptr;
80 
81  /*!
82  * \brief Build floating point histogram sink
83  *
84  * \param size number of points to plot at once
85  * \param bins number of bins to sort the data into
86  * \param xmin minimum x-axis value
87  * \param xmax maximum x-axis value
88  * \param name title for the plot
89  * \param nconnections number of signals connected to sink
90  * \param parent a QWidget parent object, if any
91  */
92  static sptr make(int size, int bins,
93  double xmin, double xmax,
94  const std::string &name,
95  int nconnections=1,
96  QWidget *parent=NULL);
97 
98  virtual void exec_() = 0;
99  virtual QWidget* qwidget() = 0;
100 
101 #ifdef ENABLE_PYTHON
102  virtual PyObject* pyqwidget() = 0;
103 #else
104  virtual void* pyqwidget() = 0;
105 #endif
106 
107  public:
108  virtual std::string title() = 0;
109  virtual std::string line_label(int which) = 0;
110  virtual std::string line_color(int which) = 0;
111  virtual int line_width(int which) = 0;
112  virtual int line_style(int which) = 0;
113  virtual int line_marker(int which) = 0;
114  virtual double line_alpha(int which) = 0;
115 
116  virtual void set_size(int width, int height) = 0;
117 
118  virtual void enable_menu(bool en=true) = 0;
119  virtual void enable_grid(bool en=true) = 0;
120  virtual void enable_autoscale(bool en=true) = 0;
121  virtual void enable_semilogx(bool en=true) = 0;
122  virtual void enable_semilogy(bool en=true) = 0;
123  virtual void enable_accumulate(bool en=true) = 0;
124  virtual void enable_axis_labels(bool en=true) = 0;
125  virtual void autoscalex() = 0;
126  virtual int nsamps() const = 0;
127  virtual int bins() const = 0;
128  virtual void reset() = 0;
129 
130  QApplication *d_qApplication;
131 
132  virtual void set_y_axis(double min, double max) = 0;
133  virtual void set_x_axis(double min, double max) = 0;
134  virtual void set_update_time(double t) = 0;
135  virtual void set_title(const std::string &title) = 0;
136  virtual void set_line_label(int which, const std::string &line) = 0;
137  virtual void set_line_color(int which, const std::string &color) = 0;
138  virtual void set_line_width(int which, int width) = 0;
139  virtual void set_line_style(int which, int style) = 0;
140  virtual void set_line_marker(int which, int marker) = 0;
141  virtual void set_line_alpha(int which, double alpha) = 0;
142  virtual void set_nsamps(const int newsize) = 0;
143  virtual void set_bins(const int bins) = 0;
144  virtual void disable_legend() = 0;
145  };
146 
147  } /* namespace qtgui */
148 } /* namespace gr */
149 
150 #endif /* INCLUDED_QTGUI_HISTOGRAM_SINK_F_H */
float min(float a, float b)
boost::shared_ptr< histogram_sink_f > sptr
Definition: histogram_sink_f.h:79
#define QTGUI_API
Definition: gr-qtgui/include/gnuradio/qtgui/api.h:30
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
QApplication * d_qApplication
Definition: histogram_sink_f.h:130
A graphical sink to display a histogram.
Definition: histogram_sink_f.h:75