RedPanda-CPP/RedPandaIDE/settingsdialog/executorgeneralwidget.cpp

75 lines
2.6 KiB
C++
Raw Normal View History

2021-12-26 23:18:28 +08:00
/*
* Copyright (C) 2020-2022 Roy Qu (royqh1979@gmail.com)
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program. If not, see <https://www.gnu.org/licenses/>.
*/
2021-07-01 19:44:38 +08:00
#include "executorgeneralwidget.h"
#include "ui_executorgeneralwidget.h"
#include "../settings.h"
#include "../iconsmanager.h"
2021-07-01 19:44:38 +08:00
#include <QFileDialog>
2021-07-01 19:44:38 +08:00
ExecutorGeneralWidget::ExecutorGeneralWidget(const QString& name, const QString& group, QWidget *parent):
SettingsWidget(name,group,parent),
ui(new Ui::ExecutorGeneralWidget)
{
ui->setupUi(this);
}
ExecutorGeneralWidget::~ExecutorGeneralWidget()
{
delete ui;
}
void ExecutorGeneralWidget::doLoad()
{
ui->chkPauseConsole->setChecked(pSettings->executor().pauseConsole());
ui->chkMinimizeOnRun->setChecked(pSettings->executor().minimizeOnRun());
ui->grpExecuteParameters->setChecked(pSettings->executor().useParams());
ui->txtExecuteParamaters->setText(pSettings->executor().params());
ui->grpRedirectInput->setChecked(pSettings->executor().redirectInput());
ui->txtRedirectInputFile->setText(pSettings->executor().inputFilename());
2021-07-01 19:44:38 +08:00
}
void ExecutorGeneralWidget::doSave()
{
pSettings->executor().setPauseConsole(ui->chkPauseConsole->isChecked());
pSettings->executor().setMinimizeOnRun(ui->chkMinimizeOnRun->isChecked());
pSettings->executor().setUseParams(ui->grpExecuteParameters->isChecked());
pSettings->executor().setParams(ui->txtExecuteParamaters->text());
pSettings->executor().setRedirectInput(ui->grpRedirectInput->isChecked());
pSettings->executor().setInputFilename(ui->txtRedirectInputFile->text());
2021-07-01 19:44:38 +08:00
pSettings->executor().save();
}
void ExecutorGeneralWidget::on_btnBrowse_clicked()
{
QString filename = QFileDialog::getOpenFileName(
this,
tr("Choose input file"),
QString(),
tr("All files (*.*)"));
if (!filename.isEmpty() && fileExists(filename)) {
ui->txtRedirectInputFile->setText(filename);
}
}
void ExecutorGeneralWidget::updateIcons(const QSize &size)
{
pIconsManager->setIcon(ui->btnBrowse,IconsManager::ACTION_FILE_OPEN_FOLDER);
}