GNU Radio 3.7.2.1 C++ API
time_sink_c.h
Go to the documentation of this file.
1
/* -*- c++ -*- */
2
/*
3
* Copyright 2011-2013 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
#ifndef INCLUDED_QTGUI_TIME_SINK_C_H
24
#define INCLUDED_QTGUI_TIME_SINK_C_H
25
26
#include <Python.h>
27
#include <
gnuradio/qtgui/api.h
>
28
#include <
gnuradio/qtgui/trigger_mode.h
>
29
#include <
gnuradio/sync_block.h
>
30
#include <qapplication.h>
31
32
namespace
gr {
33
namespace
qtgui {
34
35
/*!
36
* \brief A graphical sink to display multiple signals in time.
37
* \ingroup instrumentation_blk
38
* \ingroup qtgui_blk
39
*
40
* \details
41
* This is a QT-based graphical sink the takes set of a complex
42
* streams and plots them in the time domain. For each signal, both
43
* the signal's I and Q parts are plotted, and they are all plotted
44
* with a different color, and the \a set_title and \a set_color
45
* functions can be used to change the lable and color for a given
46
* input number.
47
*/
48
class
QTGUI_API
time_sink_c
:
virtual
public
sync_block
49
{
50
public
:
51
// gr::qtgui::time_sink_c::sptr
52
typedef
boost::shared_ptr<time_sink_c>
sptr
;
53
54
/*!
55
* \brief Build complex time sink
56
*
57
* \param size number of points to plot at once
58
* \param samp_rate sample rate (used to set x-axis labels)
59
* \param name title for the plot
60
* \param nconnections number of signals connected to sink
61
* \param parent a QWidget parent object, if any
62
*/
63
static
sptr
make(
int
size,
double
samp_rate,
64
const
std::string &name,
65
int
nconnections=1,
66
QWidget *parent=NULL);
67
68
virtual
void
exec_() = 0;
69
virtual
PyObject* pyqwidget() = 0;
70
71
virtual
void
set_y_axis(
double
min
,
double
max) = 0;
72
virtual
void
set_update_time(
double
t) = 0;
73
virtual
void
set_title(
const
std::string &title) = 0;
74
virtual
void
set_line_label(
int
which,
const
std::string &label) = 0;
75
virtual
void
set_line_color(
int
which,
const
std::string &color) = 0;
76
virtual
void
set_line_width(
int
which,
int
width) = 0;
77
virtual
void
set_line_style(
int
which,
int
style) = 0;
78
virtual
void
set_line_marker(
int
which,
int
marker) = 0;
79
virtual
void
set_nsamps(
const
int
newsize) = 0;
80
virtual
void
set_samp_rate(
const
double
samp_rate) = 0;
81
virtual
void
set_line_alpha(
int
which,
double
alpha) = 0;
82
virtual
void
set_trigger_mode(
trigger_mode
mode,
trigger_slope
slope,
83
float
level,
float
delay,
int
channel,
84
const
std::string &tag_key=
""
) = 0;
85
86
virtual
std::string title() = 0;
87
virtual
std::string line_label(
int
which) = 0;
88
virtual
std::string line_color(
int
which) = 0;
89
virtual
int
line_width(
int
which) = 0;
90
virtual
int
line_style(
int
which) = 0;
91
virtual
int
line_marker(
int
which) = 0;
92
virtual
double
line_alpha(
int
which) = 0;
93
94
virtual
void
set_size(
int
width,
int
height) = 0;
95
96
virtual
void
enable_menu(
bool
en=
true
) = 0;
97
virtual
void
enable_grid(
bool
en=
true
) = 0;
98
virtual
void
enable_autoscale(
bool
en=
true
) = 0;
99
virtual
void
enable_stem_plot(
bool
en=
true
) = 0;
100
virtual
void
enable_semilogx(
bool
en=
true
) = 0;
101
virtual
void
enable_semilogy(
bool
en=
true
) = 0;
102
virtual
void
enable_tags(
int
which,
bool
en) = 0;
103
104
virtual
int
nsamps()
const
= 0;
105
virtual
void
reset() = 0;
106
107
QApplication *
d_qApplication
;
108
};
109
110
}
/* namespace qtgui */
111
}
/* namespace gr */
112
113
#endif
/* INCLUDED_QTGUI_TIME_SINK_C_H */
gnuradio
gr-qtgui
include
gnuradio
qtgui
time_sink_c.h
Generated by
1.8.3.1