129e9269ed43b3980ac8d45dca07c33b8fc2a0ad
[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, const std::string &name="Display");
34
35 class qtgui_sink_c : public gr_block
36 {
37 private:
38   friend qtgui_sink_c_sptr qtgui_make_sink_c (int fftsize, int wintype,
39                                               float fmin, float fmax, const std::string &name);
40   qtgui_sink_c (int fftsize, int wintype,
41                 float fmin, float fmax, const std::string &name);
42
43 public:
44   void start_app();
45
46 };
47
48
49
50 /****************************************************************************************/
51
52
53 GR_SWIG_BLOCK_MAGIC(qtgui,sink_f)
54   
55 qtgui_sink_f_sptr qtgui_make_sink_f (int fftsize, const std::vector<float> &window,
56                                      float fmin, float fmax, const std::string &name="Display");
57
58 class qtgui_sink_f : public gr_block
59 {
60 private:
61   friend qtgui_sink_f_sptr qtgui_make_sink_f (int fftsize, const std::vector<float> &window,
62                                               float fmin, float fmax, const std::string &name);
63   qtgui_sink_fy (int fftsize, const std::vector<float> &window,
64                  float fmin, float fmax, const std::string &name);
65   
66 public:
67   void start_app();
68 };
69