23 #ifndef INCLUDED_QTGUI_TIME_RASTER_SINK_B_H 24 #define INCLUDED_QTGUI_TIME_RASTER_SINK_B_H 32 #include <qapplication.h> 33 #include <qwt_symbol.h> 67 typedef boost::shared_ptr<time_raster_sink_b>
sptr;
81 static sptr make(
double samp_rate,
84 const std::vector<float>& mult,
85 const std::vector<float>& offset,
86 const std::string& name,
88 QWidget* parent = NULL);
90 virtual void exec_() = 0;
91 virtual QWidget* qwidget() = 0;
94 virtual PyObject* pyqwidget() = 0;
96 virtual void* pyqwidget() = 0;
99 virtual void set_update_time(
double t) = 0;
100 virtual void set_title(
const std::string& title) = 0;
101 virtual void set_line_label(
unsigned int which,
const std::string& label) = 0;
102 virtual void set_line_color(
unsigned int which,
const std::string& color) = 0;
103 virtual void set_line_width(
unsigned int which,
int width) = 0;
104 virtual void set_line_style(
unsigned int which, Qt::PenStyle style) = 0;
105 virtual void set_line_marker(
unsigned int which, QwtSymbol::Style marker) = 0;
106 virtual void set_line_alpha(
unsigned int which,
double alpha) = 0;
107 virtual void set_color_map(
unsigned int which,
const int color) = 0;
109 virtual std::string title() = 0;
110 virtual std::string line_label(
unsigned int which) = 0;
111 virtual std::string line_color(
unsigned int which) = 0;
112 virtual int line_width(
unsigned int which) = 0;
113 virtual int line_style(
unsigned int which) = 0;
114 virtual int line_marker(
unsigned int which) = 0;
115 virtual double line_alpha(
unsigned int which) = 0;
116 virtual int color_map(
unsigned int which) = 0;
118 virtual void set_size(
int width,
int height) = 0;
120 virtual void set_samp_rate(
const double samp_rate) = 0;
121 virtual void set_num_rows(
double rows) = 0;
122 virtual void set_num_cols(
double cols) = 0;
124 virtual double num_rows() = 0;
125 virtual double num_cols() = 0;
127 virtual void set_multiplier(
const std::vector<float>& mult) = 0;
128 virtual void set_offset(
const std::vector<float>& offset) = 0;
130 virtual void set_intensity_range(
float min,
float max) = 0;
132 virtual void enable_menu(
bool en) = 0;
133 virtual void enable_grid(
bool en) = 0;
134 virtual void enable_autoscale(
bool en) = 0;
135 virtual void enable_axis_labels(
bool en =
true) = 0;
136 virtual void reset() = 0;
float min(float a, float b)
A graphical sink to display multiple signals on a time_raster plot.
Definition: time_raster_sink_b.h:63
#define QTGUI_API
Definition: gr-qtgui/include/gnuradio/qtgui/api.h:30
QApplication * d_qApplication
Definition: time_raster_sink_b.h:138
GNU Radio logging wrapper for log4cpp library (C++ port of log4j)
Definition: basic_block.h:43
synchronous 1:1 input to output with historyOverride work to provide the signal processing implementa...
Definition: sync_block.h:37
boost::shared_ptr< time_raster_sink_b > sptr
Definition: time_raster_sink_b.h:67