• Skip to content
  • Skip to link menu
KDE API Reference
  • KDE API Reference
  • kde-baseapps API Reference
  • KDE Home
  • Contact Us
 

libkonq

Public Types | Signals | Public Member Functions | List of all members
KVersionControlPlugin Class Referenceabstract

#include <kversioncontrolplugin.h>

Inheritance diagram for KVersionControlPlugin:
Inheritance graph
[legend]

Public Types

enum  VersionState {
  UnversionedVersion, NormalVersion, UpdateRequiredVersion, LocallyModifiedVersion,
  AddedVersion, RemovedVersion, ConflictingVersion, LocallyModifiedUnstagedVersion
}
 

Signals

void errorMessage (const QString &msg)
 
void infoMessage (const QString &msg)
 
void operationCompletedMessage (const QString &msg)
 
void versionStatesChanged ()
 

Public Member Functions

 KVersionControlPlugin (QObject *parent=0)
 
virtual ~KVersionControlPlugin ()
 
virtual bool beginRetrieval (const QString &directory)=0
 
virtual QList< QAction * > contextMenuActions (const KFileItemList &items)=0
 
virtual QList< QAction * > contextMenuActions (const QString &directory)=0
 
virtual void endRetrieval ()=0
 
virtual QString fileName () const =0
 
virtual VersionState versionState (const KFileItem &item)=0
 
- Public Member Functions inherited from QObject
 QObject (QObject *parent)
 
 QObject (QObject *parent, const char *name)
 
virtual  ~QObject ()
 
bool blockSignals (bool block)
 
QObject * child (const char *objName, const char *inheritsClass, bool recursiveSearch) const
 
const QObjectList & children () const
 
const char * className () const
 
bool connect (const QObject *sender, const char *signal, const char *method, Qt::ConnectionType type) const
 
void deleteLater ()
 
void destroyed (QObject *obj)
 
bool disconnect (const QObject *receiver, const char *method)
 
bool disconnect (const char *signal, const QObject *receiver, const char *method)
 
void dumpObjectInfo ()
 
void dumpObjectTree ()
 
QList< QByteArray > dynamicPropertyNames () const
 
virtual bool event (QEvent *e)
 
virtual bool eventFilter (QObject *watched, QEvent *event)
 
T findChild (const QString &name) const
 
QList< T > findChildren (const QRegExp &regExp) const
 
QList< T > findChildren (const QString &name) const
 
bool inherits (const char *className) const
 
void insertChild (QObject *object)
 
void installEventFilter (QObject *filterObj)
 
bool isA (const char *className) const
 
bool isWidgetType () const
 
void killTimer (int id)
 
virtual const QMetaObject * metaObject () const
 
void moveToThread (QThread *targetThread)
 
const char * name () const
 
const char * name (const char *defaultName) const
 
QString objectName () const
 
QObject * parent () const
 
QVariant property (const char *name) const
 
void removeChild (QObject *object)
 
void removeEventFilter (QObject *obj)
 
void setName (const char *name)
 
void setObjectName (const QString &name)
 
void setParent (QObject *parent)
 
bool setProperty (const char *name, const QVariant &value)
 
bool signalsBlocked () const
 
int startTimer (int interval)
 
QThread * thread () const
 

Additional Inherited Members

- Static Public Member Functions inherited from QObject
bool connect (const QObject *sender, const char *signal, const QObject *receiver, const char *method, Qt::ConnectionType type)
 
bool connect (const QObject *sender, const QMetaMethod &signal, const QObject *receiver, const QMetaMethod &method, Qt::ConnectionType type)
 
bool disconnect (const QObject *sender, const char *signal, const QObject *receiver, const char *method)
 
bool disconnect (const QObject *sender, const QMetaMethod &signal, const QObject *receiver, const QMetaMethod &method)
 
QString tr (const char *sourceText, const char *disambiguation, int n)
 
QString trUtf8 (const char *sourceText, const char *disambiguation, int n)
 
- Protected Member Functions inherited from QObject
bool checkConnectArgs (const char *signal, const QObject *object, const char *method)
 
virtual void childEvent (QChildEvent *event)
 
virtual void connectNotify (const char *signal)
 
virtual void customEvent (QEvent *event)
 
virtual void disconnectNotify (const char *signal)
 
int receivers (const char *signal) const
 
QObject * sender () const
 
int senderSignalIndex () const
 
virtual void timerEvent (QTimerEvent *event)
 
- Static Protected Member Functions inherited from QObject
QByteArray normalizeSignalSlot (const char *signalSlot)
 
- Properties inherited from QObject
 objectName
 

Detailed Description

Base class for version control plugins.

It is recommended to use the KVersionControlPlugin2 interface. KVersionControlPlugin2 allows having context menu actions also for non-versioned directories and provides some interface cleanups. It replaces:

  • contextMenuActions() by KVersionControlPlugin2::actions()
  • versionState() by KVersionControlPlugin2::itemVersion()
  • versionStatesChanged() by KVersionControlPlugin2::itemVersionsChanged()
  • VersionState by ItemState
