2017-03-29 10:18:37 +00:00
|
|
|
#ifndef CREATENEWDIALOG_H
|
|
|
|
#define CREATENEWDIALOG_H
|
|
|
|
|
|
|
|
#include <QDialog>
|
2017-10-01 19:09:42 +00:00
|
|
|
#include "MainWindow.h"
|
2017-10-02 09:41:28 +00:00
|
|
|
#include <memory>
|
2017-03-29 10:18:37 +00:00
|
|
|
|
2017-04-09 19:55:06 +00:00
|
|
|
namespace Ui
|
|
|
|
{
|
2017-10-02 09:41:28 +00:00
|
|
|
class CreateNewDialog;
|
2017-03-29 10:18:37 +00:00
|
|
|
}
|
|
|
|
|
2017-10-02 09:41:28 +00:00
|
|
|
class CreateNewDialog : public QDialog
|
2017-03-29 10:18:37 +00:00
|
|
|
{
|
|
|
|
Q_OBJECT
|
|
|
|
|
|
|
|
public:
|
2017-10-02 09:41:28 +00:00
|
|
|
explicit CreateNewDialog(QWidget *parent = 0);
|
|
|
|
~CreateNewDialog();
|
2017-03-29 10:18:37 +00:00
|
|
|
|
|
|
|
private slots:
|
|
|
|
void on_pushButton_2_clicked();
|
|
|
|
|
|
|
|
void on_pushButton_3_clicked();
|
|
|
|
|
|
|
|
void on_exampleButton_clicked();
|
|
|
|
|
|
|
|
void on_buttonCreate_clicked();
|
|
|
|
|
|
|
|
private:
|
2017-10-02 09:41:28 +00:00
|
|
|
std::unique_ptr<Ui::CreateNewDialog> ui;
|
2017-04-09 19:55:06 +00:00
|
|
|
MainWindow *w;
|
2017-10-09 18:08:35 +00:00
|
|
|
CutterCore *core;
|
2017-03-29 10:18:37 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
#endif // CREATENEWDIALOG_H
|