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 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83
|
/*
SPDX-FileCopyrightText: 2008 Andreas Pakulat <apaku@gmx.de>
SPDX-License-Identifier: GPL-2.0-or-later
*/
#ifndef KDEVPLATFORM_VCSPLUGINHELPER_H
#define KDEVPLATFORM_VCSPLUGINHELPER_H
#include "vcsexport.h"
#include <QUrl>
#include "vcsrevision.h"
class KJob;
class QMenu;
namespace KTextEditor
{
class View;
class Document;
}
namespace KDevelop
{
class IPlugin;
class IBasicVersionControl;
class Context;
class VcsPluginHelperPrivate;
class KDEVPLATFORMVCS_EXPORT VcsPluginHelper
: public QObject
{
Q_OBJECT
public:
VcsPluginHelper(IPlugin * parent, IBasicVersionControl * vcs);
~VcsPluginHelper() override;
void setupFromContext(KDevelop::Context*);
void addContextDocument(const QUrl& url);
QList<QUrl> contextUrlList() const;
/**
* Creates and returns a menu with common actions.
* Ownership of the actions in the menu stays with this VcsPluginHelper object.
* @param parent the parent widget set for the QMenu for memory management
*/
QMenu* commonActions(QWidget* parent);
public Q_SLOTS:
void commit();
void add();
void revert();
void history(const VcsRevision& rev = VcsRevision::createSpecialRevision( VcsRevision::Base ));
void annotation();
void annotationContextMenuAboutToShow( KTextEditor::View* view, QMenu* menu, int line);
void diffToBase();
void diffForRev();
void diffForRevGlobal();
void update();
void pull();
void push();
void diffJobFinished(KJob* job);
void revertDone(KJob* job);
void disposeEventually(KTextEditor::Document*);
void disposeEventually(KTextEditor::View*, bool);
private Q_SLOTS:
void delayedModificationWarningOn();
void handleAnnotationBorderVisibilityChanged(KTextEditor::View* view, bool visible);
private:
void diffForRev(const QUrl& url);
private:
const QScopedPointer<class VcsPluginHelperPrivate> d_ptr;
Q_DECLARE_PRIVATE(VcsPluginHelper)
};
} // namespace KDevelop
#endif
|