2017-10-01 19:09:42 +00:00
|
|
|
#include "FlagDialog.h"
|
|
|
|
#include "ui_FlagDialog.h"
|
2017-07-11 11:05:42 +00:00
|
|
|
|
2017-09-25 12:55:41 +00:00
|
|
|
FlagDialog::FlagDialog(CutterCore *core, RVA offset, QWidget *parent) :
|
2017-07-11 11:05:42 +00:00
|
|
|
QDialog(parent),
|
2017-10-02 09:41:28 +00:00
|
|
|
ui(new Ui::FlagDialog),
|
|
|
|
core(core),
|
|
|
|
offset(offset)
|
2017-07-11 11:05:42 +00:00
|
|
|
{
|
|
|
|
ui->setupUi(this);
|
|
|
|
setWindowFlags(windowFlags() & (~Qt::WindowContextHelpButtonHint));
|
|
|
|
|
|
|
|
auto size_validator = new QIntValidator(ui->sizeEdit);
|
|
|
|
size_validator->setBottom(1);
|
|
|
|
ui->sizeEdit->setValidator(size_validator);
|
|
|
|
}
|
|
|
|
|
2017-10-02 09:41:28 +00:00
|
|
|
FlagDialog::~FlagDialog() {}
|
2017-07-11 11:05:42 +00:00
|
|
|
|
|
|
|
void FlagDialog::on_buttonBox_accepted()
|
|
|
|
{
|
|
|
|
QString name = ui->nameEdit->text();
|
|
|
|
RVA size = ui->sizeEdit->text().toULongLong();
|
|
|
|
core->addFlag(offset, name, size);
|
|
|
|
}
|
|
|
|
|
|
|
|
void FlagDialog::on_buttonBox_rejected()
|
|
|
|
{
|
|
|
|
close();
|
2017-09-25 12:55:41 +00:00
|
|
|
}
|