GNU Radio 3.6.5 C++ API
|
A graphical sink to display freq, spec, and time. More...
#include <qtgui_sink_f.h>
Public Member Functions | |
~qtgui_sink_f () | |
void | exec_ () |
QWidget * | qwidget () |
PyObject * | pyqwidget () |
void | set_frequency_range (const double centerfreq, const double bandwidth) |
void | set_time_domain_axis (double min, double max) |
void | set_constellation_axis (double xmin, double xmax, double ymin, double ymax) |
void | set_constellation_pen_size (int size) |
void | set_frequency_axis (double min, double max) |
void | set_update_time (double t) |
int | general_work (int noutput_items, gr_vector_int &ninput_items, gr_vector_const_void_star &input_items, gr_vector_void_star &output_items) |
compute output items from input items | |
Public Attributes | |
QApplication * | d_qApplication |
Friends | |
GR_QTGUI_API qtgui_sink_f_sptr | qtgui_make_sink_f (int fftsize, int wintype, double fc, double bw, const std::string &name, bool plotfreq, bool plotwaterfall, bool plottime, bool plotconst, QWidget *parent) |
A graphical sink to display freq, spec, and time.
This is a QT-based graphical sink the takes a float stream and plots it. The default action is to plot the signal as a PSD (FFT), spectrogram (waterfall), and time domain plots. The plots may be turned off by setting the appropriate boolean value in the constructor to False.
qtgui_sink_f::~qtgui_sink_f | ( | ) |
void qtgui_sink_f::exec_ | ( | ) |
int qtgui_sink_f::general_work | ( | int | noutput_items, |
gr_vector_int & | ninput_items, | ||
gr_vector_const_void_star & | input_items, | ||
gr_vector_void_star & | output_items | ||
) | [virtual] |
compute output items from input items
noutput_items | number of output items to write on each output stream |
ninput_items | number of input items available on each input stream |
input_items | vector of pointers to the input items, one entry per input stream |
output_items | vector of pointers to the output items, one entry per output stream |
general_work must call consume or consume_each to indicate how many items were consumed on each input stream.
Reimplemented from gr_block.
PyObject* qtgui_sink_f::pyqwidget | ( | ) |
QWidget* qtgui_sink_f::qwidget | ( | ) |
void qtgui_sink_f::set_constellation_axis | ( | double | xmin, |
double | xmax, | ||
double | ymin, | ||
double | ymax | ||
) |
void qtgui_sink_f::set_constellation_pen_size | ( | int | size | ) |
void qtgui_sink_f::set_frequency_axis | ( | double | min, |
double | max | ||
) |
void qtgui_sink_f::set_frequency_range | ( | const double | centerfreq, |
const double | bandwidth | ||
) |
void qtgui_sink_f::set_time_domain_axis | ( | double | min, |
double | max | ||
) |
void qtgui_sink_f::set_update_time | ( | double | t | ) |
GR_QTGUI_API qtgui_sink_f_sptr qtgui_make_sink_f | ( | int | fftsize, |
int | wintype, | ||
double | fc, | ||
double | bw, | ||
const std::string & | name, | ||
bool | plotfreq, | ||
bool | plotwaterfall, | ||
bool | plottime, | ||
bool | plotconst, | ||
QWidget * | parent | ||
) | [friend] |
QApplication* qtgui_sink_f::d_qApplication |