dataseriedialog.h
25 lines
| 451 B
| text/x-c
|
CLexer
Tero Ahola
|
r19 | #ifndef DATASERIEDIALOG_H | ||
#define DATASERIEDIALOG_H | ||||
#include <QDialog> | ||||
Tero Ahola
|
r20 | class QComboBox; | ||
Tero Ahola
|
r19 | |||
class DataSerieDialog : public QDialog | ||||
{ | ||||
Q_OBJECT | ||||
public: | ||||
Tero Ahola
|
r26 | explicit DataSerieDialog(QString defaultType, QWidget *parent = 0); | ||
Tero Ahola
|
r19 | |||
signals: | ||||
Tero Ahola
|
r20 | void accepted(QString series, QString data); | ||
Tero Ahola
|
r19 | |||
public slots: | ||||
Tero Ahola
|
r20 | void accept(); | ||
private: | ||||
QComboBox *m_seriesTypeCombo; | ||||
QComboBox *m_testDataCombo; | ||||
Tero Ahola
|
r19 | }; | ||
#endif // DATASERIEDIALOG_H | ||||