summaryrefslogtreecommitdiff
path: root/cui/source/inc
diff options
context:
space:
mode:
authorKatarina Behrens <Katarina.Behrens@cib.de>2017-12-12 14:03:05 +0100
committerThorsten Behrens <Thorsten.Behrens@CIB.de>2017-12-19 01:22:30 +0100
commite0c3e356fd9151819db13d844f87ec200e2dbee3 (patch)
treecc6044fe1d965c922045fd9b0eda8f4b6c13c9fa /cui/source/inc
parent40e1cb217396c7183ea3a7379a8a15c8df3aea2e (diff)
List private GPG keys in crypto config dialog
Change-Id: I7cb6a14adcc5424b432589120c66deeddf86b652 Reviewed-on: https://gerrit.libreoffice.org/46691 Reviewed-by: Thorsten Behrens <Thorsten.Behrens@CIB.de> Tested-by: Thorsten Behrens <Thorsten.Behrens@CIB.de>
Diffstat (limited to 'cui/source/inc')
-rw-r--r--cui/source/inc/cuioptgenrl.hxx6
1 files changed, 6 insertions, 0 deletions
diff --git a/cui/source/inc/cuioptgenrl.hxx b/cui/source/inc/cuioptgenrl.hxx
index 0c56b6cdcde6..b612ccf687ff 100644
--- a/cui/source/inc/cuioptgenrl.hxx
+++ b/cui/source/inc/cuioptgenrl.hxx
@@ -24,6 +24,7 @@
#include <svx/optgenrl.hxx>
#include <sfx2/tabdlg.hxx>
#include <vcl/fixed.hxx>
+#include <vcl/layout.hxx>
#include <vector>
@@ -40,6 +41,10 @@ class SvxGeneralTabPage : public SfxTabPage
private:
// the "Use data for document properties" checkbox
VclPtr<CheckBox> m_pUseDataCB;
+ VclPtr<VclContainer> m_pCryptoFrame;
+ VclPtr<ListBox> m_pSigningKeyLB;
+ VclPtr<ListBox> m_pEncryptionKeyLB;
+ VclPtr<CheckBox> m_pEncryptToSelfCB;
// rows
struct Row;
std::vector<std::shared_ptr<Row> > vRows;
@@ -56,6 +61,7 @@ private:
void SetData_Impl();
void InitControls ();
+ void InitCryptography();
void SetLinks ();
protected: