forked from qt-creator/qt-creator
Replace the current license disclaimer in files by a SPDX-License-Identifier. Task-number: QTBUG-67283 Change-Id: I708fd1f9f2b73d60f57cc3568646929117825813 Reviewed-by: Eike Ziller <eike.ziller@qt.io>
72 lines
2.0 KiB
C++
72 lines
2.0 KiB
C++
// Copyright (C) 2016 The Qt Company Ltd.
|
|
// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR GPL-3.0+ OR GPL-3.0 WITH Qt-GPL-exception-1.0
|
|
|
|
#pragma once
|
|
|
|
#include "gitsettings.h"
|
|
#include "git_global.h"
|
|
|
|
#include <coreplugin/iversioncontrol.h>
|
|
|
|
#include <extensionsystem/iplugin.h>
|
|
|
|
#include <functional>
|
|
|
|
#include <vcsbase/vcsbaseplugin.h>
|
|
|
|
namespace VcsBase { class VcsBasePluginState; }
|
|
|
|
namespace Git {
|
|
namespace Internal {
|
|
|
|
class GitClient;
|
|
|
|
class GITSHARED_EXPORT GitPlugin final : public ExtensionSystem::IPlugin
|
|
{
|
|
Q_OBJECT
|
|
Q_PLUGIN_METADATA(IID "org.qt-project.Qt.QtCreatorPlugin" FILE "Git.json")
|
|
|
|
public:
|
|
~GitPlugin() final;
|
|
|
|
bool initialize(const QStringList &arguments, QString *errorMessage) final;
|
|
void extensionsInitialized() final;
|
|
|
|
QObject *remoteCommand(const QStringList &options, const QString &workingDirectory,
|
|
const QStringList &args) final;
|
|
|
|
static GitClient *client();
|
|
static Core::IVersionControl *versionControl();
|
|
static const GitSettings &settings();
|
|
static const VcsBase::VcsBasePluginState ¤tState();
|
|
|
|
static QString msgRepositoryLabel(const Utils::FilePath &repository);
|
|
static QString invalidBranchAndRemoteNamePattern();
|
|
static bool isCommitEditorOpen();
|
|
|
|
static void emitFilesChanged(const QStringList &);
|
|
static void emitRepositoryChanged(const Utils::FilePath &);
|
|
static void startRebaseFromCommit(const Utils::FilePath &workingDirectory, const QString &commit);
|
|
static void manageRemotes();
|
|
static void initRepository();
|
|
static void startCommit();
|
|
static void updateCurrentBranch();
|
|
static void updateBranches(const Utils::FilePath &repository);
|
|
static void gerritPush(const Utils::FilePath &topLevel);
|
|
|
|
#ifdef WITH_TESTS
|
|
private slots:
|
|
void testStatusParsing_data();
|
|
void testStatusParsing();
|
|
void testDiffFileResolving_data();
|
|
void testDiffFileResolving();
|
|
void testLogResolving();
|
|
void testGitRemote_data();
|
|
void testGitRemote();
|
|
#endif
|
|
|
|
};
|
|
|
|
} // namespace Internal
|
|
} // namespace Git
|