cutter/src/dialogs/CreateNewDialog.h

37 lines
590 B
C
Raw Normal View History

#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-04-09 19:55:06 +00:00
namespace Ui
{
2017-10-02 09:41:28 +00:00
class CreateNewDialog;
}
2017-10-02 09:41:28 +00:00
class CreateNewDialog : public QDialog
{
Q_OBJECT
public:
2017-10-02 09:41:28 +00:00
explicit CreateNewDialog(QWidget *parent = 0);
~CreateNewDialog();
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;
};
#endif // CREATENEWDIALOG_H