Merging qtdevel2 branch -r10565:10849. This adds a lot of fixes and capabilities...
[debian/gnuradio] / gr-qtgui / src / lib / qtgui.i
1 /* -*- c++ -*- */
2 /*
3  * Copyright 2008,2009 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 %include "gnuradio.i"
24
25 %{
26 #include "qtgui_sink_c.h"
27 #include "qtgui_sink_f.h"
28 %}
29
30 GR_SWIG_BLOCK_MAGIC(qtgui,sink_c)
31
32   qtgui_sink_c_sptr qtgui_make_sink_c (int fftsize, int wintype,
33                                        float fmin=-0.5, float fmax=0.5,
34                                        const std::string &name="Display",
35                                        bool plotfreq=true, bool plotwaterfall=true,
36                                        bool plotwaterfall3d=true, bool plottime=true,
37                                        bool plotconst=true,
38                                        QWidget *parent=NULL);
39
40 class qtgui_sink_c : public gr_block
41 {
42 private:
43   friend qtgui_sink_c_sptr qtgui_make_sink_c (int fftsize, int wintype,
44                                               float fmin, float fmax,
45                                               const std::string &name,
46                                               bool plotfreq, bool plotwaterfall,
47                                               bool plotwaterfall3d, bool plottime,
48                                               bool plotconst,
49                                               QWidget *parent);
50   qtgui_sink_c (int fftsize, int wintype,
51                 float fmin, float fmax,
52                 const std::string &name,
53                 bool plotfreq, bool plotwaterfall,
54                 bool plotwaterfall3d, bool plottime,
55                 bool plotconst,
56                 QWidget *parent);
57
58 public:
59   void exec_();
60   PyObject* pyqwidget();
61
62   void set_frequency_range(const double centerfreq,
63                            const double startfreq,
64                            const double stopfreq);
65 };
66
67
68
69 /*********************************************************************/
70
71
72 GR_SWIG_BLOCK_MAGIC(qtgui,sink_f)
73   
74 qtgui_sink_f_sptr qtgui_make_sink_f (int fftsize, int wintype,
75                                      float fmin=-0.5, float fmax=0.5,
76                                      const std::string &name="Display",
77                                      bool plotfreq=true, bool plotwaterfall=true,
78                                      bool plotwaterfall3d=true, bool plottime=true,
79                                      bool plotconst=true,
80                                      QWidget *parent=NULL);
81
82 class qtgui_sink_f : public gr_block
83 {
84 private:
85   friend qtgui_sink_f_sptr qtgui_make_sink_f (int fftsize, int wintype,
86                                               float fmin, float fmax,
87                                               const std::string &name,
88                                               bool plotfreq, bool plotwaterfall,
89                                               bool plotwaterfall3d, bool plottime,
90                                               bool plotconst,
91                                               QWidget *parent);
92   qtgui_sink_f (int fftsize, int wintype,
93                 float fmin, float fmax,
94                 const std::string &name,
95                 bool plotfreq, bool plotwaterfall,
96                 bool plotwaterfall3d, bool plottime,
97                 bool plotconst,
98                 QWidget *parent);
99
100 public:
101   void exec_();
102   PyObject* pyqwidget();
103 };
104