##// END OF EJS Templates
new files added for the waveform display features...
new files added for the waveform display features new files added for the statistics features

File last commit:

r20:eedc59c3c383 default
r20:eedc59c3c383 default
Show More
wfplot.h
28 lines | 470 B | text/x-c | CLexer
new files added for the waveform display features...
r20 #ifndef WFPLOT_H
#define WFPLOT_H
#include <QWidget>
#include <qcustomplot.h>
#include <QVBoxLayout>
#include <params.h>
class WFPlot : public QWidget
{
Q_OBJECT
public:
explicit WFPlot(QWidget *parent = 0);
QCustomPlot * customPlot;
void displayOnPlot(short *data, unsigned int size);
QVBoxLayout *mainLayout;
signals:
public slots:
void selectionChanged();
void mousePress();
void mouseWheel();
};
#endif // WFPLOT_H