forked from qt-creator/qt-creator
Change-Id: I567965d266f20526bda9f823e31a04b354d53fb1 Reviewed-by: Eike Ziller <eike.ziller@qt.io>
43 lines
1.1 KiB
C++
43 lines
1.1 KiB
C++
// Copyright (C) 2022 The Qt Company Ltd.
|
|
// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR GPL-3.0-only WITH Qt-GPL-exception-1.0
|
|
|
|
#pragma once
|
|
|
|
#include "gitlabparameters.h"
|
|
|
|
#include <extensionsystem/iplugin.h>
|
|
|
|
namespace ProjectExplorer { class Project; }
|
|
|
|
namespace GitLab {
|
|
|
|
class Events;
|
|
class GitLabProjectSettings;
|
|
class GitLabOptionsPage;
|
|
|
|
class GitLabPlugin : public ExtensionSystem::IPlugin
|
|
{
|
|
Q_OBJECT
|
|
Q_PLUGIN_METADATA(IID "org.qt-project.Qt.QtCreatorPlugin" FILE "GitLab.json")
|
|
|
|
public:
|
|
GitLabPlugin();
|
|
~GitLabPlugin() override;
|
|
|
|
void initialize() override;
|
|
|
|
static QList<GitLabServer> allGitLabServers();
|
|
static GitLabServer gitLabServerForId(const Utils::Id &id);
|
|
static GitLabParameters *globalParameters();
|
|
static GitLabProjectSettings *projectSettings(ProjectExplorer::Project *project);
|
|
static GitLabOptionsPage *optionsPage();
|
|
static bool handleCertificateIssue(const Utils::Id &serverId);
|
|
|
|
static void linkedStateChanged(bool enabled);
|
|
private:
|
|
void openView();
|
|
void onStartupProjectChanged();
|
|
};
|
|
|
|
} // namespace GitLab
|