Since
4.4

Definition at line 43 of file kversioncontrolplugin.h.

Member Enumeration Documentation

enum KVersionControlPlugin::VersionState
Enumerator
UnversionedVersion 

The file is not under version control.

NormalVersion 

The file is under version control and represents the latest version.

UpdateRequiredVersion 

The file is under version control and a newer version exists on the main branch.

LocallyModifiedVersion 

The file is under version control and has been modified locally.

All modifications will be part of the next commit.

AddedVersion 

The file has not been under version control but has been marked to get added with the next commit.

RemovedVersion 

The file is under version control but has been marked for getting removed with the next commit.

ConflictingVersion 

The file is under version control and has been locally modified.

A modification has also been done on the main branch.

LocallyModifiedUnstagedVersion 

The file is under version control and has local modifications, which will not be part of the next commit (or are "unstaged" in git jargon).

Since
4.6

Definition at line 48 of file kversioncontrolplugin.h.

Constructor & Destructor Documentation

KVersionControlPlugin::KVersionControlPlugin ( QObject *  parent = 0)

Definition at line 21 of file kversioncontrolplugin.cpp.

KVersionControlPlugin::~KVersionControlPlugin ( )
virtual

Definition at line 26 of file kversioncontrolplugin.cpp.

Member Function Documentation

virtual bool KVersionControlPlugin::beginRetrieval ( const QString &  directory)
pure virtual

Is invoked whenever the version control information will get retrieved for the directory directory.

It is assured that the directory contains a trailing slash.

Implemented in KVersionControlPlugin2.

virtual QList<QAction*> KVersionControlPlugin::contextMenuActions ( const KFileItemList &  items)
pure virtual

Returns the list of actions that should be shown in the context menu for the files items.

It is assured that the passed list is not empty. If an action triggers a change of the versions, the signal KVersionControlPlugin::versionStatesChanged() must be emitted.

Deprecated:
Use KVersionControlPlugin2::actions() instead.

Implemented in KVersionControlPlugin2.

virtual QList<QAction*> KVersionControlPlugin::contextMenuActions ( const QString &  directory)
pure virtual

Returns the list of actions that should be shown in the context menu for the directory directory.

If an action triggers a change of the versions, the signal KVersionControlPlugin::versionStatesChanged() must be emitted.

Deprecated:
Use KVersionControlPlugin2::actions() instead.

Implemented in KVersionControlPlugin2.

virtual void KVersionControlPlugin::endRetrieval ( )
pure virtual

Is invoked after the version control information has been received.

It is assured that KVersionControlPlugin::beginInfoRetrieval() has been invoked before.

Implemented in KVersionControlPlugin2.

void KVersionControlPlugin::errorMessage ( const QString &  msg)
signal

Is emitted if an error message with the content msg should be shown.

virtual QString KVersionControlPlugin::fileName ( ) const
pure virtual

Returns the name of the file which stores the version controls information.

(e. g. .svn, .cvs, .git).

Implemented in KVersionControlPlugin2.

void KVersionControlPlugin::infoMessage ( const QString &  msg)
signal

Is emitted if an information message with the content msg should be shown.

void KVersionControlPlugin::operationCompletedMessage ( const QString &  msg)
signal

Is emitted if an "operation completed" message with the content msg should be shown.

virtual VersionState KVersionControlPlugin::versionState ( const KFileItem &  item)
pure virtual

Returns the version state for the file item.

It is assured that KVersionControlPlugin::beginInfoRetrieval() has been invoked before and that the file is part of the directory specified in beginInfoRetrieval().

Deprecated:
Use KVersionControlPlugin2::itemVersion() instead.

Implemented in KVersionControlPlugin2.

void KVersionControlPlugin::versionStatesChanged ( )
signal

Should be emitted when the version state of files might have been changed after the last retrieval (e.

g. by executing a context menu action of the version control plugin). The file manager will be triggered to update the version states of the directory directory by invoking KVersionControlPlugin::beginRetrieval(), KVersionControlPlugin::versionState() and KVersionControlPlugin::endRetrieval().

Deprecated:
Use KVersionControlPlugin2::itemVersionsChanged() instead.

The documentation for this class was generated from the following files:
  • kversioncontrolplugin.h
  • kversioncontrolplugin.cpp
This file is part of the KDE documentation.
Documentation copyright © 1996-2020 The KDE developers.
Generated on Mon Jun 22 2020 13:07:48 by doxygen 1.8.7 written by Dimitri van Heesch, © 1997-2006

KDE's Doxygen guidelines are available online.

libkonq

Skip menu "libkonq"
  • Main Page
  • Namespace List
  • Alphabetical List
  • Class List
  • Class Hierarchy
  • Class Members
  • File List
  • File Members
  • Related Pages

kde-baseapps API Reference

Skip menu "kde-baseapps API Reference"
  • Libraries
  •   libkonq

Search



Report problems with this website to our bug tracking system.
Contact the specific authors with questions and comments about the page contents.

KDE® and the K Desktop Environment® logo are registered trademarks of KDE e.V. | Legal