xref: /trunk/main/sfx2/source/dialog/passwd.src (revision 6fd2419af095b9e12baf06e33db2129edf4d719b)
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// include ---------------------------------------------------------------
25#include "helpid.hrc"
26#include "dialog.hrc"
27#include "passwd.hrc"
28
29// DLG_PASSWD ------------------------------------------------------------
30ModalDialog DLG_PASSWD
31{
32    HelpId = HID_PASSWD ;
33    OutputSize = TRUE ;
34    SVLook = TRUE ;
35    Size = MAP_APPFONT ( 200, 68 ) ;
36    Text [ en-US ] = "Enter Password" ;
37    Moveable = TRUE ;
38    FixedText FT_PASSWD_USER
39    {
40        Pos = MAP_APPFONT ( 12, 15 ) ;
41        Size = MAP_APPFONT ( 42, 10 ) ;
42        Text [ en-US ] = "~User" ;
43    };
44    Edit ED_PASSWD_USER
45    {
46        HelpID = "sfx2:Edit:DLG_PASSWD:ED_PASSWD_USER" ;
47        Border = TRUE ;
48        Pos = MAP_APPFONT ( 57, 14 ) ;
49        Size = MAP_APPFONT ( 75, 12 ) ;
50    };
51    FixedText FT_PASSWD_PASSWORD
52    {
53        Pos = MAP_APPFONT ( 12, 30 ) ;
54        Size = MAP_APPFONT ( 42, 10 ) ;
55        Text [ en-US ] = "~Password" ;
56    };
57    Edit ED_PASSWD_PASSWORD
58    {
59        HelpID = "sfx2:Edit:DLG_PASSWD:ED_PASSWD_PASSWORD" ;
60        Border = TRUE ;
61        PassWord = TRUE ;
62        Pos = MAP_APPFONT ( 57, 29 ) ;
63        Size = MAP_APPFONT ( 75, 12 ) ;
64    };
65    FixedText FT_PASSWD_CONFIRM
66    {
67        Pos = MAP_APPFONT ( 12, 45 ) ;
68        Size = MAP_APPFONT ( 42, 10 ) ;
69        Text [ en-US ] = "~Confirm" ;
70    };
71    Edit ED_PASSWD_CONFIRM
72    {
73        HelpID = "sfx2:Edit:DLG_PASSWD:ED_PASSWD_CONFIRM" ;
74        Border = TRUE ;
75        PassWord = TRUE ;
76        Pos = MAP_APPFONT ( 57, 44 ) ;
77        Size = MAP_APPFONT ( 75, 12 ) ;
78    };
79    FixedLine GB_PASSWD_PASSWORD
80    {
81        Pos = MAP_APPFONT ( 6, 3 ) ;
82        Size = MAP_APPFONT ( 132, 8 ) ;
83        Text [ en-US ] = "Password" ;
84    };
85    FixedText FT_PASSWD_PASSWORD2
86    {
87        Pos = MAP_APPFONT ( 12, 30 ) ;
88        Size = MAP_APPFONT ( 42, 10 ) ;
89        Text [ en-US ] = "P~assword" ;
90    };
91    Edit ED_PASSWD_PASSWORD2
92    {
93        Border = TRUE ;
94        PassWord = TRUE ;
95        Pos = MAP_APPFONT ( 57, 29 ) ;
96        Size = MAP_APPFONT ( 75, 12 ) ;
97    };
98    FixedText FT_PASSWD_CONFIRM2
99    {
100        Pos = MAP_APPFONT ( 12, 45 ) ;
101        Size = MAP_APPFONT ( 42, 10 ) ;
102        Text [ en-US ] = "Confir~m" ;
103    };
104    Edit ED_PASSWD_CONFIRM2
105    {
106        Border = TRUE ;
107        PassWord = TRUE ;
108        Pos = MAP_APPFONT ( 57, 44 ) ;
109        Size = MAP_APPFONT ( 75, 12 ) ;
110    };
111    OKButton BTN_PASSWD_OK
112    {
113        Disable = TRUE ;
114        Pos = MAP_APPFONT ( 144, 6 ) ;
115        Size = MAP_APPFONT ( 50, 14 ) ;
116        DefButton = TRUE ;
117    };
118    CancelButton BTN_PASSWD_CANCEL
119    {
120        Pos = MAP_APPFONT ( 144, 23 ) ;
121        Size = MAP_APPFONT ( 50, 14 ) ;
122    };
123    HelpButton BTN_PASSWD_HELP
124    {
125        Pos = MAP_APPFONT ( 144, 43 ) ;
126        Size = MAP_APPFONT ( 50, 14 ) ;
127    };
128    String TEXT_PASSWD
129    {
130        Text [ en-US ] = "Password" ;
131    };
132};
133
134// ********************************************************************** EOF
135