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:
authorckieschnick <christian.kieschnick@hicknhack-software.com>2019-03-07 18:57:13 +0300
committerJonathan White <support@dmapps.us>2019-03-07 18:57:13 +0300
commitebb87e637974e3e5df31a6a3b97496ab72006147 (patch)
tree184cd55941195312f6a6ecf022f1a5754ad4372a /src/gui/DatabaseWidget.h
parenta2bd08ca8acd90d1e48d286ae5e5f79dd2a419fd (diff)
Add share indication label in group view (#2742)
* When viewing a shared group, the sharing state is indicated by a label similar to the search label. * Banner shows on children of shared groups * When searching, share banner is hidden * Fixed issue where group/entry information was not updated after change
Diffstat (limited to 'src/gui/DatabaseWidget.h')
-rw-r--r--src/gui/DatabaseWidget.h5
1 files changed, 5 insertions, 0 deletions
diff --git a/src/gui/DatabaseWidget.h b/src/gui/DatabaseWidget.h
index f8c6a26fe..9c2788995 100644
--- a/src/gui/DatabaseWidget.h
+++ b/src/gui/DatabaseWidget.h
@@ -29,6 +29,8 @@
#include "gui/csvImport/CsvImportWizard.h"
#include "gui/entry/EntryModel.h"
+#include "config-keepassx.h"
+
class DatabaseOpenWidget;
class KeePass1OpenWidget;
class DatabaseSettingsDialog;
@@ -233,6 +235,9 @@ private:
QPointer<EntryPreviewWidget> m_previewView;
QPointer<QSplitter> m_previewSplitter;
QPointer<QLabel> m_searchingLabel;
+#ifdef WITH_XC_KEESHARE
+ QPointer<QLabel> m_shareLabel;
+#endif
QPointer<CsvImportWizard> m_csvImportWizard;
QPointer<EditEntryWidget> m_editEntryWidget;
QPointer<EditGroupWidget> m_editGroupWidget;