mirror of
https://bitbucket.org/smil3y/kde-extraapps.git
synced 2025-02-23 18:32:53 +00:00
58 lines
1.6 KiB
C++
58 lines
1.6 KiB
C++
/*
|
|
* Copyright (C) 2002 Jean-Baptiste Mardelle <bj@altern.org>
|
|
* Copyright (C) 2007,2008,2009,2010,2011,2012 Rolf Eike Beer <kde@opensource.sf-tec.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 KGPGTEXTINTERFACE_H
|
|
#define KGPGTEXTINTERFACE_H
|
|
|
|
#include <KUrl>
|
|
|
|
class KGpgTextInterfacePrivate;
|
|
#include <QString>
|
|
#include <QStringList>
|
|
|
|
class KGpgTextInterface : public QObject
|
|
{
|
|
Q_OBJECT
|
|
|
|
private:
|
|
KGpgTextInterfacePrivate * const d;
|
|
|
|
KGpgTextInterface();
|
|
Q_DISABLE_COPY(KGpgTextInterface)
|
|
|
|
public:
|
|
explicit KGpgTextInterface(QObject *parent, const QString &keyID, const QStringList &options);
|
|
~KGpgTextInterface();
|
|
|
|
signals:
|
|
/**
|
|
* Emitted when all files passed to KgpgSignFile() where processed.
|
|
*/
|
|
void fileSignFinished();
|
|
|
|
public Q_SLOTS:
|
|
/**
|
|
* Sign file function
|
|
* @param keyID the signing key ID.
|
|
* @param srcUrl file to sign.
|
|
* @param options additional gpg options, e.g. "--armor"
|
|
*/
|
|
void signFiles(const KUrl::List &srcUrl);
|
|
|
|
private Q_SLOTS:
|
|
void slotSignFile();
|
|
void slotSignFinished();
|
|
};
|
|
|
|
#endif
|