xref: /trunk/main/uui/source/sslwarndlg.src (revision e44970e361d561c4fb365c9f2d78a4d8a70d0e0d)
1/**************************************************************
2 *
3 * Licensed to the Apache Software Foundation (ASF) under one
4 * or more contributor license agreements.  See the NOTICE file
5 * distributed with this work for additional information
6 * regarding copyright ownership.  The ASF licenses this file
7 * to you under the Apache License, Version 2.0 (the
8 * "License"); you may not use this file except in compliance
9 * with the License.  You may obtain a copy of the License at
10 *
11 *   http://www.apache.org/licenses/LICENSE-2.0
12 *
13 * Unless required by applicable law or agreed to in writing,
14 * software distributed under the License is distributed on an
15 * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
16 * KIND, either express or implied.  See the License for the
17 * specific language governing permissions and limitations
18 * under the License.
19 *
20 *************************************************************/
21
22#define __RSC
23
24#ifndef UUI_IDS_HRC
25#include <ids.hrc>
26#endif
27#ifndef UUI_SSLWARN_HRC
28#include <sslwarndlg.hrc>
29#endif
30
31ModalDialog DLG_UUI_SSLWARN
32{
33    HelpId = HID_DLG_SSLWARN_UUI ;
34    Border = TRUE ;
35    Moveable = TRUE ;
36    OutputSize = TRUE ;
37    SVLook = TRUE ;
38    Size = MAP_APPFONT ( DLG_WIDTH, DLG_HEIGHT ) ;
39
40    Text [ en-US ] = "Security Warning: " ;
41
42    FixedText FT_LABEL_1
43    {
44        Pos = MAP_APPFONT ( DLG_TEXT_START_X, RSC_SP_DLG_INNERBORDER_TOP ) ;
45        Size = MAP_APPFONT ( 195, DLG_TEXT_1_HEIGHT ) ;
46
47        Text [ en-US ] = "No Text" ;
48
49        Border = FALSE ;
50        WordBreak = TRUE ;
51    };
52
53    PushButton PB_VIEW__CERTIFICATE
54    {
55        HelpID = "uui:PushButton:DLG_UUI_SSLWARN:PB_VIEW__CERTIFICATE" ;
56        Pos = MAP_APPFONT ( DLG_CTLBTN_CERT_START_X, DLG_CTLBTN_START_Y ) ;
57        Size = MAP_APPFONT ( DLG_CTLBTN_CERT_PUSHBUTTON_WIDTH, RSC_CD_PUSHBUTTON_HEIGHT ) ;
58
59        Text [ en-US ] = "View Certificate" ;
60
61    };
62
63    CancelButton PB_CANCEL
64    {
65        Pos = MAP_APPFONT ( DLG_CTLBTN_CANCEL_START_X, DLG_CTLBTN_START_Y ) ;
66        Size = MAP_APPFONT ( DLG_CTLBTN_CANCEL_PUSHBUTTON_WIDTH, RSC_CD_PUSHBUTTON_HEIGHT ) ;
67
68        Text [ en-US ] = "Cancel Connection" ;
69
70    };
71
72    PushButton PB_OK
73    {
74        HelpID = "uui:PushButton:DLG_UUI_SSLWARN:PB_OK" ;
75        Pos = MAP_APPFONT ( DLG_CTLBTN_OK_START_X, DLG_CTLBTN_START_Y ) ;
76        Size = MAP_APPFONT ( RSC_CD_PUSHBUTTON_WIDTH, RSC_CD_PUSHBUTTON_HEIGHT ) ;
77
78        Text [ en-US ] = "Continue" ;
79
80    };
81
82    FixedImage IMG_WARN
83    {
84        Pos = MAP_APPFONT ( RSC_SP_DLG_INNERBORDER_LEFT, RSC_SP_DLG_INNERBORDER_TOP ) ;
85        Size = MAP_APPFONT ( DLG_WARMIMG_WIDTH, DLG_WARMIMG_HEIGHT ) ;
86
87        Fixed = Image
88        {
89            /* ImageBitmap = Bitmap {File = "certificate_40x56.png" ;} ; */
90        };
91
92    };
93
94    FixedLine FL_LINE
95    {
96        Pos = MAP_APPFONT ( 0, DLG_CTLBTN_START_Y - RSC_SP_FLGR_INNERBORDER_TOP - RSC_CD_FIXEDLINE_HEIGHT ) ;
97        Size = MAP_APPFONT ( DLG_WIDTH, RSC_CD_FIXEDLINE_HEIGHT ) ;
98    };
99};
100
101// ********************************************************************** EOF
102