2017-07-11 11:05:42 +00:00
|
|
|
#ifndef FLAGDIALOG_H
|
|
|
|
#define FLAGDIALOG_H
|
|
|
|
|
|
|
|
#include <QDialog>
|
2017-10-02 09:41:28 +00:00
|
|
|
#include <memory>
|
2017-09-25 12:55:41 +00:00
|
|
|
#include "cutter.h"
|
2017-07-11 11:05:42 +00:00
|
|
|
|
|
|
|
namespace Ui
|
|
|
|
{
|
|
|
|
class FlagDialog;
|
|
|
|
}
|
|
|
|
|
|
|
|
class FlagDialog : public QDialog
|
|
|
|
{
|
|
|
|
Q_OBJECT
|
|
|
|
|
|
|
|
public:
|
2017-10-10 10:17:05 +00:00
|
|
|
explicit FlagDialog(RVA offset, QWidget *parent = 0);
|
2017-07-11 11:05:42 +00:00
|
|
|
~FlagDialog();
|
|
|
|
|
|
|
|
private slots:
|
|
|
|
void on_buttonBox_accepted();
|
|
|
|
void on_buttonBox_rejected();
|
|
|
|
|
|
|
|
private:
|
2017-10-02 09:41:28 +00:00
|
|
|
std::unique_ptr<Ui::FlagDialog> ui;
|
2017-07-11 11:05:42 +00:00
|
|
|
RVA offset;
|
2017-10-10 10:17:05 +00:00
|
|
|
CutterCore *core;
|
2017-07-11 11:05:42 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
#endif // FLAGDIALOG_H
|