##// END OF EJS Templates
minor.typo
minor.typo

File last commit:

r278:1d8f8b316dca
r292:a611478e7e73
Show More
dataseriedialog.h
34 lines | 871 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
Refactored chartwidgettest test data impl
r278 class QGroupBox;
class QCheckBox;
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
Refactored chartwidgettest test data impl
r278 void accepted(QString series, int columnCount, int rowCount, QString dataCharacteristics, bool labelsDefined);
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:
Tero Ahola
Refactored chartwidgettest test data impl
r278 QGroupBox *seriesTypeSelector();
QGroupBox *columnCountSelector();
QGroupBox *rowCountSelector();
QGroupBox *dataCharacteristicsSelector();
QString radioSelection(QGroupBox *groupBox);
QGroupBox *m_seriesTypeSelector;
QGroupBox *m_columnCountSelector;
QGroupBox *m_rowCountSelector;
QCheckBox *m_labelsSelector;
QGroupBox *m_dataCharacteristicsSelector;
Tero Ahola
Started to refactor the API to allow integrating different plot types
r19 };
#endif // DATASERIEDIALOG_H