RedPanda-CPP/RedPandaIDE/settingsdialog/executorgeneralwidget.cpp

100 lines
3.4 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"
#include "../systemconsts.h"
#include "utils.h"
#include "utils/font.h"
#include "utils/parsearg.h"
2021-07-01 19:44:38 +08:00
#include <QFileDialog>
#include <QJsonDocument>
#include <QJsonArray>
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);
ui->txtParsedArgsInJson->setFont(defaultMonoFont());
2023-09-21 08:17:07 +08:00
#ifdef Q_OS_WIN
ui->chkVTSeq->setVisible(true);
#else
ui->chkVTSeq->setVisible(false);
#endif
2021-07-01 19:44:38 +08:00
}
ExecutorGeneralWidget::~ExecutorGeneralWidget()
{
delete ui;
}
void ExecutorGeneralWidget::doLoad()
{
ui->chkPauseConsole->setChecked(pSettings->executor().pauseConsole());
2023-09-21 08:17:07 +08:00
#ifdef Q_OS_WIN
ui->chkVTSeq->setChecked(pSettings->executor().enableVirualTerminalSequence());
#endif
2021-07-01 19:44:38 +08:00
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());
2023-09-21 08:17:07 +08:00
#ifdef Q_OS_WIN
pSettings->executor().setEnableVirualTerminalSequence(ui->chkVTSeq->isChecked());
#endif
2021-07-01 19:44:38 +08:00
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 (%1)").arg(ALL_FILE_WILDCARD));
if (!filename.isEmpty() && fileExists(filename)) {
ui->txtRedirectInputFile->setText(filename);
}
}
2022-07-04 11:39:06 +08:00
void ExecutorGeneralWidget::updateIcons(const QSize &/*size*/)
{
pIconsManager->setIcon(ui->btnBrowse,IconsManager::ACTION_FILE_OPEN_FOLDER);
}
void ExecutorGeneralWidget::on_txtExecuteParamaters_textChanged(const QString &commandLine)
{
QStringList parsed = parseArgumentsWithoutVariables(commandLine);
QJsonArray obj = QJsonArray::fromStringList(parsed);
ui->txtParsedArgsInJson->setText(QJsonDocument{obj}.toJson());
}