/usr/include/kdevplatform/vcs/vcspluginhelper.h is in kdevelop-dev 4:5.2.1-1ubuntu4.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
| 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 84 85 86 87 88 89 90 91 92 93 94 95 | /***************************************************************************
 *   Copyright 2008 Andreas Pakulat <apaku@gmx.de>                         *
 *                                                                         *
 *   This program is free software; you can redistribute it and/or modify  *
 *   it under the terms of the GNU General Public License as published by  *
 *   the Free Software Foundation; either version 2 of the License, or     *
 *   (at your option) any later version.                                   *
 *                                                                         *
 ***************************************************************************/
#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;
}
// KTextEditor::AnnotationViewInterface has a bad signature in the
// annotationBorderVisibilityChanged signal, using type "View" instead
// of "KTextEditor::View".
// To enable a string based signal-slot connection, as needed due to
// annotationBorderVisibilityChanged being an "interface" signal,
// with the slot VcsPluginHelper::removeAnnotationModel,
// make View known here
using KTextEditor::View;
namespace KDevelop
{
class IPlugin;
class IBasicVersionControl;
class Context;
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 menagement
     */
    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(View*, bool);
private Q_SLOTS:
    void delayedModificationWarningOn();
    // namespace-less type "View" needed here, see comment above on "using KTextEditor::View;"
    void handleAnnotationBorderVisibilityChanged(View* view, bool visible);
private:
    void diffForRev(const QUrl& url);
private:
    const QScopedPointer<class VcsPluginHelperPrivate> d;
};
} // namespace KDevelop
#endif
 |