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 
34 namespace GpgFrontend::UI {
35 
36 class KeyList;
37 
42 class 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
GpgFrontend::UI
Definition: VerifyDetailsDialog.cpp:33
GpgFrontend::UI::KeyList::AddListGroupTab
void AddListGroupTab(const QString &name, KeyListRow::KeyType selectType=KeyListRow::SECRET_OR_PUBLIC_KEY, KeyListColumn::InfoType infoType=KeyListColumn::ALL, const std::function< bool(const GpgKey &)> &filter=[](const GpgKey &) -> bool { return true;})
Definition: KeyList.cpp:96
GpgFrontend::UI::SignersPicker::GetCheckedSigners
GpgFrontend::KeyIdArgsListPtr GetCheckedSigners()
Get the Checked Signers object.
Definition: SignersPicker.cpp:70
GpgFrontend::UI::KeyList::GetPrivateChecked
KeyIdArgsListPtr GetPrivateChecked()
Get the Private Checked object.
Definition: KeyList.cpp:207
GpgFrontend::UI::SignersPicker
Definition: SignersPicker.h:42
GpgFrontend::GpgKey::IsHasActualSigningCapability
bool IsHasActualSigningCapability() const
Definition: GpgKey.cpp:174
GpgFrontend::UI::KeyList
Definition: KeyList.h:152
GpgFrontend::UI::SignersPicker::SignersPicker
SignersPicker(QWidget *parent=nullptr)
Construct a new Signers Picker object.
Definition: SignersPicker.cpp:35
GpgFrontend::GpgKey
Definition: GpgKey.h:44