Files
qt-creator/src/plugins/vcsbase/vcsplugin.cpp

151 lines
4.4 KiB
C++
Raw Normal View History

// Copyright (C) 2016 The Qt Company Ltd.
// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR GPL-3.0-only WITH Qt-GPL-exception-1.0
2009-12-08 14:30:47 +01:00
#include "vcsplugin.h"
#include "commonvcssettings.h"
2009-12-08 14:30:47 +01:00
#include "nicknamedialog.h"
#include "vcsbaseconstants.h"
#include "vcsbasesubmiteditor.h"
#include "vcsbasetr.h"
#include "vcsoutputwindow.h"
#include "wizard/vcscommandpage.h"
#include "wizard/vcsconfigurationpage.h"
#include "wizard/vcsjsextension.h"
2009-12-08 14:30:47 +01:00
#include <coreplugin/editormanager/editormanager.h>
#include <coreplugin/editormanager/ieditor.h>
#include <coreplugin/iversioncontrol.h>
#include <coreplugin/jsexpander.h>
#include <coreplugin/vcsmanager.h>
#include <projectexplorer/jsonwizard/jsonwizardfactory.h>
#include <projectexplorer/project.h>
#include <projectexplorer/projecttree.h>
2009-12-08 14:30:47 +01:00
#include <utils/macroexpander.h>
#include <utils/qtcassert.h>
#include <QDebug>
2009-12-08 14:30:47 +01:00
using namespace Core;
using namespace ProjectExplorer;
using namespace Utils;
namespace VcsBase::Internal {
2009-12-08 14:30:47 +01:00
class VcsPluginPrivate
{
public:
explicit VcsPluginPrivate(VcsPlugin *plugin)
: q(plugin)
{
QObject::connect(&commonSettings(), &AspectContainer::changed,
[this] { slotSettingsChanged(); });
slotSettingsChanged();
}
QStandardItemModel *nickNameModel()
{
if (!m_nickNameModel) {
m_nickNameModel = NickNameDialog::createModel(q);
populateNickNameModel();
}
return m_nickNameModel;
}
void populateNickNameModel()
{
QString errorMessage;
if (!NickNameDialog::populateModelFromMailCapFile(commonSettings().nickNameMailMap(),
m_nickNameModel,
&errorMessage)) {
qWarning("%s", qPrintable(errorMessage));
}
}
void slotSettingsChanged()
{
if (m_nickNameModel)
populateNickNameModel();
}
VcsPlugin *q;
QStandardItemModel *m_nickNameModel = nullptr;
VcsConfigurationPageFactory m_vcsConfigurationPageFactory;
VcsCommandPageFactory m_vcsCommandPageFactory;
};
static VcsPlugin *m_instance = nullptr;
2009-12-08 14:30:47 +01:00
VcsPlugin::VcsPlugin()
2009-12-08 14:30:47 +01:00
{
m_instance = this;
}
VcsPlugin::~VcsPlugin()
2009-12-08 14:30:47 +01:00
{
QTC_ASSERT(d, return);
VcsOutputWindow::destroy();
m_instance = nullptr;
delete d;
2009-12-08 14:30:47 +01:00
}
void VcsPlugin::initialize()
2009-12-08 14:30:47 +01:00
{
d = new VcsPluginPrivate(this);
EditorManager::addCloseEditorListener([this](IEditor *editor) -> bool {
bool result = true;
if (auto se = qobject_cast<VcsBaseSubmitEditor *>(editor))
emit submitEditorAboutToClose(se, &result);
return result;
});
2009-12-08 14:30:47 +01:00
JsExpander::registerGlobalObject<VcsJsExtension>("Vcs");
MacroExpander *expander = globalMacroExpander();
expander->registerVariable(Constants::VAR_VCS_NAME,
Tr::tr("Name of the version control system in use by the current project."), [] {
IVersionControl *vc = nullptr;
if (Project *project = ProjectTree::currentProject())
vc = VcsManager::findVersionControlForDirectory(project->projectDirectory());
return vc ? vc->displayName() : QString();
});
expander->registerVariable(Constants::VAR_VCS_TOPIC,
Tr::tr("The current version control topic (branch or tag) identification "
"of the current project."), [] {
IVersionControl *vc = nullptr;
FilePath topLevel;
if (Project *project = ProjectTree::currentProject())
vc = VcsManager::findVersionControlForDirectory(project->projectDirectory(), &topLevel);
return vc ? vc->vcsTopic(topLevel) : QString();
});
expander->registerVariable(Constants::VAR_VCS_TOPLEVELPATH,
Tr::tr("The top level path to the repository the current project is in."), [] {
if (Project *project = ProjectTree::currentProject())
return VcsManager::findTopLevelForDirectory(project->projectDirectory()).toString();
return QString();
});
// Just touch VCS Output Pane before initialization
VcsOutputWindow::instance();
2009-12-08 14:30:47 +01:00
}
VcsPlugin *VcsPlugin::instance()
2009-12-08 14:30:47 +01:00
{
return m_instance;
}
/* Delayed creation/update of the nick name model. */
QStandardItemModel *VcsPlugin::nickNameModel()
2009-12-08 14:30:47 +01:00
{
QTC_ASSERT(d, return nullptr);
return d->nickNameModel();
2009-12-08 14:30:47 +01:00
}
} // VcsBase::Internal