diff options
Diffstat (limited to 'src/ui/KeyMgmt.h')
-rwxr-xr-x | src/ui/KeyMgmt.h | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/src/ui/KeyMgmt.h b/src/ui/KeyMgmt.h index 7edb1b5c..e3f250eb 100755 --- a/src/ui/KeyMgmt.h +++ b/src/ui/KeyMgmt.h @@ -44,7 +44,7 @@ class KeyMgmt : public QMainWindow { void slotGenerateSubKey(); - void slotExportKeyToFile(); + void slotExportKeyToKeyPackage(); void slotExportKeyToClipboard(); @@ -60,6 +60,8 @@ class KeyMgmt : public QMainWindow { void slotSaveWindowState(); + void slotImportKeyPackage(); + signals: void signalStatusBarChanged(QString); @@ -75,7 +77,7 @@ class KeyMgmt : public QMainWindow { void deleteKeysWithWarning(GpgFrontend::KeyIdArgsListPtr uidList); - KeyList* mKeyList; + KeyList* key_list_; QMenu* fileMenu{}; QMenu* keyMenu{}; QMenu* generateKeyMenu{}; @@ -92,6 +94,7 @@ class KeyMgmt : public QMainWindow { QAction* importKeyFromClipboardAct{}; QAction* importKeyFromFileAct{}; QAction* importKeyFromKeyServerAct{}; + QAction* importKeysFromKeyPackageAct{}; QAction* closeAct{}; QAction* showKeyDetailsAct{}; KeyServerImportDialog* importDialog{}; |