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_PASSWORDDLG_HRC 30#include <passworddlg.hrc> 31#endif 32 33ModalDialog DLG_UUI_PASSWORD 34{ 35 HelpId = HID_DLG_PASSWORD_UUI ; 36 Border = TRUE ; 37 Moveable = TRUE ; 38 OutputSize = TRUE ; 39 SVLook = TRUE ; 40 Size = MAP_APPFONT ( 165, 95 ) ; 41 42 FixedText FT_PASSWORD 43 { 44 Pos = MAP_APPFONT ( 3, 6 ) ; 45 Size = MAP_APPFONT ( 159, 8 ) ; 46 WordBreak = TRUE ; 47 }; 48 49 Edit ED_PASSWORD 50 { 51 HelpID = "uui:Edit:DLG_UUI_PASSWORD:ED_PASSWORD" ; 52 Pos = MAP_APPFONT ( 3, 17 ) ; 53 Size = MAP_APPFONT ( 159, 12 ) ; 54 Border = TRUE ; 55 PassWord = TRUE ; 56 }; 57 58 FixedText FT_CONFIRM_PASSWORD 59 { 60 Pos = MAP_APPFONT ( 3, 34 ) ; 61 Size = MAP_APPFONT ( 159, 8 ) ; 62 WordBreak = TRUE ; 63 }; 64 65 Edit ED_CONFIRM_PASSWORD 66 { 67 HelpID = "uui:Edit:DLG_UUI_PASSWORD:ED_CONFIRM_PASSWORD" ; 68 Pos = MAP_APPFONT ( 3, 45 ) ; 69 Size = MAP_APPFONT ( 159, 12 ) ; 70 Border = TRUE ; 71 PassWord = TRUE ; 72 }; 73 74 FixedLine FL_FIXED_LINE_1 75 { 76 Pos = MAP_APPFONT ( 0, 63 ) ; 77 Size = MAP_APPFONT ( 165, 8 ) ; 78 }; 79 80 HelpButton BTN_PASSWORD_HELP 81 { 82 Pos = MAP_APPFONT ( 3, 76 ) ; 83 Size = MAP_APPFONT ( 50, 14 ) ; 84 }; 85 86 OKButton BTN_PASSWORD_OK 87 { 88 Pos = MAP_APPFONT ( 59, 76 ) ; 89 Size = MAP_APPFONT ( 50, 14 ) ; 90 DefButton = TRUE ; 91 }; 92 93 CancelButton BTN_PASSWORD_CANCEL 94 { 95 Pos = MAP_APPFONT ( 112, 76 ) ; 96 Size = MAP_APPFONT ( 50, 14 ) ; 97 }; 98 99 String STR_ENTER_PASSWORD_TO_OPEN 100 { 101 Text [ en-US ] = "Enter password to open file: \n" ; 102 }; 103 104 String STR_ENTER_PASSWORD_TO_MODIFY 105 { 106 Text [ en-US ] = "Enter password to modify file: \n" ; 107 }; 108 109 String STR_ENTER_SIMPLE_PASSWORD 110 { 111 Text [ en-US ] = "Enter password: " ; 112 }; 113 114 String STR_CONFIRM_SIMPLE_PASSWORD 115 { 116 Text [ en-US ] = "Confirm password: " ; 117 }; 118 119 String STR_TITLE_CREATE_PASSWORD 120 { 121 Text [ en-US ] = "Set Password" ; 122 }; 123 124 String STR_TITLE_ENTER_PASSWORD 125 { 126 Text [ en-US ] = "Enter Password" ; 127 }; 128 129 String STR_PASSWORD_MISMATCH 130 { 131 Text [ en-US ] = "The confirmation password did not match the password. Set the password again by entering the same password in both boxes." ; 132 }; 133}; 134 135// ********************************************************************** EOF 136