Merging qtgui branch-r9068:9837: this ads a qtgui_sink_c and qtgui_sink_f that displa...
[debian/gnuradio] / gr-qtgui / src / lib / qtgui.i
1 /* -*- c++ -*- */
2 /*
3  * Copyright 2008 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 %feature("autodoc","1");
24 %include "exception.i"
25 %import "gnuradio.i"
26
27 %{
28 #include "gnuradio_swig_bug_workaround.h"       // mandatory bug fix
29 #include "qtgui_sink_c.h"
30 #include "qtgui_sink_f.h"
31 #include <stdexcept>
32 %}
33
34 GR_SWIG_BLOCK_MAGIC(qtgui,sink_c)
35
36   qtgui_sink_c_sptr qtgui_make_sink_c (int fftsize, int wintype,
37                                        float fmin=-0.5, float fmax=0.5, const std::string &name="Display");
38
39 class qtgui_sink_c : public gr_block
40 {
41 private:
42   friend qtgui_sink_c_sptr qtgui_make_sink_c (int fftsize, int wintype,
43                                               float fmin, float fmax, const std::string &name);
44   qtgui_sink_c (int fftsize, int wintype,
45                 float fmin, float fmax, const std::string &name);
46
47 public:
48   void start_app();
49
50 };
51
52
53
54 /****************************************************************************************/
55
56
57 GR_SWIG_BLOCK_MAGIC(qtgui,sink_f)
58   
59 qtgui_sink_f_sptr qtgui_make_sink_f (int fftsize, const std::vector<float> &window,
60                                      float fmin, float fmax, const std::string &name="Display");
61
62 class qtgui_sink_f : public gr_block
63 {
64 private:
65   friend qtgui_sink_f_sptr qtgui_make_sink_f (int fftsize, const std::vector<float> &window,
66                                               float fmin, float fmax, const std::string &name);
67   qtgui_sink_fy (int fftsize, const std::vector<float> &window,
68                  float fmin, float fmax, const std::string &name);
69   
70 public:
71   void start_app();
72 };
73