##// END OF EJS Templates
Test app now adds n data series of different type
Test app now adds n data series of different type

File last commit:

r20:1184ba596217
r20:1184ba596217
Show More
dataseriedialog.h
25 lines | 430 B | text/x-c | CLexer
Tero Ahola
Started to refactor the API to allow integrating different plot types
r19 #ifndef DATASERIEDIALOG_H
#define DATASERIEDIALOG_H
#include <QDialog>
Tero Ahola
Test app now adds n data series of different type
r20 class QComboBox;
Tero Ahola
Started to refactor the API to allow integrating different plot types
r19
class DataSerieDialog : public QDialog
{
Q_OBJECT
public:
explicit DataSerieDialog(QWidget *parent = 0);
signals:
Tero Ahola
Test app now adds n data series of different type
r20 void accepted(QString series, QString data);
Tero Ahola
Started to refactor the API to allow integrating different plot types
r19
public slots:
Tero Ahola
Test app now adds n data series of different type
r20 void accept();
private:
QComboBox *m_seriesTypeCombo;
QComboBox *m_testDataCombo;
Tero Ahola
Started to refactor the API to allow integrating different plot types
r19 };
#endif // DATASERIEDIALOG_H