GNU Radio 3.7.2 C++ API
histogram_sink_f.h
Go to the documentation of this file.
1 /* -*- c++ -*- */
2 /*
3  * Copyright 2013 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 #include <Python.h>
27 #include <gnuradio/qtgui/api.h>
28 #include <gnuradio/sync_block.h>
29 #include <qapplication.h>
30 
31 namespace gr {
32  namespace qtgui {
33 
34  /*!
35  * \brief A graphical sink to display a histogram.
36  * \ingroup instrumentation_blk
37  * \ingroup qtgui_blk
38  *
39  * \details
40  * This is a QT-based graphical sink the displays a histogram of
41  * the data.
42  *
43  * This histogram allows you to set and change at runtime the
44  * number of points to plot at once and the number of bins in the
45  * histogram. Both x and y-axis have their own auto-scaling
46  * behavior. By default, auto-scaling the y-axis is turned on and
47  * continuously updates the y-axis max value based on the
48  * currently plotted histogram.
49  *
50  * The x-axis auto-scaling function only updates once when
51  * clicked. This resets the x-axis to the current range of minimum
52  * and maximum values represented in the histogram. It resets any
53  * values currently displayed because the location and width of
54  * the bins may have changed.
55  *
56  * The histogram also has an accumulate function that simply
57  * accumulates the data between calls to work. When accumulate is
58  * activated, the y-axis autoscaling is turned on by default as
59  * the values will quickly grow in the this direction.
60  */
61  class QTGUI_API histogram_sink_f : virtual public sync_block
62  {
63  public:
64  // gr::qtgui::histogram_sink_f::sptr
66 
67  /*!
68  * \brief Build floating point histogram sink
69  *
70  * \param size number of points to plot at once
71  * \param bins number of bins to sort the data into
72  * \param xmin minimum x-axis value
73  * \param xmax maximum x-axis value
74  * \param name title for the plot
75  * \param nconnections number of signals connected to sink
76  * \param parent a QWidget parent object, if any
77  */
78  static sptr make(int size, int bins,
79  double xmin, double xmax,
80  const std::string &name,
81  int nconnections=1,
82  QWidget *parent=NULL);
83 
84  virtual void exec_() = 0;
85  virtual PyObject* pyqwidget() = 0;
86 
87  public:
88  virtual std::string title() = 0;
89  virtual std::string line_label(int which) = 0;
90  virtual std::string line_color(int which) = 0;
91  virtual int line_width(int which) = 0;
92  virtual int line_style(int which) = 0;
93  virtual int line_marker(int which) = 0;
94  virtual double line_alpha(int which) = 0;
95 
96  virtual void set_size(int width, int height) = 0;
97 
98  virtual void enable_menu(bool en=true) = 0;
99  virtual void enable_grid(bool en=true) = 0;
100  virtual void enable_autoscale(bool en=true) = 0;
101  virtual void enable_semilogx(bool en=true) = 0;
102  virtual void enable_semilogy(bool en=true) = 0;
103  virtual void enable_accumulate(bool en=true) = 0;
104  virtual void autoscalex() = 0;
105  virtual int nsamps() const = 0;
106  virtual int bins() const = 0;
107  virtual void reset() = 0;
108 
109  QApplication *d_qApplication;
110 
111  virtual void set_y_axis(double min, double max) = 0;
112  virtual void set_x_axis(double min, double max) = 0;
113  virtual void set_update_time(double t) = 0;
114  virtual void set_title(const std::string &title) = 0;
115  virtual void set_line_label(int which, const std::string &line) = 0;
116  virtual void set_line_color(int which, const std::string &color) = 0;
117  virtual void set_line_width(int which, int width) = 0;
118  virtual void set_line_style(int which, int style) = 0;
119  virtual void set_line_marker(int which, int marker) = 0;
120  virtual void set_line_alpha(int which, double alpha) = 0;
121  virtual void set_nsamps(const int newsize) = 0;
122  virtual void set_bins(const int bins) = 0;
123  };
124 
125  } /* namespace qtgui */
126 } /* namespace gr */
127 
128 #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:65
#define QTGUI_API
Definition: gr-qtgui/include/gnuradio/qtgui/api.h:30
shared_ptr documentation stub
Definition: shared_ptr_docstub.h:15
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:109
VOLK_API $kern pname $kern name
A function pointer to the dispatcher implementation.
A graphical sink to display a histogram.
Definition: histogram_sink_f.h:61