aboutsummaryrefslogtreecommitdiff
path: root/qtmips_gui/newdialog.h
diff options
context:
space:
mode:
Diffstat (limited to 'qtmips_gui/newdialog.h')
-rw-r--r--qtmips_gui/newdialog.h33
1 files changed, 29 insertions, 4 deletions
diff --git a/qtmips_gui/newdialog.h b/qtmips_gui/newdialog.h
index d37c9c0..d9e850e 100644
--- a/qtmips_gui/newdialog.h
+++ b/qtmips_gui/newdialog.h
@@ -1,11 +1,36 @@
#ifndef NEWDIALOG_H
#define NEWDIALOG_H
+#include <QDialog>
+#include <QSettings>
+#include <QFileDialog>
+#include <QMessageBox>
+#include "ui_NewDialog.h"
+#include "qtmipsexception.h"
-class newdialog
-{
+class NewDialog : public QDialog {
+ Q_OBJECT
public:
- newdialog();
+ NewDialog(QWidget *parent, QSettings *settings);
+ ~NewDialog();
+
+public slots:
+ void cancel();
+ void create();
+ void browse_elf();
+ void preset(bool);
+ void set_custom_preset();
+
+protected:
+ void closeEvent(QCloseEvent *);
+
+private:
+ Ui::NewDialog *ui;
+ QSettings *settings;
+ QFileDialog *elf_dialog;
+
+ void load_settings();
+ void store_settings();
};
-#endif // NEWDIALOG_H \ No newline at end of file
+#endif // NEWDIALOG_H