summaryrefslogtreecommitdiff
path: root/svx/source
diff options
context:
space:
mode:
authorIvo Hinkelmann <ihi@openoffice.org>2007-11-26 15:39:02 +0000
committerIvo Hinkelmann <ihi@openoffice.org>2007-11-26 15:39:02 +0000
commit97b19a5aaa095d860202f30685f9d22a141b64df (patch)
tree2ceae4bdb7b7a5eafc08a0a6fa17673314c3da9e /svx/source
parent9026c986e7774d4aecb5bfb7156a9128306da331 (diff)
INTEGRATION: CWS tkr06 (1.13.162); FILE MERGED
2007/11/07 16:40:57 mav 1.13.162.2: #i82892# allow better control over password container 2007/11/05 10:21:37 pb 1.13.162.1: fix: #i82892# SvxSecurityTabPage: MasterPassword and Passwords added
Diffstat (limited to 'svx/source')
-rw-r--r--svx/source/dialog/optinet2.hxx41
1 files changed, 23 insertions, 18 deletions
diff --git a/svx/source/dialog/optinet2.hxx b/svx/source/dialog/optinet2.hxx
index 09cd038f8aff..6601f8f3e68b 100644
--- a/svx/source/dialog/optinet2.hxx
+++ b/svx/source/dialog/optinet2.hxx
@@ -4,9 +4,9 @@
*
* $RCSfile: optinet2.hxx,v $
*
- * $Revision: 1.14 $
+ * $Revision: 1.15 $
*
- * last change: $Author: rt $ $Date: 2007-11-07 10:01:33 $
+ * last change: $Author: ihi $ $Date: 2007-11-26 16:39:02 $
*
* The Contents of this file are made available subject to
* the terms of GNU Lesser General Public License Version 2.1.
@@ -90,6 +90,9 @@ class SvtInetOptions;
#define TYPE_CONTROLS 18
#endif
+namespace svx {
+ class SecurityOptionsDialog;
+}
namespace lang = ::com::sun::star::lang;
namespace uno = ::com::sun::star::uno;
@@ -264,21 +267,17 @@ class SvxSecurityTabPage : public SfxTabPage
using TabPage::DeactivatePage;
public:
enum RedliningMode { RL_NONE, RL_WRITER, RL_CALC };
+
private:
- FixedLine maSecOptionsFL;
- FixedInfo maSecOptionsFI;
- ReadOnlyImage maSaveOrSendDocsFI;
- CheckBox maSaveOrSendDocsCB;
- ReadOnlyImage maSignDocsFI;
- CheckBox maSignDocsCB;
- ReadOnlyImage maPrintDocsFI;
- CheckBox maPrintDocsCB;
- ReadOnlyImage maCreatePdfFI;
- CheckBox maCreatePdfCB;
- ReadOnlyImage maRemovePersInfoFI;
- CheckBox maRemovePersInfoCB;
- ReadOnlyImage maRecommPasswdFI;
- CheckBox maRecommPasswdCB;
+ FixedLine maSecurityOptionsFL;
+ FixedInfo maSecurityOptionsFI;
+ PushButton maSecurityOptionsPB;
+
+ FixedLine maPasswordsFL;
+ CheckBox maSavePasswordsCB;
+ PushButton maMasterPasswordPB;
+ FixedInfo maMasterPasswordFI;
+ PushButton maShowPasswordsPB;
FixedLine maMacroSecFL;
FixedInfo maMacroSecFI;
@@ -289,12 +288,18 @@ private:
CheckBox maRecordChangesCB;
PushButton maProtectRecordsPB;
- SvtSecurityOptions* mpSecOptions;
+ SvtSecurityOptions* mpSecOptions;
+ svx::SecurityOptionsDialog* mpSecOptDlg;
+
RedliningMode meRedlingMode;
String msProtectRecordsStr;
String msUnprotectRecordsStr;
+ String msPasswordStoringDeactivateStr;
- DECL_LINK( AdvancedPBHdl, void* );
+ DECL_LINK( SecurityOptionsHdl, PushButton* );
+ DECL_LINK( SavePasswordHdl, void* );
+ DECL_LINK( MasterPasswordHdl, PushButton* );
+ DECL_LINK( ShowPasswordsHdl, PushButton* );
DECL_LINK( MacroSecPBHdl, void* );
DECL_LINK( RecordChangesCBHdl, void* );
DECL_LINK( ProtectRecordsPBHdl, void* );