##// END OF EJS Templates
Progress bar added to the plugin
Progress bar added to the plugin

File last commit:

r34:b602c6989615 default
r57:71cb087f0080 default
Show More
wfdisplay.h
39 lines | 614 B | text/x-c | CLexer
#ifndef WFDISPLAY_H
#define WFDISPLAY_H
#include "wfdisplay_global.h"
#include <QWidget>
#include <QGridLayout>
#include <QVBoxLayout>
#include <QTabWidget>
#include <wfpage.h>
#define XMAX 2048
class WFDISPLAYSHARED_EXPORT WFDisplay : public QWidget
{
Q_OBJECT
public:
explicit WFDisplay(QWidget *parent = 0);
WFPage * page_f0;
WFPage * page_f1;
WFPage * page_f2;
WFPage * page_f3;
QTabWidget *spwTabWidget;
QVBoxLayout *waveforms_LAYOUT;
void displayOnPlot(short *data, unsigned char num_page, unsigned char num);
signals:
public slots:
};
#endif // WFDISPLAY_H