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 05:12:41 +0100
commit5aa5843d4dc668899776192d8200ddddb06a6156 (patch)
tree03f5bd331162fd11171030cefe8148c0c03576d6 /cui/source/inc
parente027dc4629db2959e2c62b97b463c1846849dbd7 (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> (cherry picked from commit e0c3e356fd9151819db13d844f87ec200e2dbee3) Reviewed-on: https://gerrit.libreoffice.org/46758 Tested-by: Jenkins <ci@libreoffice.org>
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: