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 "solvrdlg.hrc" 29ModelessDialog RID_SCDLG_SOLVER 30{ 31 OutputSize = TRUE ; 32 HelpId = CMD_SID_OPENDLG_SOLVE ; 33 Hide = TRUE ; 34 SVLook = TRUE ; 35 Size = MAP_APPFONT ( 222 , 64 ) ; 36 Text [ en-US ] = "Goal Seek" ; 37 Moveable = TRUE ; 38 Closeable = FALSE ; 39 FixedText FT_FORMULACELL 40 { 41 Pos = MAP_APPFONT ( 12 , 16 ) ; 42 Size = MAP_APPFONT ( 50 , 8 ) ; 43 Text [ en-US ] = "~Formula cell" ; 44 }; 45 Edit ED_FORMULACELL 46 { 47 HelpID = "sc:Edit:RID_SCDLG_SOLVER:ED_FORMULACELL"; 48 Border = TRUE ; 49 Pos = MAP_APPFONT ( 64 , 14 ) ; 50 Size = MAP_APPFONT ( 79 , 12 ) ; 51 TabStop = TRUE ; 52 }; 53 ImageButton RB_FORMULACELL 54 { 55 HelpID = "sc:ImageButton:RID_SCDLG_SOLVER:RB_FORMULACELL"; 56 Pos = MAP_APPFONT ( 145 , 13 ) ; 57 Size = MAP_APPFONT ( 13 , 15 ) ; 58 TabStop = FALSE ; 59 QuickHelpText [ en-US ] = "Shrink" ; 60 }; 61 FixedText FT_TARGETVAL 62 { 63 Pos = MAP_APPFONT ( 12 , 32 ) ; 64 Size = MAP_APPFONT ( 50 , 8 ) ; 65 Text [ en-US ] = "Target ~value" ; 66 }; 67 Edit ED_TARGETVAL 68 { 69 HelpID = "sc:Edit:RID_SCDLG_SOLVER:ED_TARGETVAL"; 70 Border = TRUE ; 71 Pos = MAP_APPFONT ( 64 , 30 ) ; 72 Size = MAP_APPFONT ( 93 , 12 ) ; 73 TabStop = TRUE ; 74 }; 75 FixedText FT_VARCELL 76 { 77 Pos = MAP_APPFONT ( 12 , 48 ) ; 78 Size = MAP_APPFONT ( 50 , 8 ) ; 79 Text [ en-US ] = "Variable ~cell" ; 80 }; 81 Edit ED_VARCELL 82 { 83 HelpID = "sc:Edit:RID_SCDLG_SOLVER:ED_VARCELL"; 84 Border = TRUE ; 85 Pos = MAP_APPFONT ( 64 , 46 ) ; 86 Size = MAP_APPFONT ( 79 , 12 ) ; 87 TabStop = TRUE ; 88 }; 89 ImageButton RB_VARCELL 90 { 91 HelpID = "sc:ImageButton:RID_SCDLG_SOLVER:RB_VARCELL"; 92 Pos = MAP_APPFONT ( 145 , 45 ) ; 93 Size = MAP_APPFONT ( 13 , 15 ) ; 94 TabStop = FALSE ; 95 QuickHelpText [ en-US ] = "Shrink" ; 96 }; 97 FixedLine FL_VARIABLES 98 { 99 Pos = MAP_APPFONT ( 6 , 3 ) ; 100 Size = MAP_APPFONT ( 154 , 8 ) ; 101 Text [ en-US ] = "Default settings" ; 102 }; 103 OKButton BTN_OK 104 { 105 DefButton = TRUE ; 106 Pos = MAP_APPFONT ( 166 , 6 ) ; 107 Size = MAP_APPFONT ( 50 , 14 ) ; 108 TabStop = TRUE ; 109 }; 110 CancelButton BTN_CANCEL 111 { 112 Pos = MAP_APPFONT ( 166 , 23 ) ; 113 Size = MAP_APPFONT ( 50 , 14 ) ; 114 TabStop = TRUE ; 115 }; 116 HelpButton BTN_HELP 117 { 118 Pos = MAP_APPFONT ( 166 , 43 ) ; 119 Size = MAP_APPFONT ( 50 , 14 ) ; 120 TabStop = TRUE ; 121 }; 122 String STR_INVALIDVAL 123 { 124 /* ### ACHTUNG: Neuer Text in Resource? Unzul�ssiger Zielwert! : Unzul�ssiger Zielwert! */ 125 Text [ en-US ] = "Invalid target value." ; 126 }; 127 String STR_INVALIDVAR 128 { 129 Text [ en-US ] = "Undefined name for variable cell." ; 130 }; 131 String STR_INVALIDFORM 132 { 133 Text [ en-US ] = "Undefined name as formula cell." ; 134 }; 135 String STR_NOFORMULA 136 { 137 /* ### ACHTUNG: Neuer Text in Resource? Zelle mu� eine Formel enthalten! : Zelle mu� eine Formel enthalten! */ 138 Text [ en-US ] = "Cell must contain a formula." ; 139 }; 140}; 141