23 #ifndef INCLUDED_QTGUI_HISTOGRAM_SINK_F_H
24 #define INCLUDED_QTGUI_HISTOGRAM_SINK_F_H
32 #include <qapplication.h>
79 typedef boost::shared_ptr<histogram_sink_f>
sptr;
92 static sptr make(
int size,
int bins,
93 double xmin,
double xmax,
94 const std::string &name,
96 QWidget *parent=NULL);
98 virtual void exec_() = 0;
99 virtual QWidget* qwidget() = 0;
102 virtual PyObject* pyqwidget() = 0;
104 virtual void* pyqwidget() = 0;
108 virtual std::string title() = 0;
109 virtual std::string line_label(
int which) = 0;
110 virtual std::string line_color(
int which) = 0;
111 virtual int line_width(
int which) = 0;
112 virtual int line_style(
int which) = 0;
113 virtual int line_marker(
int which) = 0;
114 virtual double line_alpha(
int which) = 0;
116 virtual void set_size(
int width,
int height) = 0;
118 virtual void enable_menu(
bool en=
true) = 0;
119 virtual void enable_grid(
bool en=
true) = 0;
120 virtual void enable_autoscale(
bool en=
true) = 0;
121 virtual void enable_semilogx(
bool en=
true) = 0;
122 virtual void enable_semilogy(
bool en=
true) = 0;
123 virtual void enable_accumulate(
bool en=
true) = 0;
124 virtual void autoscalex() = 0;
125 virtual int nsamps()
const = 0;
126 virtual int bins()
const = 0;
127 virtual void reset() = 0;
131 virtual void set_y_axis(
double min,
double max) = 0;
132 virtual void set_x_axis(
double min,
double max) = 0;
133 virtual void set_update_time(
double t) = 0;
134 virtual void set_title(
const std::string &title) = 0;
135 virtual void set_line_label(
int which,
const std::string &line) = 0;
136 virtual void set_line_color(
int which,
const std::string &color) = 0;
137 virtual void set_line_width(
int which,
int width) = 0;
138 virtual void set_line_style(
int which,
int style) = 0;
139 virtual void set_line_marker(
int which,
int marker) = 0;
140 virtual void set_line_alpha(
int which,
double alpha) = 0;
141 virtual void set_nsamps(
const int newsize) = 0;
142 virtual void set_bins(
const int bins) = 0;
143 virtual void disable_legend() = 0;
float min(float a, float b)
boost::shared_ptr< histogram_sink_f > sptr
Definition: histogram_sink_f.h:79
#define QTGUI_API
Definition: gr-qtgui/include/gnuradio/qtgui/api.h:30
Include this header to use the message passing features.
Definition: logger.h:131
synchronous 1:1 input to output with historyOverride work to provide the signal processing implementa...
Definition: sync_block.h:37
QApplication * d_qApplication
Definition: histogram_sink_f.h:129
A graphical sink to display a histogram.
Definition: histogram_sink_f.h:75