mirror of
https://github.com/rizinorg/cutter.git
synced 2024-12-26 23:05:25 +00:00
43 lines
1.0 KiB
C++
43 lines
1.0 KiB
C++
#include "OpenFileDialog.h"
|
|
#include "ui_OpenFileDialog.h"
|
|
|
|
#include "common/Configuration.h"
|
|
|
|
#include <QFileDialog>
|
|
|
|
OpenFileDialog::OpenFileDialog(QWidget *parent):
|
|
QDialog(parent),
|
|
ui(new Ui::OpenFileDialog)
|
|
{
|
|
ui->setupUi(this);
|
|
}
|
|
|
|
OpenFileDialog::~OpenFileDialog() {}
|
|
|
|
void OpenFileDialog::on_selectFileButton_clicked()
|
|
{
|
|
QString currentDir = Config()->getRecentFolder();
|
|
QString fileName = QFileDialog::getOpenFileName(this, tr("Select file"), currentDir);
|
|
|
|
if (!fileName.isEmpty()) {
|
|
ui->filenameLineEdit->setText(fileName);
|
|
Config()->setRecentFolder(QFileInfo(fileName).absolutePath());
|
|
}
|
|
}
|
|
|
|
void OpenFileDialog::on_buttonBox_accepted()
|
|
{
|
|
const QString &filePath = QDir::toNativeSeparators(ui->filenameLineEdit->text());
|
|
RVA mapAddress = RVA_INVALID;
|
|
QString mapAddressStr = ui->mapAddressLineEdit->text();
|
|
if (!mapAddressStr.isEmpty()) {
|
|
mapAddress = Core()->math(mapAddressStr);
|
|
}
|
|
Core()->openFile(filePath, mapAddress);
|
|
}
|
|
|
|
void OpenFileDialog::on_buttonBox_rejected()
|
|
{
|
|
close();
|
|
}
|