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 "tabopdlg.hrc" 29ModelessDialog RID_SCDLG_TABOP 30{ 31 OutputSize = TRUE ; 32 HelpId = CMD_SID_OPENDLG_TABOP ; 33 Hide = TRUE ; 34 SVLook = TRUE ; 35 Size = MAP_APPFONT ( 240 , 64 ) ; 36 Text [ en-US ] = "Multiple operations" ; 37 Moveable = TRUE ; 38 Closeable = FALSE ; 39 FixedText FT_FORMULARANGE 40 { 41 Pos = MAP_APPFONT ( 12 , 16 ) ; 42 Size = MAP_APPFONT ( 68 , 8 ) ; 43 Text [ en-US ] = "~Formulas" ; 44 }; 45 Edit ED_FORMULARANGE 46 { 47 HelpID = "sc:Edit:RID_SCDLG_TABOP:ED_FORMULARANGE"; 48 Border = TRUE ; 49 Pos = MAP_APPFONT ( 82 , 14 ) ; 50 Size = MAP_APPFONT ( 79 , 12 ) ; 51 }; 52 ImageButton RB_FORMULARANGE 53 { 54 HelpID = "sc:ImageButton:RID_SCDLG_TABOP:RB_FORMULARANGE"; 55 Pos = MAP_APPFONT ( 163 , 13 ) ; 56 Size = MAP_APPFONT ( 13 , 15 ) ; 57 TabStop = FALSE ; 58 QuickHelpText [ en-US ] = "Shrink" ; 59 }; 60 FixedText FT_ROWCELL 61 { 62 Pos = MAP_APPFONT ( 12 , 32 ) ; 63 Size = MAP_APPFONT ( 70 , 8 ) ; 64 Text [ en-US ] = "~Row input cell" ; 65 }; 66 Edit ED_ROWCELL 67 { 68 HelpID = "sc:Edit:RID_SCDLG_TABOP:ED_ROWCELL"; 69 Border = TRUE ; 70 Pos = MAP_APPFONT ( 82 , 30 ) ; 71 Size = MAP_APPFONT ( 79 , 12 ) ; 72 }; 73 ImageButton RB_ROWCELL 74 { 75 HelpID = "sc:ImageButton:RID_SCDLG_TABOP:RB_ROWCELL"; 76 Pos = MAP_APPFONT ( 163 , 29 ) ; 77 Size = MAP_APPFONT ( 13 , 15 ) ; 78 TabStop = FALSE ; 79 QuickHelpText [ en-US ] = "Shrink" ; 80 }; 81 FixedText FT_COLCELL 82 { 83 Pos = MAP_APPFONT ( 12 , 48 ) ; 84 Size = MAP_APPFONT ( 70 , 8 ) ; 85 Text [ en-US ] = "~Column input cell" ; 86 }; 87 Edit ED_COLCELL 88 { 89 HelpID = "sc:Edit:RID_SCDLG_TABOP:ED_COLCELL"; 90 Border = TRUE ; 91 Pos = MAP_APPFONT ( 82 , 46 ) ; 92 Size = MAP_APPFONT ( 79 , 12 ) ; 93 }; 94 ImageButton RB_COLCELL 95 { 96 HelpID = "sc:ImageButton:RID_SCDLG_TABOP:RB_COLCELL"; 97 Pos = MAP_APPFONT ( 163 , 45 ) ; 98 Size = MAP_APPFONT ( 13 , 15 ) ; 99 TabStop = FALSE ; 100 QuickHelpText [ en-US ] = "Shrink" ; 101 }; 102 FixedLine FL_VARIABLES 103 { 104 Pos = MAP_APPFONT ( 6 , 3 ) ; 105 Size = MAP_APPFONT ( 172 , 8 ) ; 106 Text [ en-US ] = "Default settings" ; 107 }; 108 OKButton BTN_OK 109 { 110 Pos = MAP_APPFONT ( 184 , 6 ) ; 111 Size = MAP_APPFONT ( 50 , 14 ) ; 112 DefButton = TRUE ; 113 }; 114 CancelButton BTN_CANCEL 115 { 116 Pos = MAP_APPFONT ( 184 , 23 ) ; 117 Size = MAP_APPFONT ( 50 , 14 ) ; 118 }; 119 HelpButton BTN_HELP 120 { 121 Pos = MAP_APPFONT ( 184 , 43 ) ; 122 Size = MAP_APPFONT ( 50 , 14 ) ; 123 }; 124 String STR_NOFORMULA 125 { 126 Text [ en-US ] = "No formula specified." ; 127 }; 128 String STR_NOCOLROW 129 { 130 Text [ en-US ] = "Neither row or column specified." ; 131 }; 132 String STR_WRONGFORMULA 133 { 134 Text [ en-US ] = "Undefined name or range." ; 135 }; 136 String STR_WRONGROWCOL 137 { 138 Text [ en-US ] = "Undefined name or wrong cell reference." ; 139 }; 140 String STR_NOCOLFORMULA 141 { 142 Text [ en-US ] = "Formulas don't form a column." ; 143 }; 144 String STR_NOROWFORMULA 145 { 146 Text [ en-US ] = "Formulas don't form a row." ; 147 }; 148}; 149