23 #ifndef INCLUDED_QTGUI_CONST_SINK_C_H
24 #define INCLUDED_QTGUI_CONST_SINK_C_H
29 #include <qapplication.h>
58 static sptr make(
int size,
59 const std::string &
name,
61 QWidget *parent=NULL);
63 virtual void exec_() = 0;
64 virtual PyObject* pyqwidget() = 0;
66 virtual void set_y_axis(
double min,
double max) = 0;
67 virtual void set_x_axis(
double min,
double max) = 0;
69 virtual void set_update_time(
double t) = 0;
70 virtual void set_title(
const std::string &title) = 0;
71 virtual void set_line_label(
int which,
const std::string &label) = 0;
72 virtual void set_line_color(
int which,
const std::string &color) = 0;
73 virtual void set_line_width(
int which,
int width) = 0;
74 virtual void set_line_style(
int which,
int style) = 0;
75 virtual void set_line_marker(
int which,
int marker) = 0;
76 virtual void set_nsamps(
const int newsize) = 0;
77 virtual void set_line_alpha(
int which,
double alpha) = 0;
79 virtual std::string title() = 0;
80 virtual std::string line_label(
int which) = 0;
81 virtual std::string line_color(
int which) = 0;
82 virtual int line_width(
int which) = 0;
83 virtual int line_style(
int which) = 0;
84 virtual int line_marker(
int which) = 0;
85 virtual double line_alpha(
int which) = 0;
87 virtual void set_size(
int width,
int height) = 0;
89 virtual void enable_menu(
bool en=
true) = 0;
90 virtual void enable_autoscale(
bool en) = 0;
91 virtual int nsamps()
const = 0;
92 virtual void reset() = 0;
float min(float a, float b)
boost::shared_ptr< const_sink_c > sptr
Definition: const_sink_c.h:48
#define QTGUI_API
Definition: gr-qtgui/include/gnuradio/qtgui/api.h:30
shared_ptr documentation stub
Definition: shared_ptr_docstub.h:15
synchronous 1:1 input to output with historyOverride work to provide the signal processing implementa...
Definition: sync_block.h:37
A graphical sink to display the IQ constellation of multiple signals.
Definition: const_sink_c.h:44
VOLK_API $kern pname $kern name
A function pointer to the dispatcher implementation.
QApplication * d_qApplication
Definition: const_sink_c.h:94