1/************************************************************************* 2 * 3 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. 4 * 5 * Copyright 2000, 2010 Oracle and/or its affiliates. 6 * 7 * OpenOffice.org - a multi-platform office productivity suite 8 * 9 * This file is part of OpenOffice.org. 10 * 11 * OpenOffice.org is free software: you can redistribute it and/or modify 12 * it under the terms of the GNU Lesser General Public License version 3 13 * only, as published by the Free Software Foundation. 14 * 15 * OpenOffice.org is distributed in the hope that it will be useful, 16 * but WITHOUT ANY WARRANTY; without even the implied warranty of 17 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 18 * GNU Lesser General Public License version 3 for more details 19 * (a copy is included in the LICENSE file that accompanied this code). 20 * 21 * You should have received a copy of the GNU Lesser General Public License 22 * version 3 along with OpenOffice.org. If not, see 23 * <http://www.openoffice.org/license.html> 24 * for a copy of the LGPLv3 License. 25 * 26 ************************************************************************/ 27 28 // include --------------------------------------------------------------- 29#include "helpid.hrc" 30#include "dialog.hrc" 31#include "passwd.hrc" 32 33 // DLG_PASSWD ------------------------------------------------------------ 34ModalDialog DLG_PASSWD 35{ 36 HelpId = HID_PASSWD ; 37 OutputSize = TRUE ; 38 SVLook = TRUE ; 39 Size = MAP_APPFONT( 200, 68 ); 40 Text [ en-US ] = "Enter Password" ; 41 Moveable = TRUE ; 42 FixedText FT_PASSWD_USER 43 { 44 Pos = MAP_APPFONT( 12, 15 ); 45 Size = MAP_APPFONT( 42, 10 ); 46 Text [ en-US ] = "~User"; 47 }; 48 Edit ED_PASSWD_USER 49 { 50 HelpID = "sfx2:Edit:DLG_PASSWD:ED_PASSWD_USER"; 51 Border = TRUE; 52 Pos = MAP_APPFONT( 57, 14 ); 53 Size = MAP_APPFONT( 75, 12 ); 54 }; 55 FixedText FT_PASSWD_PASSWORD 56 { 57 Pos = MAP_APPFONT( 12, 30 ); 58 Size = MAP_APPFONT( 42, 10 ); 59 Text [ en-US ] = "~Password"; 60 }; 61 Edit ED_PASSWD_PASSWORD 62 { 63 HelpID = "sfx2:Edit:DLG_PASSWD:ED_PASSWD_PASSWORD"; 64 Border = TRUE; 65 PassWord = TRUE; 66 Pos = MAP_APPFONT( 57, 29 ); 67 Size = MAP_APPFONT( 75, 12 ); 68 }; 69 FixedText FT_PASSWD_CONFIRM 70 { 71 Pos = MAP_APPFONT( 12, 45 ); 72 Size = MAP_APPFONT( 42, 10 ); 73 Text [ en-US ] = "~Confirm"; 74 }; 75 Edit ED_PASSWD_CONFIRM 76 { 77 HelpID = "sfx2:Edit:DLG_PASSWD:ED_PASSWD_CONFIRM"; 78 Border = TRUE; 79 PassWord = TRUE; 80 Pos = MAP_APPFONT( 57, 44 ); 81 Size = MAP_APPFONT( 75, 12 ); 82 }; 83 FixedLine GB_PASSWD_PASSWORD 84 { 85 Pos = MAP_APPFONT( 6, 3 ); 86 Size = MAP_APPFONT( 132, 8 ); 87 Text [ en-US ] = "Password" ; 88 }; 89 FixedText FT_PASSWD_PASSWORD2 90 { 91 Pos = MAP_APPFONT( 12, 30 ); 92 Size = MAP_APPFONT( 42, 10 ); 93 Text [ en-US ] = "P~assword"; 94 }; 95 Edit ED_PASSWD_PASSWORD2 96 { 97 Border = TRUE; 98 PassWord = TRUE; 99 Pos = MAP_APPFONT( 57, 29 ); 100 Size = MAP_APPFONT( 75, 12 ); 101 }; 102 FixedText FT_PASSWD_CONFIRM2 103 { 104 Pos = MAP_APPFONT( 12, 45 ); 105 Size = MAP_APPFONT( 42, 10 ); 106 Text [ en-US ] = "Confir~m"; 107 }; 108 Edit ED_PASSWD_CONFIRM2 109 { 110 Border = TRUE; 111 PassWord = TRUE; 112 Pos = MAP_APPFONT( 57, 44 ); 113 Size = MAP_APPFONT( 75, 12 ); 114 }; 115 OKButton BTN_PASSWD_OK 116 { 117 Disable = TRUE; 118 Pos = MAP_APPFONT( 144, 6 ); 119 Size = MAP_APPFONT( 50, 14 ); 120 DefButton = TRUE; 121 }; 122 CancelButton BTN_PASSWD_CANCEL 123 { 124 Pos = MAP_APPFONT( 144, 23 ); 125 Size = MAP_APPFONT( 50, 14 ); 126 }; 127 HelpButton BTN_PASSWD_HELP 128 { 129 Pos = MAP_APPFONT( 144, 43 ); 130 Size = MAP_APPFONT( 50, 14 ); 131 }; 132 String TEXT_PASSWD 133 { 134 Text [ en-US ] = "Password" ; 135 }; 136 137}; 138 139