##// END OF EJS Templates
integrating bar charts to test app.. crashes for now
integrating bar charts to test app.. crashes for now

File last commit:

r26:aa0e09b6abc0
r164:8e580b305fe6
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