RedPanda-CPP/RedPandaIDE/settingsdialog/projectmakefilewidget.cpp

68 lines
2.0 KiB
C++
Raw Normal View History

#include "projectmakefilewidget.h"
#include "ui_projectmakefilewidget.h"
#include "compilersetdirectorieswidget.h"
#include "../mainwindow.h"
#include "../project.h"
#include "../widgets/custommakefileinfodialog.h"
#include "../iconsmanager.h"
#include <QFileDialog>
ProjectMakefileWidget::ProjectMakefileWidget(const QString &name, const QString &group, QWidget *parent) :
SettingsWidget(name,group,parent),
ui(new Ui::ProjectMakefileWidget)
{
ui->setupUi(this);
mIncludesDirWidget = new CompilerSetDirectoriesWidget(this);
ui->verticalLayout->addWidget(mIncludesDirWidget);
}
ProjectMakefileWidget::~ProjectMakefileWidget()
{
delete ui;
}
void ProjectMakefileWidget::doLoad()
{
ui->grpCustomMakefile->setChecked(pMainWindow->project()->options().useCustomMakefile);
ui->txtCustomMakefile->setText(pMainWindow->project()->options().customMakefile);
mIncludesDirWidget->setDirList(pMainWindow->project()->options().makeIncludes);
}
void ProjectMakefileWidget::doSave()
{
pMainWindow->project()->options().useCustomMakefile = ui->grpCustomMakefile->isChecked();
pMainWindow->project()->options().customMakefile = ui->txtCustomMakefile->text();
pMainWindow->project()->options().makeIncludes = mIncludesDirWidget->dirList();
pMainWindow->project()->saveOptions();
}
2021-10-20 18:05:43 +08:00
void ProjectMakefileWidget::on_btnBrowse_clicked()
{
QString fileName = QFileDialog::getOpenFileName(
this,
tr("Custom makefile"),
pMainWindow->project()->directory(),
tr("All files (*.*)"));
if (!fileName.isEmpty() && QFileInfo(fileName).exists()) {
ui->txtCustomMakefile->setText(fileName);
}
}
void ProjectMakefileWidget::updateIcons(const QSize &)
{
pIconsManager->setIcon(ui->btnBrowse, IconsManager::ACTION_FILE_OPEN_FOLDER);
pIconsManager->setIcon(ui->btnInfo, IconsManager::ACTION_MISC_HELP);
}
void ProjectMakefileWidget::on_btnInfo_clicked()
{
CustomMakefileInfoDialog dialog(this);
dialog.exec();
}