xref: /aoo4110/main/sc/source/ui/src/solveroptions.src (revision b1cdbd2c)
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
23
24#include "solveroptions.hrc"
25
26ModalDialog RID_SCDLG_SOLVEROPTIONS
27{
28    OutputSize = TRUE ;
29    HelpId = HID_SC_SOLVEROPTIONS ;
30    SVLook = TRUE ;
31    Size = MAP_APPFONT ( 218 , 156 ) ;
32    Moveable = TRUE ;
33    FixedText FT_ENGINE
34    {
35        Pos = MAP_APPFONT ( 6 , 8 ) ;
36        Size = MAP_APPFONT ( 59 , 8 ) ;
37        Text [ en-US ] = "Solver engine" ;
38    };
39    ListBox LB_ENGINE
40    {
41        HelpID = "sc:ListBox:RID_SCDLG_SOLVEROPTIONS:LB_ENGINE";
42        Border = TRUE ;
43        Pos = MAP_APPFONT ( 67 , 6 ) ;
44        Size = MAP_APPFONT ( 145 , 90 ) ;
45        TabStop = TRUE ;
46        DropDown = TRUE ;
47    };
48    FixedText FT_SETTINGS
49    {
50        Pos = MAP_APPFONT ( 6 , 24 ) ;
51        Size = MAP_APPFONT ( 156 , 8 ) ;
52        Text [ en-US ] = "Settings:" ;
53    };
54    Control LB_SETTINGS
55    {
56        Border = TRUE ;
57        Pos = MAP_APPFONT ( 6 , 35 ) ;
58        Size = MAP_APPFONT ( 206 , 67 ) ;
59        TabStop = TRUE ;
60    };
61    PushButton BTN_EDIT
62    {
63        HelpID = "sc:PushButton:RID_SCDLG_SOLVEROPTIONS:BTN_EDIT";
64        Pos = MAP_APPFONT ( 6 , 108 ) ;
65        Size = MAP_APPFONT ( 50 , 14 ) ;
66        TabStop = TRUE ;
67        Text [ en-US ] = "Edit..." ;
68    };
69    FixedLine FL_BUTTONS
70    {
71        Pos = MAP_APPFONT ( 0 , 125 ) ;
72        Size = MAP_APPFONT ( 218 , 8 ) ;
73    };
74    HelpButton BTN_HELP
75    {
76        Pos = MAP_APPFONT ( 6 , 136 ) ;
77        Size = MAP_APPFONT ( 50 , 14 ) ;
78        TabStop = TRUE ;
79    };
80    OKButton BTN_OK
81    {
82        Pos = MAP_APPFONT ( 106 , 136 ) ;
83        Size = MAP_APPFONT ( 50 , 14 ) ;
84        TabStop = TRUE ;
85        DefButton = TRUE ;
86    };
87    CancelButton BTN_CANCEL
88    {
89        Pos = MAP_APPFONT ( 162 , 136 ) ;
90        Size = MAP_APPFONT ( 50 , 14 ) ;
91        TabStop = TRUE ;
92    };
93    Text [ en-US ] = "Options" ;
94};
95
96
97ModalDialog RID_SCDLG_SOLVER_INTEGER
98{
99    OutputSize = TRUE ;
100    HelpId = HID_SC_SOLVER_INTEGER ;
101    SVLook = TRUE ;
102    Size = MAP_APPFONT ( 118 , 76 ) ;
103    Moveable = TRUE ;
104    FixedText FT_OPTIONNAME
105    {
106        Pos = MAP_APPFONT ( 6 , 8 ) ;
107        Size = MAP_APPFONT ( 106 , 16 ) ;
108        WordBreak = TRUE ;
109        // text is dynamic
110    };
111    NumericField NF_VALUE
112    {
113        HelpID = "sc:NumericField:RID_SCDLG_SOLVER_INTEGER:NF_VALUE";
114        Border = TRUE ;
115        Pos = MAP_APPFONT ( 6 , 27 ) ;
116        Size = MAP_APPFONT ( 30 , 12 ) ;
117        TabStop = TRUE ;
118        Spin = TRUE ;
119        SpinSize = 1 ;
120        Repeat = TRUE ;
121        Minimum = -2147483648 ;
122        Maximum = 2147483647 ;
123        First = 0 ;
124        Last = 100 ;
125    };
126    FixedLine FL_BUTTONS
127    {
128        Pos = MAP_APPFONT ( 0 , 45 ) ;
129        Size = MAP_APPFONT ( 118 , 8 ) ;
130    };
131    OKButton BTN_OK
132    {
133        Pos = MAP_APPFONT ( 6 , 56 ) ;
134        Size = MAP_APPFONT ( 50 , 14 ) ;
135        TabStop = TRUE ;
136        DefButton = TRUE ;
137    };
138    CancelButton BTN_CANCEL
139    {
140        Pos = MAP_APPFONT ( 62 , 56 ) ;
141        Size = MAP_APPFONT ( 50 , 14 ) ;
142        TabStop = TRUE ;
143    };
144    Text [ en-US ] = "Edit Setting" ;
145};
146
147ModalDialog RID_SCDLG_SOLVER_DOUBLE
148{
149    OutputSize = TRUE ;
150    HelpId = HID_SC_SOLVER_DOUBLE ;
151    SVLook = TRUE ;
152    Size = MAP_APPFONT ( 118 , 76 ) ;
153    Moveable = TRUE ;
154    FixedText FT_OPTIONNAME
155    {
156        Pos = MAP_APPFONT ( 6 , 8 ) ;
157        Size = MAP_APPFONT ( 106 , 16 ) ;
158        WordBreak = TRUE ;
159        // text is dynamic
160    };
161    Edit ED_VALUE
162    {
163        HelpID = "sc:Edit:RID_SCDLG_SOLVER_DOUBLE:ED_VALUE";
164        Border = TRUE ;
165        Pos = MAP_APPFONT ( 6 , 27 ) ;
166        Size = MAP_APPFONT ( 50 , 12 ) ;
167        TabStop = TRUE ;
168    };
169    FixedLine FL_BUTTONS
170    {
171        Pos = MAP_APPFONT ( 0 , 45 ) ;
172        Size = MAP_APPFONT ( 118 , 8 ) ;
173    };
174    OKButton BTN_OK
175    {
176        Pos = MAP_APPFONT ( 6 , 56 ) ;
177        Size = MAP_APPFONT ( 50 , 14 ) ;
178        TabStop = TRUE ;
179        DefButton = TRUE ;
180    };
181    CancelButton BTN_CANCEL
182    {
183        Pos = MAP_APPFONT ( 62 , 56 ) ;
184        Size = MAP_APPFONT ( 50 , 14 ) ;
185        TabStop = TRUE ;
186    };
187    Text [ en-US ] = "Edit Setting" ;
188};
189
190