xref: /trunk/main/sfx2/source/dialog/passwd.src (revision e6cdf3af251e383bff38fbbc139855db68e05a23)
1acbf353aSAndrew Rist/**************************************************************
2cdf0e10cSrcweir *
3acbf353aSAndrew Rist * Licensed to the Apache Software Foundation (ASF) under one
4acbf353aSAndrew Rist * or more contributor license agreements.  See the NOTICE file
5acbf353aSAndrew Rist * distributed with this work for additional information
6acbf353aSAndrew Rist * regarding copyright ownership.  The ASF licenses this file
7acbf353aSAndrew Rist * to you under the Apache License, Version 2.0 (the
8acbf353aSAndrew Rist * "License"); you may not use this file except in compliance
9acbf353aSAndrew Rist * with the License.  You may obtain a copy of the License at
10cdf0e10cSrcweir *
11acbf353aSAndrew Rist *   http://www.apache.org/licenses/LICENSE-2.0
12cdf0e10cSrcweir *
13acbf353aSAndrew Rist * Unless required by applicable law or agreed to in writing,
14acbf353aSAndrew Rist * software distributed under the License is distributed on an
15acbf353aSAndrew Rist * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
16acbf353aSAndrew Rist * KIND, either express or implied.  See the License for the
17acbf353aSAndrew Rist * specific language governing permissions and limitations
18acbf353aSAndrew Rist * under the License.
19cdf0e10cSrcweir *
20acbf353aSAndrew Rist *************************************************************/
21acbf353aSAndrew Rist
22acbf353aSAndrew Rist
23cdf0e10cSrcweir
24cdf0e10cSrcweir// include ---------------------------------------------------------------
25cdf0e10cSrcweir#include "helpid.hrc"
26cdf0e10cSrcweir#include "dialog.hrc"
27cdf0e10cSrcweir#include "passwd.hrc"
28cdf0e10cSrcweir
29cdf0e10cSrcweir// DLG_PASSWD ------------------------------------------------------------
30cdf0e10cSrcweirModalDialog DLG_PASSWD
31cdf0e10cSrcweir{
32cdf0e10cSrcweir    HelpId = HID_PASSWD ;
33cdf0e10cSrcweir    OutputSize = TRUE ;
34cdf0e10cSrcweir    SVLook = TRUE ;
35cdf0e10cSrcweir    Size = MAP_APPFONT ( 200, 68 ) ;
36cdf0e10cSrcweir    Text [ en-US ] = "Enter Password" ;
37cdf0e10cSrcweir    Moveable = TRUE ;
38cdf0e10cSrcweir    FixedText FT_PASSWD_USER
39cdf0e10cSrcweir    {
40cdf0e10cSrcweir        Pos = MAP_APPFONT ( 12, 15 ) ;
41cdf0e10cSrcweir        Size = MAP_APPFONT ( 42, 10 ) ;
42cdf0e10cSrcweir        Text [ en-US ] = "~User" ;
43cdf0e10cSrcweir    };
44cdf0e10cSrcweir    Edit ED_PASSWD_USER
45cdf0e10cSrcweir    {
46cdf0e10cSrcweir        HelpID = "sfx2:Edit:DLG_PASSWD:ED_PASSWD_USER" ;
47cdf0e10cSrcweir        Border = TRUE ;
48cdf0e10cSrcweir        Pos = MAP_APPFONT ( 57, 14 ) ;
49cdf0e10cSrcweir        Size = MAP_APPFONT ( 75, 12 ) ;
50cdf0e10cSrcweir    };
51cdf0e10cSrcweir    FixedText FT_PASSWD_PASSWORD
52cdf0e10cSrcweir    {
53cdf0e10cSrcweir        Pos = MAP_APPFONT ( 12, 30 ) ;
54cdf0e10cSrcweir        Size = MAP_APPFONT ( 42, 10 ) ;
55cdf0e10cSrcweir        Text [ en-US ] = "~Password" ;
56cdf0e10cSrcweir    };
57cdf0e10cSrcweir    Edit ED_PASSWD_PASSWORD
58cdf0e10cSrcweir    {
59cdf0e10cSrcweir        HelpID = "sfx2:Edit:DLG_PASSWD:ED_PASSWD_PASSWORD" ;
60cdf0e10cSrcweir        Border = TRUE ;
61cdf0e10cSrcweir        PassWord = TRUE ;
62cdf0e10cSrcweir        Pos = MAP_APPFONT ( 57, 29 ) ;
63cdf0e10cSrcweir        Size = MAP_APPFONT ( 75, 12 ) ;
64cdf0e10cSrcweir    };
65cdf0e10cSrcweir    FixedText FT_PASSWD_CONFIRM
66cdf0e10cSrcweir    {
67cdf0e10cSrcweir        Pos = MAP_APPFONT ( 12, 45 ) ;
68cdf0e10cSrcweir        Size = MAP_APPFONT ( 42, 10 ) ;
69cdf0e10cSrcweir        Text [ en-US ] = "~Confirm" ;
70cdf0e10cSrcweir    };
71cdf0e10cSrcweir    Edit ED_PASSWD_CONFIRM
72cdf0e10cSrcweir    {
73cdf0e10cSrcweir        HelpID = "sfx2:Edit:DLG_PASSWD:ED_PASSWD_CONFIRM" ;
74cdf0e10cSrcweir        Border = TRUE ;
75cdf0e10cSrcweir        PassWord = TRUE ;
76cdf0e10cSrcweir        Pos = MAP_APPFONT ( 57, 44 ) ;
77cdf0e10cSrcweir        Size = MAP_APPFONT ( 75, 12 ) ;
78cdf0e10cSrcweir    };
79cdf0e10cSrcweir    FixedLine GB_PASSWD_PASSWORD
80cdf0e10cSrcweir    {
81cdf0e10cSrcweir        Pos = MAP_APPFONT ( 6, 3 ) ;
82cdf0e10cSrcweir        Size = MAP_APPFONT ( 132, 8 ) ;
83cdf0e10cSrcweir        Text [ en-US ] = "Password" ;
84cdf0e10cSrcweir    };
85cdf0e10cSrcweir    FixedText FT_PASSWD_PASSWORD2
86cdf0e10cSrcweir    {
87cdf0e10cSrcweir        Pos = MAP_APPFONT ( 12, 30 ) ;
88cdf0e10cSrcweir        Size = MAP_APPFONT ( 42, 10 ) ;
89cdf0e10cSrcweir        Text [ en-US ] = "P~assword" ;
90cdf0e10cSrcweir    };
91cdf0e10cSrcweir    Edit ED_PASSWD_PASSWORD2
92cdf0e10cSrcweir    {
93cdf0e10cSrcweir        Border = TRUE ;
94cdf0e10cSrcweir        PassWord = TRUE ;
95cdf0e10cSrcweir        Pos = MAP_APPFONT ( 57, 29 ) ;
96cdf0e10cSrcweir        Size = MAP_APPFONT ( 75, 12 ) ;
97cdf0e10cSrcweir    };
98cdf0e10cSrcweir    FixedText FT_PASSWD_CONFIRM2
99cdf0e10cSrcweir    {
100cdf0e10cSrcweir        Pos = MAP_APPFONT ( 12, 45 ) ;
101cdf0e10cSrcweir        Size = MAP_APPFONT ( 42, 10 ) ;
102cdf0e10cSrcweir        Text [ en-US ] = "Confir~m" ;
103cdf0e10cSrcweir    };
104cdf0e10cSrcweir    Edit ED_PASSWD_CONFIRM2
105cdf0e10cSrcweir    {
106cdf0e10cSrcweir        Border = TRUE ;
107cdf0e10cSrcweir        PassWord = TRUE ;
108cdf0e10cSrcweir        Pos = MAP_APPFONT ( 57, 44 ) ;
109cdf0e10cSrcweir        Size = MAP_APPFONT ( 75, 12 ) ;
110cdf0e10cSrcweir    };
111cdf0e10cSrcweir    OKButton BTN_PASSWD_OK
112cdf0e10cSrcweir    {
113cdf0e10cSrcweir        Disable = TRUE ;
114cdf0e10cSrcweir        Pos = MAP_APPFONT ( 144, 6 ) ;
115cdf0e10cSrcweir        Size = MAP_APPFONT ( 50, 14 ) ;
116cdf0e10cSrcweir        DefButton = TRUE ;
117cdf0e10cSrcweir    };
118cdf0e10cSrcweir    CancelButton BTN_PASSWD_CANCEL
119cdf0e10cSrcweir    {
120cdf0e10cSrcweir        Pos = MAP_APPFONT ( 144, 23 ) ;
121cdf0e10cSrcweir        Size = MAP_APPFONT ( 50, 14 ) ;
122cdf0e10cSrcweir    };
123cdf0e10cSrcweir    HelpButton BTN_PASSWD_HELP
124cdf0e10cSrcweir    {
125cdf0e10cSrcweir        Pos = MAP_APPFONT ( 144, 43 ) ;
126cdf0e10cSrcweir        Size = MAP_APPFONT ( 50, 14 ) ;
127cdf0e10cSrcweir    };
128cdf0e10cSrcweir    String TEXT_PASSWD
129cdf0e10cSrcweir    {
130cdf0e10cSrcweir        Text [ en-US ] = "Password" ;
131cdf0e10cSrcweir    };
132cdf0e10cSrcweir};
133cdf0e10cSrcweir
134*e6cdf3afSmseidel// ********************************************************************** EOF
135