mirror of https://github.com/pvnis/srsRAN_4G.git
You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
53 lines
1.2 KiB
C++
53 lines
1.2 KiB
C++
#ifndef WATERFALLWIDGET_H
|
|
#define WATERFALLWIDGET_H
|
|
|
|
#include <qapplication.h>
|
|
#include <qwidget.h>
|
|
#include <complex>
|
|
|
|
class RealDataEvent;
|
|
class Lineplot;
|
|
class Spectrogramplot;
|
|
class QPushButton;
|
|
|
|
class WaterfallWidget
|
|
: public QWidget
|
|
{
|
|
Q_OBJECT
|
|
|
|
public:
|
|
WaterfallWidget(int numDataPoints, int numRows, QWidget* parent = 0);
|
|
virtual ~WaterfallWidget();
|
|
|
|
public slots:
|
|
void customEvent( QEvent * e );
|
|
void setWidgetTitle(QString title);
|
|
void setPlotXLabel(QString xLabel);
|
|
void setPlotYLabel(QString yLabel);
|
|
void setPlotXAxisRange(double xMin, double xMax);
|
|
void setPlotXAxisScale(double xMin, double xMax);
|
|
void setPlotYAxisScale(double yMin, double yMax);
|
|
void setSpectrogramXLabel(QString xLabel);
|
|
void setSpectrogramYLabel(QString yLabel);
|
|
void setSpectrogramXAxisRange(double xMin, double xMax);
|
|
void setSpectrogramYAxisRange(double yMin, double yMax);
|
|
void setSpectrogramZAxisScale(double zMin, double zMax);
|
|
void autoscale();
|
|
|
|
protected:
|
|
virtual void timerEvent(QTimerEvent *event);
|
|
|
|
private:
|
|
void appendData(RealDataEvent* e);
|
|
Lineplot* p_;
|
|
Spectrogramplot* s_;
|
|
QPushButton* b_;
|
|
|
|
double* data_;
|
|
int numPoints_;
|
|
int timerId_;
|
|
bool haveNewData_;
|
|
};
|
|
|
|
#endif // WATERFALLWIDGET_H
|