QGpgME  20.5.1.0000000
Qt API for GpgME
listallkeysjob.h
1 /*
2  listallkeysjob.h
3 
4  This file is part of qgpgme, the Qt API binding for gpgme
5  Copyright (c) 2004 Klarälvdalens Datakonsult AB
6  Copyright (c) 2016 by Bundesamt für Sicherheit in der Informationstechnik
7  Software engineering by Intevation GmbH
8  Copyright (c) 2022 g10 Code GmbH
9  Software engineering by Ingo Klöcker <dev@ingo-kloecker.de>
10 
11  QGpgME is free software; you can redistribute it and/or
12  modify it under the terms of the GNU General Public License as
13  published by the Free Software Foundation; either version 2 of the
14  License, or (at your option) any later version.
15 
16  QGpgME is distributed in the hope that it will be useful,
17  but WITHOUT ANY WARRANTY; without even the implied warranty of
18  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
19  General Public License for more details.
20 
21  You should have received a copy of the GNU General Public License
22  along with this program; if not, write to the Free Software
23  Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
24 
25  In addition, as a special exception, the copyright holders give
26  permission to link the code of this program with any edition of
27  the Qt library by Trolltech AS, Norway (or with modified versions
28  of Qt that use the same license as Qt), and distribute linked
29  combinations including the two. You must obey the GNU General
30  Public License in all respects for all of the code used other than
31  Qt. If you modify this file, you may extend this exception to
32  your version of the file, but you are not obligated to do so. If
33  you do not wish to do so, delete this exception statement from
34  your version.
35 */
36 
37 #ifndef __KLEO_LISTALLKEYSJOB_H__
38 #define __KLEO_LISTALLKEYSJOB_H__
39 
40 #include "job.h"
41 #include "qgpgme_export.h"
42 
43 #ifdef BUILDING_QGPGME
44 # include "key.h"
45 #else
46 # include <gpgme++/key.h>
47 #endif
48 
49 #include <vector>
50 
51 namespace GpgME
52 {
53 class Error;
54 class KeyListResult;
55 }
56 
57 namespace QGpgME
58 {
59 
76 class QGPGME_EXPORT ListAllKeysJob : public Job
77 {
78  Q_OBJECT
79 public:
80  enum Option {
81  Default = 0x00,
82  DisableAutomaticTrustDatabaseCheck = 0x01,
83  };
84  Q_DECLARE_FLAGS(Options, Option)
85 
86 protected:
87  explicit ListAllKeysJob(QObject *parent);
88 
89 public:
90  ~ListAllKeysJob();
91 
92  void setOptions(Options options);
93  Options options() const;
94 
105  virtual GpgME::Error start(bool mergeKeys = false) = 0;
106 
110  virtual GpgME::KeyListResult exec(std::vector<GpgME::Key> &pub, std::vector<GpgME::Key> &sec, bool mergeKeys = false) = 0;
111 
112 Q_SIGNALS:
113  void result(const GpgME::KeyListResult &result, const std::vector<GpgME::Key> &pub = std::vector<GpgME::Key>(), const std::vector<GpgME::Key> &sec = std::vector<GpgME::Key>(), const QString &auditLogAsHtml = QString(), const GpgME::Error &auditLogError = GpgME::Error());
114 };
115 
116 Q_DECLARE_OPERATORS_FOR_FLAGS(ListAllKeysJob::Options)
117 
118 }
119 
120 #endif // __KLEO_LISTALLKEYSJOB_H__
An abstract base class for asynchronous crypto operations.
Definition: job.h:73
An abstract base class for asynchronously listing all keys.
Definition: listallkeysjob.h:77
virtual GpgME::Error start(bool mergeKeys=false)=0
virtual GpgME::KeyListResult exec(std::vector< GpgME::Key > &pub, std::vector< GpgME::Key > &sec, bool mergeKeys=false)=0