mirror of
https://github.com/rizinorg/cutter.git
synced 2024-12-22 21:06:10 +00:00
6ed212a4ef
* Prepare Add Flag * Flag Dialog * MainWindow::globalSeekTo() signal * Load more disassembly in refresh if necessary
35 lines
746 B
C++
35 lines
746 B
C++
|
|
#include "ui_flagdialog.h"
|
|
#include "flagdialog.h"
|
|
|
|
FlagDialog::FlagDialog(IaitoRCore *core, RVA offset, QWidget *parent) :
|
|
QDialog(parent),
|
|
ui(new Ui::FlagDialog)
|
|
{
|
|
ui->setupUi(this);
|
|
setWindowFlags(windowFlags() & (~Qt::WindowContextHelpButtonHint));
|
|
|
|
this->core = core;
|
|
this->offset = offset;
|
|
|
|
auto size_validator = new QIntValidator(ui->sizeEdit);
|
|
size_validator->setBottom(1);
|
|
ui->sizeEdit->setValidator(size_validator);
|
|
}
|
|
|
|
FlagDialog::~FlagDialog()
|
|
{
|
|
delete ui;
|
|
}
|
|
|
|
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();
|
|
} |