aboutsummaryrefslogtreecommitdiff
path: root/qtmips_gui/newdialog.h
blob: 1e266a13d4c0ff97e83eb3c5e7899f8b9ba42e4e (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();

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;

    void load_settings();
    void store_settings();
};

#endif // NEWDIALOG_H