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"
|
2021-12-23 09:11:58 +08:00
|
|
|
#include "../iconsmanager.h"
|
2021-12-27 22:46:54 +08:00
|
|
|
#include "../systemconsts.h"
|
2024-03-13 19:17:25 +08:00
|
|
|
#include "utils.h"
|
|
|
|
#include "utils/font.h"
|
2024-02-28 19:41:05 +08:00
|
|
|
#include "utils/parsearg.h"
|
2021-07-01 19:44:38 +08:00
|
|
|
|
2021-09-19 17:59:03 +08:00
|
|
|
#include <QFileDialog>
|
2023-09-05 19:14:08 +08:00
|
|
|
#include <QJsonDocument>
|
|
|
|
#include <QJsonArray>
|
2021-09-19 17:59:03 +08:00
|
|
|
|
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);
|
2024-03-13 19:17:25 +08:00
|
|
|
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());
|
2021-09-19 17:59:03 +08:00
|
|
|
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());
|
2021-09-19 17:59:03 +08:00
|
|
|
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();
|
|
|
|
}
|
2021-09-19 17:59:03 +08:00
|
|
|
|
2021-10-21 19:33:11 +08:00
|
|
|
void ExecutorGeneralWidget::on_btnBrowse_clicked()
|
2021-09-19 17:59:03 +08:00
|
|
|
{
|
|
|
|
QString filename = QFileDialog::getOpenFileName(
|
|
|
|
this,
|
|
|
|
tr("Choose input file"),
|
|
|
|
QString(),
|
2021-12-27 22:46:54 +08:00
|
|
|
tr("All files (%1)").arg(ALL_FILE_WILDCARD));
|
2021-09-19 17:59:03 +08:00
|
|
|
if (!filename.isEmpty() && fileExists(filename)) {
|
|
|
|
ui->txtRedirectInputFile->setText(filename);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2022-07-04 11:39:06 +08:00
|
|
|
void ExecutorGeneralWidget::updateIcons(const QSize &/*size*/)
|
2021-12-23 09:11:58 +08:00
|
|
|
{
|
|
|
|
pIconsManager->setIcon(ui->btnBrowse,IconsManager::ACTION_FILE_OPEN_FOLDER);
|
|
|
|
}
|
|
|
|
|
2023-09-05 19:14:08 +08:00
|
|
|
|
|
|
|
void ExecutorGeneralWidget::on_txtExecuteParamaters_textChanged(const QString &commandLine)
|
|
|
|
{
|
2024-02-28 19:41:05 +08:00
|
|
|
QStringList parsed = parseArgumentsWithoutVariables(commandLine);
|
2023-09-05 19:14:08 +08:00
|
|
|
QJsonArray obj = QJsonArray::fromStringList(parsed);
|
|
|
|
ui->txtParsedArgsInJson->setText(QJsonDocument{obj}.toJson());
|
|
|
|
}
|