aboutsummaryrefslogtreecommitdiffstats
path: root/lang/qt/src/Makefile.am
diff options
context:
space:
mode:
authorIngo Klöcker <[email protected]>2022-05-04 12:51:50 +0000
committerIngo Klöcker <[email protected]>2022-05-04 12:51:50 +0000
commitc64a8daf507a2216611861a12f312466b0bae8b2 (patch)
tree11e1a969269fef29992c40e6f73af60bd00de41a /lang/qt/src/Makefile.am
parentcpp: Allow retrieving import result of key listing with locate mode (diff)
downloadgpgme-c64a8daf507a2216611861a12f312466b0bae8b2.tar.gz
gpgme-c64a8daf507a2216611861a12f312466b0bae8b2.zip
qt: Emit import result when refreshing OpenPGP keys
* lang/qt/src/refreshopenpgpkeysjob.h: New. * lang/qt/src/Makefile.am, lang/qt/src/job.cpp: Update accordingly. * lang/qt/src/qgpgmerefreshopenpgpkeysjob.h (class QGpgMERefreshOpenPGPKeysJob): Derive from RefreshOpenPGPKeysJob with result ImportResult. Remove unused start overload. * lang/qt/src/qgpgmerefreshopenpgpkeysjob.cpp (locate_external_keys): Ignore result of KeyListJob. Return import result. (receive_keys): Return import result. (refresh_keys): Merge the two import results and return the result. * lang/qt/src/protocol.h (class Protocol): Add pure virtual member function refreshOpenPGPKeysJob. * lang/qt/src/protocol_p.h (Protocol::refreshKeysJob): Return nullptr for OpenPGP protocol. (Protocol::refreshOpenPGPKeysJob): New. * lang/qt/tests/run-refreshkeysjob.cpp (main): Use appropriate job for the protocol of the key to refresh. -- This adds RefreshOpenPGPKeysJob complementing RefreshKeysJob (for S/MIME keys). Changing the result type of RefreshKeysJob would break the ABI. Therefore we have to introduce a new base class for the refresh job for OpenPGP. We derive this base class from AbstractImportJob because we want to return an import result. GnuPG-bug-id: 5951
Diffstat (limited to 'lang/qt/src/Makefile.am')
-rw-r--r--lang/qt/src/Makefile.am3
1 files changed, 3 insertions, 0 deletions
diff --git a/lang/qt/src/Makefile.am b/lang/qt/src/Makefile.am
index 18456d54..5a41a318 100644
--- a/lang/qt/src/Makefile.am
+++ b/lang/qt/src/Makefile.am
@@ -79,6 +79,7 @@ qgpgme_headers= \
signencryptjob.h \
verifyopaquejob.h \
refreshkeysjob.h \
+ refreshopenpgpkeysjob.h \
cryptoconfig.h \
deletejob.h \
importfromkeyserverjob.h \
@@ -124,6 +125,7 @@ camelcase_headers= \
SignEncryptJob \
VerifyOpaqueJob \
RefreshKeysJob \
+ RefreshOpenPGPKeysJob \
CryptoConfig \
DeleteJob \
ImportFromKeyserverJob \
@@ -231,6 +233,7 @@ qgpgme_moc_sources = \
qgpgmetofupolicyjob.moc \
receivekeysjob.moc \
refreshkeysjob.moc \
+ refreshopenpgpkeysjob.moc \
revokekeyjob.moc \
signencryptjob.moc \
signjob.moc \