2022-02-08 23:38:29 +08:00
|
|
|
#include "toolsgitwidget.h"
|
|
|
|
#include "ui_toolsgitwidget.h"
|
|
|
|
#include "../iconsmanager.h"
|
|
|
|
#include "../settings.h"
|
|
|
|
#include "../systemconsts.h"
|
|
|
|
#include "../utils.h"
|
2022-02-15 00:01:50 +08:00
|
|
|
#include "../mainwindow.h"
|
2022-02-08 23:38:29 +08:00
|
|
|
|
|
|
|
#include <QFileDialog>
|
|
|
|
|
|
|
|
ToolsGitWidget::ToolsGitWidget(const QString& name, const QString& group, QWidget *parent) :
|
|
|
|
SettingsWidget(name,group,parent),
|
|
|
|
ui(new Ui::ToolsGitWidget)
|
|
|
|
{
|
|
|
|
ui->setupUi(this);
|
|
|
|
ui->lblGitInfo->setVisible(false);
|
|
|
|
}
|
|
|
|
|
|
|
|
ToolsGitWidget::~ToolsGitWidget()
|
|
|
|
{
|
|
|
|
delete ui;
|
|
|
|
}
|
|
|
|
|
|
|
|
void ToolsGitWidget::doLoad()
|
|
|
|
{
|
|
|
|
ui->txtGitPath->setText(pSettings->vcs().gitPath());
|
|
|
|
}
|
|
|
|
|
|
|
|
void ToolsGitWidget::doSave()
|
|
|
|
{
|
|
|
|
pSettings->vcs().setGitPath(ui->txtGitPath->text());
|
2022-02-14 00:13:00 +08:00
|
|
|
pSettings->vcs().save();
|
2022-02-15 00:01:50 +08:00
|
|
|
pMainWindow->applySettings();
|
2022-02-08 23:38:29 +08:00
|
|
|
}
|
|
|
|
|
2022-07-04 11:39:06 +08:00
|
|
|
void ToolsGitWidget::updateIcons(const QSize &/*size*/)
|
2022-02-08 23:38:29 +08:00
|
|
|
{
|
|
|
|
pIconsManager->setIcon(ui->btnBrowseGit,IconsManager::ACTION_FILE_OPEN_FOLDER);
|
|
|
|
}
|
|
|
|
|
|
|
|
void ToolsGitWidget::on_btnBrowseGit_clicked()
|
|
|
|
{
|
|
|
|
QString filename = QFileDialog::getOpenFileName(
|
|
|
|
this,
|
|
|
|
tr("Git Executable"),
|
|
|
|
QString(),
|
|
|
|
tr("All files (%1)").arg(ALL_FILE_WILDCARD));
|
|
|
|
if (!filename.isEmpty() && fileExists(filename)) {
|
|
|
|
ui->txtGitPath->setText(filename);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
void ToolsGitWidget::on_btnTestGit_clicked()
|
|
|
|
{
|
|
|
|
QFileInfo fileInfo(ui->txtGitPath->text());
|
|
|
|
if (!fileInfo.exists()) {
|
|
|
|
ui->lblGitInfo->setVisible(false);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
ui->lblGitInfo->setVisible(true);
|
|
|
|
ui->lblGitInfo->setText("");
|
|
|
|
QStringList args;
|
|
|
|
args.append("--version");
|
|
|
|
QString output = runAndGetOutput(
|
|
|
|
fileInfo.fileName(),
|
|
|
|
fileInfo.absolutePath(),
|
|
|
|
args);
|
|
|
|
ui->lblGitInfo->setText(output);
|
|
|
|
}
|
|
|
|
|