2018-02-17 04:30:06 +05:30
|
|
|
#include "CustomCommands.h"
|
|
|
|
#include "ui_CustomCommands.h"
|
|
|
|
|
|
|
|
CustomCommands::~CustomCommands()
|
|
|
|
{
|
2019-08-10 23:28:58 +05:30
|
|
|
delete ui;
|
2018-02-17 04:30:06 +05:30
|
|
|
}
|
|
|
|
|
|
|
|
CustomCommands::CustomCommands(QWidget* parent):
|
2018-07-15 18:21:05 +05:30
|
|
|
QWidget(parent),
|
|
|
|
ui(new Ui::CustomCommands)
|
2018-02-17 04:30:06 +05:30
|
|
|
{
|
2018-07-15 18:21:05 +05:30
|
|
|
ui->setupUi(this);
|
2018-02-17 04:30:06 +05:30
|
|
|
}
|
|
|
|
|
|
|
|
void CustomCommands::initialize(bool checkable, bool checked, const QString& prelaunch, const QString& wrapper, const QString& postexit)
|
|
|
|
{
|
2018-07-15 18:21:05 +05:30
|
|
|
ui->customCommandsGroupBox->setCheckable(checkable);
|
|
|
|
if(checkable)
|
|
|
|
{
|
|
|
|
ui->customCommandsGroupBox->setChecked(checked);
|
|
|
|
}
|
|
|
|
ui->preLaunchCmdTextBox->setText(prelaunch);
|
|
|
|
ui->wrapperCmdTextBox->setText(wrapper);
|
|
|
|
ui->postExitCmdTextBox->setText(postexit);
|
2018-02-17 04:30:06 +05:30
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
bool CustomCommands::checked() const
|
|
|
|
{
|
2018-07-15 18:21:05 +05:30
|
|
|
if(!ui->customCommandsGroupBox->isCheckable())
|
|
|
|
return true;
|
|
|
|
return ui->customCommandsGroupBox->isChecked();
|
2018-02-17 04:30:06 +05:30
|
|
|
}
|
|
|
|
|
|
|
|
QString CustomCommands::prelaunchCommand() const
|
|
|
|
{
|
2018-07-15 18:21:05 +05:30
|
|
|
return ui->preLaunchCmdTextBox->text();
|
2018-02-17 04:30:06 +05:30
|
|
|
}
|
|
|
|
|
|
|
|
QString CustomCommands::wrapperCommand() const
|
|
|
|
{
|
2018-07-15 18:21:05 +05:30
|
|
|
return ui->wrapperCmdTextBox->text();
|
2018-02-17 04:30:06 +05:30
|
|
|
}
|
|
|
|
|
|
|
|
QString CustomCommands::postexitCommand() const
|
|
|
|
{
|
2018-07-15 18:21:05 +05:30
|
|
|
return ui->postExitCmdTextBox->text();
|
2018-02-17 04:30:06 +05:30
|
|
|
}
|