##// END OF EJS Templates
Bug fix for bar presenters. It appears that order of childItems may change. Relying on order caused crash
Bug fix for bar presenters. It appears that order of childItems may change. Relying on order caused crash

File last commit:

r26:aa0e09b6abc0
r256:bd68fc4fe7ab
Show More
dataseriedialog.h
25 lines | 451 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:
Tero Ahola
The test app now preserves series type selection
r26 explicit DataSerieDialog(QString defaultType, QWidget *parent = 0);
Tero Ahola
Started to refactor the API to allow integrating different plot types
r19
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