dataseriedialog.cpp
65 lines
| 2.2 KiB
| text/x-c
|
CppLexer
Tero Ahola
|
r19 | #include "dataseriedialog.h" | ||
#include <QDialogButtonBox> | ||||
Tero Ahola
|
r20 | #include <QGridLayout> | ||
#include <QComboBox> | ||||
#include <QPushButton> | ||||
#include <QLabel> | ||||
Tero Ahola
|
r19 | #include <QDebug> | ||
Tero Ahola
|
r26 | DataSerieDialog::DataSerieDialog(QString defaultType, QWidget *parent) : | ||
Tero Ahola
|
r19 | QDialog(parent) | ||
{ | ||||
Tero Ahola
|
r20 | // Combo box for selecting the series type | ||
m_seriesTypeCombo = new QComboBox(this); | ||||
m_seriesTypeCombo->addItem("Line"); | ||||
m_seriesTypeCombo->addItem("Area"); | ||||
m_seriesTypeCombo->addItem("Bar"); | ||||
sauimone
|
r165 | m_seriesTypeCombo->addItem("StackedBar"); | ||
m_seriesTypeCombo->addItem("PercentBar"); | ||||
Tero Ahola
|
r20 | m_seriesTypeCombo->addItem("Pie"); | ||
m_seriesTypeCombo->addItem("Scatter"); | ||||
m_seriesTypeCombo->addItem("Spline"); | ||||
Tero Ahola
|
r26 | // Allow pre-selection of a series type | ||
if (defaultType != "") { | ||||
int index = m_seriesTypeCombo->findText(defaultType); | ||||
if (index > 0) | ||||
m_seriesTypeCombo->setCurrentIndex(index); | ||||
} | ||||
Tero Ahola
|
r20 | // Combo box for selecting data for the new series | ||
m_testDataCombo = new QComboBox(this); | ||||
m_testDataCombo->addItem("linear"); | ||||
Tero Ahola
|
r27 | m_testDataCombo->addItem("linear, 1M"); | ||
Tero Ahola
|
r20 | m_testDataCombo->addItem("SIN"); | ||
m_testDataCombo->addItem("SIN + random"); | ||||
sauimone
|
r165 | m_testDataCombo->addItem("Table, 5 series"); | ||
Tero Ahola
|
r20 | m_testDataCombo->addItem("TODO From file..."); | ||
m_testDataCombo->addItem("TODO From URL..."); | ||||
QDialogButtonBox *addSeriesBox = new QDialogButtonBox(Qt::Horizontal); | ||||
QPushButton *b = addSeriesBox->addButton(QDialogButtonBox::Ok); | ||||
connect(b, SIGNAL(clicked()), this, SLOT(accept())); | ||||
b = addSeriesBox->addButton(QDialogButtonBox::Cancel); | ||||
connect(b, SIGNAL(clicked()), this, SLOT(reject())); | ||||
QGridLayout *grid = new QGridLayout(); | ||||
grid->addWidget(new QLabel("Series type:"), 0, 0); | ||||
grid->addWidget(m_seriesTypeCombo, 0, 1); | ||||
grid->addWidget(new QLabel("Data:"), 1, 0); | ||||
grid->addWidget(m_testDataCombo, 1, 1); | ||||
grid->addWidget(addSeriesBox, 2, 1); | ||||
setLayout(grid); | ||||
Tero Ahola
|
r19 | } | ||
Tero Ahola
|
r20 | void DataSerieDialog::accept() | ||
Tero Ahola
|
r19 | { | ||
Tero Ahola
|
r20 | accepted(m_seriesTypeCombo->currentText(), m_testDataCombo->currentText()); | ||
QDialog::accept(); | ||||
Tero Ahola
|
r19 | } | ||
Tero Ahola
|
r20 | //void DataSerieDialog::addSeries(QAbstractButton *button) | ||
//{ | ||||
// addSeries(button->text().toAscii()); | ||||
// accept(); | ||||
//} | ||||