35#ifndef __QGPGME_QGPGMESIGNKEYJOB_H__
36#define __QGPGME_QGPGMESIGNKEYJOB_H__
38#include "signkeyjob.h"
40#include "threadedjobmixin.h"
45#include <gpgme++/key.h>
68 GpgME::Error
start(
const GpgME::Key &key) Q_DECL_OVERRIDE;
71 void setUserIDsToSign(
const std::vector<unsigned int> &idsToSign) Q_DECL_OVERRIDE;
86 std::vector<unsigned int> m_userIDsToSign;
87 GpgME::Key m_signingKey;
88 unsigned int m_checkLevel;
Definition: qgpgmesignkeyjob.h:57
void setCheckLevel(unsigned int checkLevel) Q_DECL_OVERRIDE
Definition: qgpgmesignkeyjob.cpp:107
void setUserIDsToSign(const std::vector< unsigned int > &idsToSign) Q_DECL_OVERRIDE
Definition: qgpgmesignkeyjob.cpp:101
GpgME::Error start(const GpgME::Key &key) Q_DECL_OVERRIDE
Definition: qgpgmesignkeyjob.cpp:87
void setNonRevocable(bool nonRevocable) Q_DECL_OVERRIDE
Definition: qgpgmesignkeyjob.cpp:125
void setExportable(bool exportable) Q_DECL_OVERRIDE
Definition: qgpgmesignkeyjob.cpp:113
void setSigningKey(const GpgME::Key &key) Q_DECL_OVERRIDE
Definition: qgpgmesignkeyjob.cpp:119
An abstract base class to sign keys asynchronously.
Definition: signkeyjob.h:65
Definition: threadedjobmixin.h:125