aboutsummaryrefslogtreecommitdiffstats
path: root/src/plugins/gitlab/gitlabplugin.h
blob: 54d531d747fc9bdc484500346457655cb5fbac21 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
// Copyright (C) 2022 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 "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;

    bool initialize(const QStringList &arguments, QString *errorString) 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