Imported Upstream version 3.2.2
[debian/gnuradio] / gnuradio-core / src / lib / io / gr_oscope_sink.i
1 /* -*- c++ -*- */
2 /*
3  * Copyright 2004 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 gr_trigger_mode.h
24
25 // GR_SWIG_BLOCK_MAGIC(gr,oscope_sink_x)
26
27 %ignore gr_oscope_sink_x;
28 class gr_oscope_sink_x : public gr_sync_block
29 {
30  protected:
31   gr_oscope_sink_x (const std::string name,
32                     gr_io_signature_sptr input_sig,
33                     double sample_rate);
34
35  public:
36   ~gr_oscope_sink_x ();
37
38   bool set_update_rate (double update_rate);
39   bool set_decimation_count (int decimation_count);
40   bool set_trigger_channel (int channel);
41   bool set_trigger_mode (gr_trigger_mode mode);
42   bool set_trigger_slope (gr_trigger_slope slope);
43   bool set_trigger_level (double trigger_level);
44   bool set_trigger_level_auto ();                               // set to 50% level
45   bool set_sample_rate(double sample_rate);
46
47   // ACCESSORS
48   int num_channels () const;
49   double sample_rate () const;
50   double update_rate () const;
51   int get_decimation_count () const;
52   int get_trigger_channel () const;
53   gr_trigger_mode get_trigger_mode () const;
54   gr_trigger_slope get_trigger_slope () const;
55   double get_trigger_level () const;
56
57   // # of samples written to each output record.
58   int get_samples_per_output_record () const;
59 };
60
61 // ----------------------------------------------------------------
62
63 GR_SWIG_BLOCK_MAGIC(gr,oscope_sink_f)
64
65 gr_oscope_sink_f_sptr
66 gr_make_oscope_sink_f (double sample_rate, gr_msg_queue_sptr msgq);
67
68 class gr_oscope_sink_f : public gr_oscope_sink_x
69 {
70 private:
71   gr_oscope_sink_f (double sample_rate, gr_msg_queue_sptr msgq);
72
73 public:
74   ~gr_oscope_sink_f ();
75 };
76
77 // ----------------------------------------------------------------