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