GpgFrontend Project
A Free, Powerful, Easy-to-Use, Compact, Cross-Platform, and Installation-Free OpenPGP(pgp) Crypto Tool.
KeyList.h
1
29#ifndef __KEYLIST_H__
30#define __KEYLIST_H__
31
32#include <utility>
33
34#include "core/GpgContext.h"
35#include "ui/import_export/KeyImportDetailDialog.h"
36
37class Ui_KeyList;
38
39namespace GpgFrontend::UI {
40
45struct KeyListRow {
46 using KeyType = unsigned int;
47
48 static const KeyType SECRET_OR_PUBLIC_KEY = 0;
49 static const KeyType ONLY_SECRET_KEY = 1;
50};
51
57 using InfoType = unsigned int;
58
59 static constexpr InfoType ALL = ~0;
60 static constexpr InfoType TYPE = 1 << 0;
61 static constexpr InfoType NAME = 1 << 1;
62 static constexpr InfoType EmailAddress = 1 << 2;
63 static constexpr InfoType Usage = 1 << 3;
64 static constexpr InfoType Validity = 1 << 4;
65 static constexpr InfoType FingerPrint = 1 << 5;
66};
67
73 using AbilityType = unsigned int;
74
75 static constexpr AbilityType ALL = ~0;
76 static constexpr AbilityType NONE = 0;
77 static constexpr AbilityType REFRESH = 1 << 0;
78 static constexpr AbilityType SYNC_PUBLIC_KEY = 1 << 1;
79 static constexpr AbilityType UNCHECK_ALL = 1 << 3;
80 static constexpr AbilityType CHECK_ALL = 1 << 5;
81};
82
87struct KeyTable {
88 QTableWidget* key_list_;
89 KeyListRow::KeyType select_type_;
90 KeyListColumn::InfoType info_type_;
91 std::vector<GpgKey> buffered_keys_;
92 std::function<bool(const GpgKey&)> filter_;
93 KeyIdArgsListPtr checked_key_ids_;
94
104 QTableWidget* _key_list, KeyListRow::KeyType _select_type,
105 KeyListColumn::InfoType _info_type,
106 std::function<bool(const GpgKey&)> _filter = [](const GpgKey&) -> bool {
107 return true;
108 })
109 : key_list_(_key_list),
110 select_type_(_select_type),
111 info_type_(_info_type),
112 filter_(std::move(_filter)) {}
113
119 void Refresh(KeyLinkListPtr m_keys = nullptr);
120
126 KeyIdArgsListPtr& GetChecked();
127
132 void UncheckALL() const;
133
138 void CheckALL() const;
139
145 void SetChecked(KeyIdArgsListPtr key_ids);
146};
147
152class KeyList : public QWidget {
153 Q_OBJECT
154
155 public:
162 explicit KeyList(KeyMenuAbility::AbilityType menu_ability,
163 QWidget* parent = nullptr);
164
173 void AddListGroupTab(
174 const QString& name,
175 KeyListRow::KeyType selectType = KeyListRow::SECRET_OR_PUBLIC_KEY,
176 KeyListColumn::InfoType infoType = KeyListColumn::ALL,
177 const std::function<bool(const GpgKey&)>& filter =
178 [](const GpgKey&) -> bool { return true; });
179
186 std::function<void(const GpgKey&, QWidget*)> action);
187
194 void SetColumnWidth(int row, int size);
195
201 void AddMenuAction(QAction* act);
202
207 void AddSeparator();
208
214 KeyIdArgsListPtr GetChecked();
215
222 static KeyIdArgsListPtr GetChecked(const KeyTable& key_table);
223
229 KeyIdArgsListPtr GetPrivateChecked();
230
236 KeyIdArgsListPtr GetAllPrivateKeys();
237
243 void SetChecked(KeyIdArgsListPtr key_ids);
244
251 static void SetChecked(const KeyIdArgsListPtr& keyIds,
252 const KeyTable& key_table);
253
259 KeyIdArgsListPtr GetSelected();
260
266 std::string GetSelectedKey();
267
273 [[maybe_unused]] static void MarkKeys(QStringList* keyIds);
274
281 [[maybe_unused]] bool ContainsPrivateKeys();
282
283 signals:
290 void SignalRefreshStatusBar(const QString& message, int timeout);
291
296 void SignalRefreshDatabase();
297
298 public slots:
299
304 void SlotRefresh();
305
306 private:
311 void init();
312
318 void import_keys(const QByteArray& inBuffer);
319
324 void uncheck_all();
325
330 void check_all();
331
332 std::mutex buffered_key_list_mutex_;
333
334 std::shared_ptr<Ui_KeyList> ui_;
335 QTableWidget* m_key_list_{};
336 std::vector<KeyTable> m_key_tables_;
337 QMenu* popup_menu_{};
338 GpgFrontend::KeyLinkListPtr buffered_keys_list_;
339 std::function<void(const GpgKey&, QWidget*)> m_action_ = nullptr;
340 KeyMenuAbility::AbilityType menu_ability_ = KeyMenuAbility::ALL;
341
342 private slots:
343
349 void slot_double_clicked(const QModelIndex& index);
350
355 void slot_refresh_ui();
356
361 void slot_sync_with_key_server();
362
363 protected:
369 void contextMenuEvent(QContextMenuEvent* event) override;
370
376 void dragEnterEvent(QDragEnterEvent* event) override;
377
383 void dropEvent(QDropEvent* event) override;
384};
385
386} // namespace GpgFrontend::UI
387
388#endif // __KEYLIST_H__
Definition: GpgKey.h:44
Definition: KeyList.h:152
KeyIdArgsListPtr GetSelected()
Get the Selected object.
Definition: KeyList.cpp:254
bool ContainsPrivateKeys()
Definition: KeyList.cpp:271
void dropEvent(QDropEvent *event) override
Definition: KeyList.cpp:303
static void MarkKeys(QStringList *keyIds)
Definition: KeyList.cpp:382
void SetChecked(KeyIdArgsListPtr key_ids)
Set the Checked object.
Definition: KeyList.cpp:240
void slot_double_clicked(const QModelIndex &index)
Definition: KeyList.cpp:393
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:95
KeyList(KeyMenuAbility::AbilityType menu_ability, QWidget *parent=nullptr)
Construct a new Key List object.
Definition: KeyList.cpp:43
void SetDoubleClickedAction(std::function< void(const GpgKey &, QWidget *)> action)
Set the Double Clicked Action object.
Definition: KeyList.cpp:404
KeyIdArgsListPtr GetAllPrivateKeys()
Get the All Private Keys object.
Definition: KeyList.cpp:196
KeyIdArgsListPtr GetPrivateChecked()
Get the Private Checked object.
Definition: KeyList.cpp:210
void contextMenuEvent(QContextMenuEvent *event) override
Definition: KeyList.cpp:290
void SignalRefreshStatusBar(const QString &message, int timeout)
void AddMenuAction(QAction *act)
Definition: KeyList.cpp:301
void SetColumnWidth(int row, int size)
Set the Column Width object.
Definition: KeyList.cpp:283
std::string GetSelectedKey()
Get the Selected Key object.
Definition: KeyList.cpp:409
void import_keys(const QByteArray &inBuffer)
Definition: KeyList.cpp:386
KeyIdArgsListPtr GetChecked()
Get the Checked object.
Definition: KeyList.cpp:182
void dragEnterEvent(QDragEnterEvent *event) override
Definition: KeyList.cpp:375
Definition: VerifyDetailsDialog.cpp:33
Definition: KeyList.h:56
Definition: KeyList.h:45
Definition: KeyList.h:72
Definition: KeyList.h:87
KeyIdArgsListPtr & GetChecked()
Get the Checked object.
Definition: KeyList.cpp:498
KeyTable(QTableWidget *_key_list, KeyListRow::KeyType _select_type, KeyListColumn::InfoType _info_type, std::function< bool(const GpgKey &)> _filter=[](const GpgKey &) -> bool { return true;})
Construct a new Key Table object.
Definition: KeyList.h:103
void Refresh(KeyLinkListPtr m_keys=nullptr)
Definition: KeyList.cpp:518
void SetChecked(KeyIdArgsListPtr key_ids)
Set the Checked object.
Definition: KeyList.cpp:513