mirror of
https://github.com/rizinorg/cutter.git
synced 2024-12-22 04:46:11 +00:00
35 lines
534 B
C++
35 lines
534 B
C++
#ifndef CREATENEWDIALOG_H
|
|
#define CREATENEWDIALOG_H
|
|
|
|
#include <QDialog>
|
|
#include "mainwindow.h"
|
|
|
|
namespace Ui
|
|
{
|
|
class createNewDialog;
|
|
}
|
|
|
|
class createNewDialog : public QDialog
|
|
{
|
|
Q_OBJECT
|
|
|
|
public:
|
|
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:
|
|
Ui::createNewDialog *ui;
|
|
MainWindow *w;
|
|
};
|
|
|
|
#endif // CREATENEWDIALOG_H
|