GpgFrontend Project
A Free, Powerful, Easy-to-Use, Compact, Cross-Platform, and Installation-Free OpenPGP(pgp) Crypto Tool.
KeyDetailsDialog.h
1
29#ifndef __KEYDETAILSDIALOG_H__
30#define __KEYDETAILSDIALOG_H__
31
32#include "core/GpgContext.h"
33#include "ui/GpgFrontendUI.h"
34
35namespace GpgFrontend::UI {
36
37class KeyDetailsDialog : public QDialog {
38 Q_OBJECT
39
40 public:
41 explicit KeyDetailsDialog(const GpgKey& key, QWidget* parent = nullptr);
42
43 private:
44 QTabWidget* tab_widget_{};
45};
46} // namespace GpgFrontend::UI
47
48#endif // __KEYDETAILSDIALOG_H__
Definition: GpgKey.h:44
Definition: KeyDetailsDialog.h:37
Definition: VerifyDetailsDialog.cpp:33