xref: /trunk/main/uui/source/masterpassworddlg.src (revision 31bbceb0f9d64c0c2c3b22a794a1666c1f33396e)
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
23
24#define __RSC
25
26#ifndef UUI_IDS_HRC
27#include <ids.hrc>
28#endif
29#ifndef UUI_MASTERPASSWORDDLG_HRC
30#include <masterpassworddlg.hrc>
31#endif
32
33ModalDialog DLG_UUI_MASTERPASSWORD
34{
35    HelpId = HID_DLG_MASTERPASSWORD_UUI ;
36    Border = TRUE ;
37    Moveable = TRUE ;
38    OutputSize = TRUE ;
39    SVLook = TRUE ;
40    Size = MAP_APPFONT ( 175, 66 ) ;
41    FixedText FT_MASTERPASSWORD
42    {
43        Pos = MAP_APPFONT ( 3, 4 ) ;
44        Size = MAP_APPFONT ( 169, 9 ) ;
45        Text [ en-US ] = "Enter password" ;
46    };
47    Edit ED_MASTERPASSWORD
48    {
49        HelpID = "uui:Edit:DLG_UUI_MASTERPASSWORD:ED_MASTERPASSWORD" ;
50        Border = TRUE ;
51        Pos = MAP_APPFONT ( 3, 17 ) ;
52        Size = MAP_APPFONT ( 169, 13 ) ;
53        PassWord = TRUE ;
54    };
55    FixedLine FL_FIXED_LINE
56    {
57        Pos = MAP_APPFONT ( 0, 35 ) ;
58        Size = MAP_APPFONT ( 175, 6 ) ;
59    };
60
61    OKButton BTN_MASTERPASSWORD_OK
62    {
63        Pos = MAP_APPFONT ( 65, 45 ) ;
64        Size = MAP_APPFONT ( 51, 13 ) ;
65        DefButton = TRUE ;
66    };
67    CancelButton BTN_MASTERPASSWORD_CANCEL
68    {
69        Pos = MAP_APPFONT ( 120, 45 ) ;
70        Size = MAP_APPFONT ( 51, 13 ) ;
71    };
72    HelpButton BTN_MASTERPASSWORD_HELP
73    {
74        Pos = MAP_APPFONT ( 5, 45 ) ;
75        Size = MAP_APPFONT ( 51, 13 ) ;
76    };
77    Text [ en-US ] = "Enter Master Password" ;
78};
79
80// ********************************************************************** EOF
81