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 
35 namespace GpgFrontend::UI {
36 
37 class 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__
GpgFrontend::UI
Definition: FileReadTask.cpp:31
GpgFrontend::UI::KeyDetailsDialog
Definition: KeyDetailsDialog.h:37
GpgFrontend::GpgKey
Definition: GpgKey.h:41