QGpgME
10.3.4.0000000
Qt API for GpgME
|
An abstract base class for asynchronous downloaders. More...
#include <downloadjob.h>
Signals | |
void | result (const GpgME::Error &result, const QByteArray &keyData, const QString &auditLogAsHtml=QString(), const GpgME::Error &auditLogError=GpgME::Error()) |
![]() | |
void | progress (const QString &what, int current, int total) |
void | done () |
Public Member Functions | |
virtual GpgME::Error | start (const QByteArray &fingerprint, const std::shared_ptr< QIODevice > &keyData)=0 |
virtual QGPGME_DEPRECATED_EXPORT GpgME::Error | start (const QStringList &fingerprints)=0 |
![]() | |
virtual QString | auditLogAsHtml () const |
virtual GpgME::Error | auditLogError () const |
bool | isAuditLogSupported () const |
Protected Member Functions | |
DownloadJob (QObject *parent) | |
![]() | |
Job (QObject *parent) | |
Additional Inherited Members | |
![]() | |
virtual void | slotCancel ()=0 |
![]() | |
static GpgME::Context * | context (Job *job) |
An abstract base class for asynchronous downloaders.
To use a DownloadJob, first obtain an instance from the CryptoBackend implementation, connect the progress() and result() signals to suitable slots and then start the download with a call to start(). This call might fail, in which case the DownloadJob instance will have scheduled it's own destruction with a call to QObject::deleteLater().
After result() is emitted, the DownloadJob will schedule it's own destruction by calling QObject::deleteLater().
|
pure virtual |
Starts the download operation. fingerprint is the fingerprint of the key to download. If fingerprint is empty, contains only whitespace or anything other than a fingerprint, the result is undefined.
Output is written to keyData, if given. Otherwise, it is passed as the second argument of result().
Implemented in QGpgME::QGpgMEDownloadJob.
|
pure virtual |
Starts the download operation. fingerprints is a list of fingerprints used to specify the list of keys downloaded. Empty patterns are ignored. If fingerprints is empty, contains only empty strings or anything other than fingerprints, the result is undefined.
Implemented in QGpgME::QGpgMEDownloadJob.