mirror of
https://github.com/rizinorg/cutter.git
synced 2024-12-21 04:16:12 +00:00
ab27e09b91
Sometimes it is not necessary to include the whole Cutter.h file Hence, it's been splitted so you can include only what you require E.g. #include "core/CutterCommon.h" to have access to the common types
82 lines
2.5 KiB
C++
82 lines
2.5 KiB
C++
|
|
#include <QFileDialog>
|
|
|
|
#include "core/Cutter.h"
|
|
#include "SaveProjectDialog.h"
|
|
#include "ui_SaveProjectDialog.h"
|
|
#include "common/TempConfig.h"
|
|
#include "common/Configuration.h"
|
|
|
|
SaveProjectDialog::SaveProjectDialog(bool quit, QWidget *parent) :
|
|
QDialog(parent),
|
|
ui(new Ui::SaveProjectDialog)
|
|
{
|
|
ui->setupUi(this);
|
|
|
|
CutterCore *core = Core();
|
|
|
|
if (quit) {
|
|
ui->buttonBox->setStandardButtons(QDialogButtonBox::Save
|
|
| QDialogButtonBox::Discard
|
|
| QDialogButtonBox::Cancel);
|
|
} else {
|
|
ui->buttonBox->setStandardButtons(QDialogButtonBox::Save
|
|
| QDialogButtonBox::Cancel);
|
|
}
|
|
|
|
ui->nameEdit->setText(core->getConfig("prj.name"));
|
|
ui->projectsDirEdit->setText(Config()->getDirProjects());
|
|
ui->simpleCheckBox->setChecked(core->getConfigb("prj.simple"));
|
|
ui->filesCheckBox->setChecked(core->getConfigb("prj.files"));
|
|
ui->gitCheckBox->setChecked(core->getConfigb("prj.git"));
|
|
ui->zipCheckBox->setChecked(core->getConfigb("prj.zip"));
|
|
}
|
|
|
|
SaveProjectDialog::~SaveProjectDialog()
|
|
{
|
|
}
|
|
|
|
void SaveProjectDialog::on_selectProjectsDirButton_clicked()
|
|
{
|
|
QString currentDir = ui->projectsDirEdit->text();
|
|
if (currentDir.startsWith("~")) {
|
|
currentDir = QDir::homePath() + currentDir.mid(1);
|
|
}
|
|
|
|
const QString& dir = QDir::toNativeSeparators(QFileDialog::getExistingDirectory(this,
|
|
tr("Select project path (dir.projects)"),
|
|
currentDir));
|
|
|
|
if (!dir.isEmpty()) {
|
|
ui->projectsDirEdit->setText(dir);
|
|
}
|
|
}
|
|
|
|
void SaveProjectDialog::on_buttonBox_clicked(QAbstractButton *button)
|
|
{
|
|
if (QDialogButtonBox::DestructiveRole == ui->buttonBox->buttonRole(button)) {
|
|
QDialog::done(QDialog::Accepted);
|
|
}
|
|
}
|
|
|
|
void SaveProjectDialog::accept()
|
|
{
|
|
const QString& projectName = ui->nameEdit->text().trimmed();
|
|
if (!CutterCore::isProjectNameValid(projectName)) {
|
|
QMessageBox::critical(this, tr("Save project"), tr("Invalid project name."));
|
|
ui->nameEdit->setFocus();
|
|
return;
|
|
}
|
|
TempConfig tempConfig;
|
|
Config()->setDirProjects(ui->projectsDirEdit->text().toUtf8().constData());
|
|
tempConfig.set("dir.projects", Config()->getDirProjects())
|
|
.set("prj.simple", ui->simpleCheckBox->isChecked())
|
|
.set("prj.files", ui->filesCheckBox->isChecked())
|
|
.set("prj.git", ui->gitCheckBox->isChecked())
|
|
.set("prj.zip", ui->zipCheckBox->isChecked());
|
|
|
|
Core()->saveProject(projectName);
|
|
|
|
QDialog::accept();
|
|
}
|