some cleanup as well as adding a way to pass the Qapplication between sinks that...
[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
36 class qtgui_sink_c : public gr_block
37 {
38 private:
39   friend qtgui_sink_c_sptr qtgui_make_sink_c (int fftsize, int wintype,
40                                               float fmin, float fmax,
41                                               const std::string &name);
42   qtgui_sink_c (int fftsize, int wintype,
43                 float fmin, float fmax, const std::string &name);
44
45 public:
46   void start_app();
47   void initialize();
48   void initialize(QApplication *qapp);
49   QApplication* get_qapplication(); 
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, 
60                                      const std::vector<float> &window,
61                                      float fmin, float fmax, 
62                                      const std::string &name="Display");
63
64 class qtgui_sink_f : public gr_block
65 {
66 private:
67   friend qtgui_sink_f_sptr qtgui_make_sink_f (int fftsize, 
68                                               const std::vector<float> &window,
69                                               float fmin, float fmax, 
70                                               const std::string &name);
71   qtgui_sink_f (int fftsize, 
72                 const std::vector<float> &window,
73                 float fmin, float fmax,
74                 const std::string &name);
75   
76 public:
77   void start_app();
78 };
79
80