GpgFrontend Project
A Free, Powerful, Easy-to-Use, Compact, Cross-Platform, and Installation-Free OpenPGP(pgp) Crypto Tool.
SignersPicker.h
1
29#ifndef GPGFRONTEND_ZH_CN_TS_SIGNERSPIRCKER_H
30#define GPGFRONTEND_ZH_CN_TS_SIGNERSPIRCKER_H
31
32#include "GpgFrontendUI.h"
33
34namespace GpgFrontend::UI {
35
36class KeyList;
37
42class SignersPicker : public QDialog {
43 Q_OBJECT
44
45 public:
51 explicit SignersPicker(QWidget* parent = nullptr);
52
58 GpgFrontend::KeyIdArgsListPtr GetCheckedSigners();
59
60 private:
61 KeyList* key_list_;
62};
63
64} // namespace GpgFrontend::UI
65
66#endif // GPGFRONTEND_ZH_CN_TS_SIGNERSPIRCKER_H
Definition: KeyList.h:152
Definition: SignersPicker.h:42
SignersPicker(QWidget *parent=nullptr)
Construct a new Signers Picker object.
Definition: SignersPicker.cpp:35
GpgFrontend::KeyIdArgsListPtr GetCheckedSigners()
Get the Checked Signers object.
Definition: SignersPicker.cpp:70
Definition: VerifyDetailsDialog.cpp:33