##// 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
#ifndef DATASERIEDIALOG_H
#define DATASERIEDIALOG_H
#include <QDialog>
class QComboBox;
class DataSerieDialog : public QDialog
{
Q_OBJECT
public:
explicit DataSerieDialog(QWidget *parent = 0);
signals:
void accepted(QString series, QString data);
public slots:
void accept();
private:
QComboBox *m_seriesTypeCombo;
QComboBox *m_testDataCombo;
};
#endif // DATASERIEDIALOG_H