Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/keepassxreboot/keepassxc.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorToni Spets <toni.spets@iki.fi>2018-05-10 16:12:36 +0300
committerJonathan White <support@dmapps.us>2020-04-08 20:44:27 +0300
commitef668f552ed20b801f62b9cd2b6cf395c01bab0c (patch)
treea376f1cf23ac3f67859e96a48a62e1d28cac6362 /src/gui/DatabaseWidget.h
parentd41a37c9bc4947c9aa7bbbe5fa46f74933a74795 (diff)
SSH Agent: Entry context menu control
Diffstat (limited to 'src/gui/DatabaseWidget.h')
-rw-r--r--src/gui/DatabaseWidget.h7
1 files changed, 7 insertions, 0 deletions
diff --git a/src/gui/DatabaseWidget.h b/src/gui/DatabaseWidget.h
index 2b9388f37..d54c63439 100644
--- a/src/gui/DatabaseWidget.h
+++ b/src/gui/DatabaseWidget.h
@@ -110,6 +110,9 @@ public:
bool currentEntryHasUrl();
bool currentEntryHasNotes();
bool currentEntryHasTotp();
+#ifdef WITH_XC_SSHAGENT
+ bool currentEntryHasSshKey();
+#endif
QByteArray entryViewState() const;
bool setEntryViewState(const QByteArray& state) const;
@@ -169,6 +172,10 @@ public slots:
void showTotpKeyQrCode();
void copyTotp();
void setupTotp();
+#ifdef WITH_XC_SSHAGENT
+ void addToAgent();
+ void removeFromAgent();
+#endif
void performAutoType();
void openUrl();
void downloadSelectedFavicons();