forked from qt-creator/qt-creator
Change-Id: Iad49a785353203585342b61016df34105bc3a22e Reviewed-by: André Hartmann <aha_1980@gmx.de>
62 lines
1.4 KiB
C++
62 lines
1.4 KiB
C++
// Copyright (C) 2016 The Qt Company Ltd.
|
|
// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR GPL-3.0-only WITH Qt-GPL-exception-1.0
|
|
|
|
#pragma once
|
|
|
|
#include <utils/filepath.h>
|
|
|
|
#include <QObject>
|
|
#include <QPointer>
|
|
#include <QPair>
|
|
|
|
namespace Core {
|
|
class ActionContainer;
|
|
class Command;
|
|
class CommandLocator;
|
|
}
|
|
|
|
namespace VcsBase { class VcsBasePluginState; }
|
|
|
|
namespace Gerrit::Internal {
|
|
|
|
class GerritChange;
|
|
class GerritDialog;
|
|
class GerritServer;
|
|
class GerritOptionsPage;
|
|
|
|
class GerritPlugin : public QObject
|
|
{
|
|
Q_OBJECT
|
|
|
|
public:
|
|
GerritPlugin();
|
|
~GerritPlugin() override;
|
|
|
|
void addToMenu(Core::ActionContainer *ac);
|
|
|
|
void addToLocator(Core::CommandLocator *locator);
|
|
void push(const Utils::FilePath &topLevel);
|
|
|
|
void updateActions(const VcsBase::VcsBasePluginState &state);
|
|
|
|
signals:
|
|
void fetchStarted(const std::shared_ptr<Gerrit::Internal::GerritChange> &change);
|
|
void fetchFinished();
|
|
|
|
private:
|
|
void openView();
|
|
void push();
|
|
|
|
Utils::FilePath findLocalRepository(const QString &project, const QString &branch) const;
|
|
void fetch(const std::shared_ptr<GerritChange> &change, int mode);
|
|
|
|
std::shared_ptr<GerritServer> m_server;
|
|
QPointer<GerritDialog> m_dialog;
|
|
Core::Command *m_gerritCommand = nullptr;
|
|
Core::Command *m_pushToGerritCommand = nullptr;
|
|
QString m_reviewers;
|
|
GerritOptionsPage *m_gerritOptionsPage = nullptr;
|
|
};
|
|
|
|
} // Gerrit::Internal
|