From a70be712fd5b33071c4733c47f810948d86dd4d8 Mon Sep 17 00:00:00 2001 From: Peter Penz Date: Wed, 29 Jul 2009 21:56:37 +0000 Subject: Allow the revision control plugins to indicate information-, error- and operation-completed messages. svn path=/trunk/KDE/kdebase/apps/; revision=1004346 --- src/revisioncontrolobserver.h | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) (limited to 'src/revisioncontrolobserver.h') diff --git a/src/revisioncontrolobserver.h b/src/revisioncontrolobserver.h index ae19e219f..4decbda7f 100644 --- a/src/revisioncontrolobserver.h +++ b/src/revisioncontrolobserver.h @@ -57,7 +57,26 @@ public: QList contextMenuActions(const KFileItemList& items) const; QList contextMenuActions(const QString& directory) const; + +signals: + /** + * Is emitted if an information message with the content \a msg + * should be shown. + */ + void infoMessage(const QString& msg); + + /** + * Is emitted if an error message with the content \a msg + * should be shown. + */ + void errorMessage(const QString& msg); + /** + * Is emitted if an "operation completed" message with the content \a msg + * should be shown. + */ + void operationCompletedMessage(const QString& msg); + private slots: void delayedDirectoryVerification(); void verifyDirectory(); -- cgit v1.3.1