GNU Radio 3.7.2 C++ API
const_sink_c.h
Go to the documentation of this file.
1 /* -*- c++ -*- */
2 /*
3  * Copyright 2012 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_CONST_SINK_C_H
24 #define INCLUDED_QTGUI_CONST_SINK_C_H
25 
26 #include <Python.h>
27 #include <gnuradio/qtgui/api.h>
28 #include <gnuradio/sync_block.h>
29 #include <qapplication.h>
30 #include <gnuradio/filter/firdes.h>
31 
32 namespace gr {
33  namespace qtgui {
34 
35  /*!
36  * \brief A graphical sink to display the IQ constellation of multiple signals.
37  * \ingroup instrumentation_blk
38  * \ingroup qtgui_blk
39  *
40  * \details
41  * This is a QT-based graphical sink the takes set of a complex
42  * streams and plots them on an IQ constellation plot.
43  */
44  class QTGUI_API const_sink_c : virtual public sync_block
45  {
46  public:
47  // gr::qtgui::const_sink_c::sptr
49 
50  /*!
51  * \brief Build a complex PSD sink.
52  *
53  * \param size number of points to plot at once
54  * \param name title for the plot
55  * \param nconnections number of signals connected to sink
56  * \param parent a QWidget parent object, if any
57  */
58  static sptr make(int size,
59  const std::string &name,
60  int nconnections=1,
61  QWidget *parent=NULL);
62 
63  virtual void exec_() = 0;
64  virtual PyObject* pyqwidget() = 0;
65 
66  virtual void set_y_axis(double min, double max) = 0;
67  virtual void set_x_axis(double min, double max) = 0;
68 
69  virtual void set_update_time(double t) = 0;
70  virtual void set_title(const std::string &title) = 0;
71  virtual void set_line_label(int which, const std::string &label) = 0;
72  virtual void set_line_color(int which, const std::string &color) = 0;
73  virtual void set_line_width(int which, int width) = 0;
74  virtual void set_line_style(int which, int style) = 0;
75  virtual void set_line_marker(int which, int marker) = 0;
76  virtual void set_nsamps(const int newsize) = 0;
77  virtual void set_line_alpha(int which, double alpha) = 0;
78 
79  virtual std::string title() = 0;
80  virtual std::string line_label(int which) = 0;
81  virtual std::string line_color(int which) = 0;
82  virtual int line_width(int which) = 0;
83  virtual int line_style(int which) = 0;
84  virtual int line_marker(int which) = 0;
85  virtual double line_alpha(int which) = 0;
86 
87  virtual void set_size(int width, int height) = 0;
88 
89  virtual void enable_menu(bool en=true) = 0;
90  virtual void enable_autoscale(bool en) = 0;
91  virtual int nsamps() const = 0;
92  virtual void reset() = 0;
93 
94  QApplication *d_qApplication;
95  };
96 
97  } /* namespace qtgui */
98 } /* namespace gr */
99 
100 #endif /* INCLUDED_QTGUI_CONST_SINK_C_H */
float min(float a, float b)
boost::shared_ptr< const_sink_c > sptr
Definition: const_sink_c.h:48
#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
A graphical sink to display the IQ constellation of multiple signals.
Definition: const_sink_c.h:44
VOLK_API $kern pname $kern name
A function pointer to the dispatcher implementation.
QApplication * d_qApplication
Definition: const_sink_c.h:94