merge the formfield patch from ooo-build
[ooovba.git] / uui / source / sslwarndlg.src
blob0145d85c6b8283cfd2ee15e1b7d87bb97f78f83a
1 /*************************************************************************
3  * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
4  * 
5  * Copyright 2008 by Sun Microsystems, Inc.
6  *
7  * OpenOffice.org - a multi-platform office productivity suite
8  *
9  * $RCSfile: sslwarndlg.src,v $
10  * $Revision: 1.3 $
11  *
12  * This file is part of OpenOffice.org.
13  *
14  * OpenOffice.org is free software: you can redistribute it and/or modify
15  * it under the terms of the GNU Lesser General Public License version 3
16  * only, as published by the Free Software Foundation.
17  *
18  * OpenOffice.org is distributed in the hope that it will be useful,
19  * but WITHOUT ANY WARRANTY; without even the implied warranty of
20  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
21  * GNU Lesser General Public License version 3 for more details
22  * (a copy is included in the LICENSE file that accompanied this code).
23  *
24  * You should have received a copy of the GNU Lesser General Public License
25  * version 3 along with OpenOffice.org.  If not, see
26  * <http://www.openoffice.org/license.html>
27  * for a copy of the LGPLv3 License.
28  *
29 ************************************************************************/
30 #define __RSC
33 #ifndef UUI_IDS_HRC
34 #include <ids.hrc>
35 #endif
36 #ifndef UUI_SSLWARN_HRC
37 #include <sslwarndlg.hrc>
38 #endif
40 ModalDialog DLG_UUI_SSLWARN
42     HelpId = HID_DLG_SSLWARN_UUI;
43     Border = TRUE ;
44     Moveable = TRUE ;
45     OutputSize = TRUE ;
46     SVLook = TRUE ;
47     Pos = MAP_APPFONT( 221, 158 );
48     Size = MAP_APPFONT( DLG_WIDTH, DLG_HEIGHT );
50     Text [ en-US ] = "Security Warning: ";
52     FixedText FT_LABEL_1
53     {
54         Pos = MAP_APPFONT( DLG_TEXT_START_X, RSC_SP_DLG_INNERBORDER_TOP );
55         Size = MAP_APPFONT( 195, DLG_TEXT_1_HEIGHT );
57         Text [ en-US ] = "No Text";
59         Border = FALSE;
60         WordBreak = TRUE;
61     };
63     PushButton PB_VIEW__CERTIFICATE
64     {
65         Pos = MAP_APPFONT( DLG_CTLBTN_CERT_START_X, DLG_CTLBTN_START_Y );
66         Size = MAP_APPFONT( DLG_CTLBTN_CERT_PUSHBUTTON_WIDTH, RSC_CD_PUSHBUTTON_HEIGHT );
68         Text [ en-US ] = "View Certificate";
70     };
72     CancelButton PB_CANCEL
73     {
74         Pos = MAP_APPFONT( DLG_CTLBTN_CANCEL_START_X, DLG_CTLBTN_START_Y );
75         Size = MAP_APPFONT( DLG_CTLBTN_CANCEL_PUSHBUTTON_WIDTH, RSC_CD_PUSHBUTTON_HEIGHT );
77         Text [ en-US ] = "Cancel Connection";
79     };
81     PushButton PB_OK
82     {
83         Pos = MAP_APPFONT( DLG_CTLBTN_OK_START_X, DLG_CTLBTN_START_Y );
84         Size = MAP_APPFONT( RSC_CD_PUSHBUTTON_WIDTH, RSC_CD_PUSHBUTTON_HEIGHT );
86         Text [ en-US ] = "Continue";
88     };
90     FixedImage IMG_WARN
91     {
92         Pos = MAP_APPFONT( RSC_SP_DLG_INNERBORDER_LEFT, RSC_SP_DLG_INNERBORDER_TOP );
93         Size = MAP_APPFONT( DLG_WARMIMG_WIDTH , DLG_WARMIMG_HEIGHT );
94         
95         Fixed = Image
96         {
97             /* ImageBitmap = Bitmap { File = "certificate_40x56.png"; }; */
98             MaskColor = Color{Red=0xffff;Green=0x0000;Blue=0xffff;};
99         };
100         
101     };
102     
103     FixedLine FL_LINE
104     {
105         Pos = MAP_APPFONT( 0, DLG_CTLBTN_START_Y - RSC_SP_FLGR_INNERBORDER_TOP -  RSC_CD_FIXEDLINE_HEIGHT );
106         Size = MAP_APPFONT( DLG_WIDTH,  RSC_CD_FIXEDLINE_HEIGHT );
107     };