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 "fldui.hrc" 29#include "inpdlg.hrc" 30#include "helpid.h" 31ModalDialog DLG_FLD_INPUT 32{ 33 HelpID = HID_FLD_INPUT ; 34 OutputSize = TRUE ; 35 Hide = TRUE ; 36 SVLook = TRUE ; 37 Size = MAP_APPFONT ( 194 , 119 ) ; 38 Text [ en-US ] = "Input Field" ; 39 Moveable = TRUE ; 40 /* FixedText FT_LABEL 41 { 42 Pos = MAP_APPFONT ( 12 , 14 ) ; 43 Size = MAP_APPFONT ( 115 , 8 ) ; 44 Text [ en-US ] = "Input" ; 45 Left = TRUE ; 46 };*/ 47 Edit ED_LABEL 48 { 49 HelpID = "sw:Edit:DLG_FLD_INPUT:ED_LABEL"; 50 Border = TRUE ; 51 Pos = MAP_APPFONT ( 12 , 14 ) ; 52 Size = MAP_APPFONT ( 115 , 12 ) ; 53 TabStop = TRUE ; 54 Left = TRUE ; 55 Text [ en-US ] = "Input" ; 56 Readonly = TRUE ; 57 }; 58 MultiLineEdit ED_EDIT 59 { 60 HelpID = "sw:MultiLineEdit:DLG_FLD_INPUT:ED_EDIT"; 61 Border = TRUE ; 62 Pos = MAP_APPFONT ( 12 , 32 ) ; 63 Size = MAP_APPFONT ( 115 , 72 ) ; 64 TabStop = TRUE ; 65 Left = TRUE ; 66 }; 67 FixedLine FL_EDIT 68 { 69 Pos = MAP_APPFONT ( 6 , 3 ) ; 70 Size = MAP_APPFONT ( 127 , 8 ) ; 71 Text [ en-US ] = "Edit" ; 72 }; 73 OKButton BT_OK 74 { 75 Pos = MAP_APPFONT ( 139 , 6 ) ; 76 Size = MAP_APPFONT ( 50 , 15 ) ; 77 TabStop = TRUE ; 78 DefButton = TRUE ; 79 }; 80 CancelButton BT_CANCEL 81 { 82 Pos = MAP_APPFONT ( 139 , 23 ) ; 83 Size = MAP_APPFONT ( 50 , 15 ) ; 84 TabStop = TRUE ; 85 }; 86 PushButton PB_NEXT 87 { 88 HelpID = "sw:PushButton:DLG_FLD_INPUT:PB_NEXT"; 89 Pos = MAP_APPFONT ( 139 , 40 ) ; 90 Size = MAP_APPFONT ( 50 , 15 ) ; 91 TabStop = TRUE ; 92 Hide = TRUE ; 93 Text [ en-US ] = "~Next" ; 94 }; 95 HelpButton PB_HELP 96 { 97 Pos = MAP_APPFONT ( 139 , 60 ) ; 98 Size = MAP_APPFONT ( 50 , 15 ) ; 99 TabStop = TRUE ; 100 }; 101}; 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135