xref: /AOO41X/main/cui/source/options/securityoptions.src (revision cdf0e10c4e3984b49a9502b011690b615761d4a3)
1*cdf0e10cSrcweir/*************************************************************************
2*cdf0e10cSrcweir *
3*cdf0e10cSrcweir * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
4*cdf0e10cSrcweir *
5*cdf0e10cSrcweir * Copyright 2000, 2010 Oracle and/or its affiliates.
6*cdf0e10cSrcweir *
7*cdf0e10cSrcweir * OpenOffice.org - a multi-platform office productivity suite
8*cdf0e10cSrcweir *
9*cdf0e10cSrcweir * This file is part of OpenOffice.org.
10*cdf0e10cSrcweir *
11*cdf0e10cSrcweir * OpenOffice.org is free software: you can redistribute it and/or modify
12*cdf0e10cSrcweir * it under the terms of the GNU Lesser General Public License version 3
13*cdf0e10cSrcweir * only, as published by the Free Software Foundation.
14*cdf0e10cSrcweir *
15*cdf0e10cSrcweir * OpenOffice.org is distributed in the hope that it will be useful,
16*cdf0e10cSrcweir * but WITHOUT ANY WARRANTY; without even the implied warranty of
17*cdf0e10cSrcweir * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
18*cdf0e10cSrcweir * GNU Lesser General Public License version 3 for more details
19*cdf0e10cSrcweir * (a copy is included in the LICENSE file that accompanied this code).
20*cdf0e10cSrcweir *
21*cdf0e10cSrcweir * You should have received a copy of the GNU Lesser General Public License
22*cdf0e10cSrcweir * version 3 along with OpenOffice.org.  If not, see
23*cdf0e10cSrcweir * <http://www.openoffice.org/license.html>
24*cdf0e10cSrcweir * for a copy of the LGPLv3 License.
25*cdf0e10cSrcweir *
26*cdf0e10cSrcweir ************************************************************************/
27*cdf0e10cSrcweir
28*cdf0e10cSrcweir// include --------------------------------------------------------------
29*cdf0e10cSrcweir
30*cdf0e10cSrcweir#include <svtools/controldims.hrc>
31*cdf0e10cSrcweir#include "securityoptions.hrc"
32*cdf0e10cSrcweir#include <cuires.hrc>
33*cdf0e10cSrcweir#include "helpid.hrc"
34*cdf0e10cSrcweir
35*cdf0e10cSrcweirModalDialog RID_SVXDLG_SECURITY_OPTIONS
36*cdf0e10cSrcweir{
37*cdf0e10cSrcweir	HelpID = HID_DLG_SECURITY_OPTIONS ;
38*cdf0e10cSrcweir	OutputSize = TRUE ;
39*cdf0e10cSrcweir	SVLook = TRUE ;
40*cdf0e10cSrcweir    Size = MAP_APPFONT ( DLG_WIDTH , ROW_10 ) ;
41*cdf0e10cSrcweir	Moveable = TRUE ;
42*cdf0e10cSrcweir	Closeable = TRUE ;
43*cdf0e10cSrcweir	Text [ en-US ] = "Security options and warnings" ;
44*cdf0e10cSrcweir	FixedLine FL_WARNINGS
45*cdf0e10cSrcweir	{
46*cdf0e10cSrcweir        Pos = MAP_APPFONT( COL_0, ROW_0 );
47*cdf0e10cSrcweir        Size = MAP_APPFONT( COL_4-COL_0, RSC_CD_FIXEDLINE_HEIGHT );
48*cdf0e10cSrcweir		Text [ en-US ] = "Security warnings";
49*cdf0e10cSrcweir	};
50*cdf0e10cSrcweir	FixedText FI_WARNINGS
51*cdf0e10cSrcweir	{
52*cdf0e10cSrcweir        Pos = MAP_APPFONT( COL_1, ROW_1 );
53*cdf0e10cSrcweir        Size = MAP_APPFONT( COL_3-COL_1, 2*RSC_CD_FIXEDLINE_HEIGHT );
54*cdf0e10cSrcweir        Wordbreak = TRUE;
55*cdf0e10cSrcweir        Text [ en-US ] = "Warn if document contains recorded changes, versions, hidden information or notes:";
56*cdf0e10cSrcweir	};
57*cdf0e10cSrcweir    FixedImage FI_SAVESENDDOCS
58*cdf0e10cSrcweir    {
59*cdf0e10cSrcweir        Pos = MAP_APPFONT( COL_2 - 7, ROW_2 + 2 );
60*cdf0e10cSrcweir        Size = MAP_APPFONT( 6, 6 );
61*cdf0e10cSrcweir    };
62*cdf0e10cSrcweir    CheckBox CB_SAVESENDDOCS
63*cdf0e10cSrcweir	{
64*cdf0e10cSrcweir        HelpID = "cui:CheckBox:RID_SVXDLG_SECURITY_OPTIONS:CB_SAVESENDDOCS";
65*cdf0e10cSrcweir        Pos = MAP_APPFONT( COL_2, ROW_2 );
66*cdf0e10cSrcweir        Size = MAP_APPFONT( CHECKBOX_WIDTH, RSC_CD_CHECKBOX_HEIGHT );
67*cdf0e10cSrcweir        Text [ en-US ] = "When saving or sending";
68*cdf0e10cSrcweir	};
69*cdf0e10cSrcweir    FixedImage FI_SIGNDOCS
70*cdf0e10cSrcweir    {
71*cdf0e10cSrcweir        Pos = MAP_APPFONT( COL_2 + CHECKBOX_WIDTH + RSC_SP_CTRL_X - 7, ROW_2 + 2 );
72*cdf0e10cSrcweir        Size = MAP_APPFONT( 6, 6 );
73*cdf0e10cSrcweir    };
74*cdf0e10cSrcweir    CheckBox CB_SIGNDOCS
75*cdf0e10cSrcweir	{
76*cdf0e10cSrcweir        HelpID = "cui:CheckBox:RID_SVXDLG_SECURITY_OPTIONS:CB_SIGNDOCS";
77*cdf0e10cSrcweir        Pos = MAP_APPFONT( COL_2 + CHECKBOX_WIDTH + RSC_SP_CTRL_X, ROW_2 );
78*cdf0e10cSrcweir        Size = MAP_APPFONT( CHECKBOX_WIDTH, RSC_CD_CHECKBOX_HEIGHT );
79*cdf0e10cSrcweir        Text [ en-US ] = "When signing";
80*cdf0e10cSrcweir	};
81*cdf0e10cSrcweir    FixedImage FI_PRINTDOCS
82*cdf0e10cSrcweir    {
83*cdf0e10cSrcweir        Pos = MAP_APPFONT( COL_2 - 7, ROW_3 + 2 );
84*cdf0e10cSrcweir        Size = MAP_APPFONT( 6, 6 );
85*cdf0e10cSrcweir    };
86*cdf0e10cSrcweir    CheckBox CB_PRINTDOCS
87*cdf0e10cSrcweir	{
88*cdf0e10cSrcweir        HelpID = "cui:CheckBox:RID_SVXDLG_SECURITY_OPTIONS:CB_PRINTDOCS";
89*cdf0e10cSrcweir        Pos = MAP_APPFONT( COL_2, ROW_3 );
90*cdf0e10cSrcweir        Size = MAP_APPFONT( CHECKBOX_WIDTH, RSC_CD_CHECKBOX_HEIGHT );
91*cdf0e10cSrcweir        Text [ en-US ] = "When printing";
92*cdf0e10cSrcweir	};
93*cdf0e10cSrcweir    FixedImage FI_CREATEPDF
94*cdf0e10cSrcweir    {
95*cdf0e10cSrcweir        Pos = MAP_APPFONT( COL_2 + CHECKBOX_WIDTH + RSC_SP_CTRL_X - 7, ROW_3 + 2 );
96*cdf0e10cSrcweir        Size = MAP_APPFONT( 6, 6 );
97*cdf0e10cSrcweir    };
98*cdf0e10cSrcweir    CheckBox CB_CREATEPDF
99*cdf0e10cSrcweir	{
100*cdf0e10cSrcweir        HelpID = "cui:CheckBox:RID_SVXDLG_SECURITY_OPTIONS:CB_CREATEPDF";
101*cdf0e10cSrcweir        Pos = MAP_APPFONT( COL_2 + CHECKBOX_WIDTH + RSC_SP_CTRL_X, ROW_3 );
102*cdf0e10cSrcweir        Size = MAP_APPFONT( CHECKBOX_WIDTH, RSC_CD_CHECKBOX_HEIGHT );
103*cdf0e10cSrcweir        Text [ en-US ] = "When creating PDF files";
104*cdf0e10cSrcweir	};
105*cdf0e10cSrcweir	FixedLine FL_OPTIONS
106*cdf0e10cSrcweir	{
107*cdf0e10cSrcweir        Pos = MAP_APPFONT( COL_0, ROW_4 );
108*cdf0e10cSrcweir        Size = MAP_APPFONT( COL_4-COL_0, RSC_CD_FIXEDLINE_HEIGHT );
109*cdf0e10cSrcweir		Text [ en-US ] = "Security options";
110*cdf0e10cSrcweir	};
111*cdf0e10cSrcweir    FixedImage FI_REMOVEINFO
112*cdf0e10cSrcweir    {
113*cdf0e10cSrcweir        Pos = MAP_APPFONT( COL_1 - 7, ROW_5 + 2 );
114*cdf0e10cSrcweir        Size = MAP_APPFONT( 6, 6 );
115*cdf0e10cSrcweir    };
116*cdf0e10cSrcweir    CheckBox CB_REMOVEINFO
117*cdf0e10cSrcweir	{
118*cdf0e10cSrcweir        HelpID = "cui:CheckBox:RID_SVXDLG_SECURITY_OPTIONS:CB_REMOVEINFO";
119*cdf0e10cSrcweir        Pos = MAP_APPFONT( COL_1, ROW_5 );
120*cdf0e10cSrcweir        Size = MAP_APPFONT( COL_3-COL_1, RSC_CD_CHECKBOX_HEIGHT );
121*cdf0e10cSrcweir		Text [ en-US ] = "Remove personal information on saving";
122*cdf0e10cSrcweir	};
123*cdf0e10cSrcweir    FixedImage FI_RECOMMENDPWD
124*cdf0e10cSrcweir    {
125*cdf0e10cSrcweir        Pos = MAP_APPFONT( COL_1 - 7, ROW_6 + 2 );
126*cdf0e10cSrcweir        Size = MAP_APPFONT( 6, 6 );
127*cdf0e10cSrcweir    };
128*cdf0e10cSrcweir    CheckBox CB_RECOMMENDPWD
129*cdf0e10cSrcweir	{
130*cdf0e10cSrcweir        HelpID = "cui:CheckBox:RID_SVXDLG_SECURITY_OPTIONS:CB_RECOMMENDPWD";
131*cdf0e10cSrcweir        Pos = MAP_APPFONT( COL_1, ROW_6 );
132*cdf0e10cSrcweir        Size = MAP_APPFONT( COL_3-COL_1, RSC_CD_CHECKBOX_HEIGHT );
133*cdf0e10cSrcweir		Text [ en-US ] = "Recommend password protection on saving";
134*cdf0e10cSrcweir	};
135*cdf0e10cSrcweir    FixedImage FI_CTRLHYPERLINK
136*cdf0e10cSrcweir    {
137*cdf0e10cSrcweir        Pos = MAP_APPFONT( COL_1 - 7, ROW_6 + 2 );
138*cdf0e10cSrcweir        Size = MAP_APPFONT( 6, 6 );
139*cdf0e10cSrcweir    };
140*cdf0e10cSrcweir    CheckBox CB_CTRLHYPERLINK
141*cdf0e10cSrcweir    {
142*cdf0e10cSrcweir        HelpID = "cui:CheckBox:RID_SVXDLG_SECURITY_OPTIONS:CB_CTRLHYPERLINK";
143*cdf0e10cSrcweir        Pos = MAP_APPFONT( COL_1, ROW_7 );
144*cdf0e10cSrcweir        Size = MAP_APPFONT( COL_3-COL_1, RSC_CD_CHECKBOX_HEIGHT );
145*cdf0e10cSrcweir        Text [ en-US ] = "Ctrl-click required to follow hyperlinks";
146*cdf0e10cSrcweir    };
147*cdf0e10cSrcweir	FixedLine FL_BUTTONS
148*cdf0e10cSrcweir	{
149*cdf0e10cSrcweir        Pos = MAP_APPFONT( 0, ROW_8 );
150*cdf0e10cSrcweir        Size = MAP_APPFONT( DLG_WIDTH, RSC_CD_FIXEDLINE_HEIGHT );
151*cdf0e10cSrcweir	};
152*cdf0e10cSrcweir	OKButton PB_OK
153*cdf0e10cSrcweir	{
154*cdf0e10cSrcweir        Pos = MAP_APPFONT ( COL_A , ROW_9 ) ;
155*cdf0e10cSrcweir		Size = MAP_APPFONT ( RSC_CD_PUSHBUTTON_WIDTH , RSC_CD_PUSHBUTTON_HEIGHT ) ;
156*cdf0e10cSrcweir		TabStop = TRUE ;
157*cdf0e10cSrcweir		DefButton = TRUE ;
158*cdf0e10cSrcweir	};
159*cdf0e10cSrcweir	CancelButton PB_CANCEL
160*cdf0e10cSrcweir	{
161*cdf0e10cSrcweir        Pos = MAP_APPFONT ( COL_B , ROW_9 ) ;
162*cdf0e10cSrcweir		Size = MAP_APPFONT ( RSC_CD_PUSHBUTTON_WIDTH , RSC_CD_PUSHBUTTON_HEIGHT ) ;
163*cdf0e10cSrcweir		TabStop = TRUE ;
164*cdf0e10cSrcweir	};
165*cdf0e10cSrcweir	HelpButton PB_HELP
166*cdf0e10cSrcweir	{
167*cdf0e10cSrcweir        Pos = MAP_APPFONT ( COL_C , ROW_9 ) ;
168*cdf0e10cSrcweir		Size = MAP_APPFONT ( RSC_CD_PUSHBUTTON_WIDTH , RSC_CD_PUSHBUTTON_HEIGHT ) ;
169*cdf0e10cSrcweir		TabStop = TRUE ;
170*cdf0e10cSrcweir	};
171*cdf0e10cSrcweir};
172*cdf0e10cSrcweir
173