34 lines
471 B
C++
34 lines
471 B
C++
#ifndef CREATERANGEDIALOG_H
|
|
#define CREATERANGEDIALOG_H
|
|
|
|
|
|
#include <QLineEdit>
|
|
#include <QComboBox>
|
|
#include <QTextEdit>
|
|
#include <QDialog>
|
|
#include <QSpinBox>
|
|
#include <QCheckBox>
|
|
#include "constants.h"
|
|
|
|
|
|
|
|
|
|
|
|
class CreateRangeDialog : public QDialog
|
|
{
|
|
Q_OBJECT
|
|
|
|
public:
|
|
CreateRangeDialog(QWidget *parent, int flag);
|
|
QString iterField();
|
|
|
|
|
|
private slots:
|
|
|
|
private:
|
|
QLineEdit *iterations;
|
|
|
|
};
|
|
|
|
#endif // CREATERANGEDIALOG_H
|