35 #ifndef __QGPGME_QGPGMESIGNKEYJOB_H__
36 #define __QGPGME_QGPGMESIGNKEYJOB_H__
38 #include "signkeyjob.h"
40 #include "threadedjobmixin.h"
44 #ifdef BUILDING_QGPGME
47 #include <gpgme++/key.h>
70 GpgME::Error
start(
const GpgME::Key &key) Q_DECL_OVERRIDE;
73 void setUserIDsToSign(
const std::vector<unsigned int> &idsToSign) Q_DECL_OVERRIDE;
88 void setRemark(
const QString &remark) Q_DECL_OVERRIDE;
91 void setDupeOk(
bool value) Q_DECL_OVERRIDE;
94 std::vector<unsigned int> m_userIDsToSign;
95 GpgME::Key m_signingKey;
96 unsigned int m_checkLevel;
Definition: qgpgmesignkeyjob.h:59
void setRemark(const QString &remark) Q_DECL_OVERRIDE
Definition: qgpgmesignkeyjob.cpp:145
void setCheckLevel(unsigned int checkLevel) Q_DECL_OVERRIDE
Definition: qgpgmesignkeyjob.cpp:121
void setUserIDsToSign(const std::vector< unsigned int > &idsToSign) Q_DECL_OVERRIDE
Definition: qgpgmesignkeyjob.cpp:115
GpgME::Error start(const GpgME::Key &key) Q_DECL_OVERRIDE
Definition: qgpgmesignkeyjob.cpp:100
void setNonRevocable(bool nonRevocable) Q_DECL_OVERRIDE
Definition: qgpgmesignkeyjob.cpp:139
void setExportable(bool exportable) Q_DECL_OVERRIDE
Definition: qgpgmesignkeyjob.cpp:127
void setSigningKey(const GpgME::Key &key) Q_DECL_OVERRIDE
Definition: qgpgmesignkeyjob.cpp:133
void setDupeOk(bool value) Q_DECL_OVERRIDE
Definition: qgpgmesignkeyjob.cpp:151
An abstract base class to sign keys asynchronously.
Definition: signkeyjob.h:67
Definition: threadedjobmixin.h:125