blob: f69bea13d04c86115313fa5c11373071f46fda82 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
|
#ifndef NEWDIALOG_H
#define NEWDIALOG_H
#include <QDialog>
#include <QSettings>
#include <QFileDialog>
#include <QMessageBox>
#include "ui_NewDialog.h"
#include "qtmipsexception.h"
class NewDialog : public QDialog {
Q_OBJECT
public:
NewDialog(QWidget *parent, QSettings *settings);
~NewDialog();
protected:
void closeEvent(QCloseEvent *);
private slots:
void cancel();
void create();
void browse_elf();
void preset(bool);
void set_custom_preset();
private:
Ui::NewDialog *ui;
QSettings *settings;
void load_settings();
void store_settings();
};
#endif // NEWDIALOG_H
|