Stop leaking all ScPostIt instances.
[LibreOffice.git] / sc / source / ui / src / optsolver.src
blob477baad86a2fdd6232742685992e701d17fc5762
1 /* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
2 /*
3  * This file is part of the LibreOffice project.
4  *
5  * This Source Code Form is subject to the terms of the Mozilla Public
6  * License, v. 2.0. If a copy of the MPL was not distributed with this
7  * file, You can obtain one at http://mozilla.org/MPL/2.0/.
8  *
9  * This file incorporates work covered by the following license notice:
10  *
11  *   Licensed to the Apache Software Foundation (ASF) under one or more
12  *   contributor license agreements. See the NOTICE file distributed
13  *   with this work for additional information regarding copyright
14  *   ownership. The ASF licenses this file to you under the Apache
15  *   License, Version 2.0 (the "License"); you may not use this file
16  *   except in compliance with the License. You may obtain a copy of
17  *   the License at http://www.apache.org/licenses/LICENSE-2.0 .
18  */
20 #include "optsolver.hrc"
22 ModelessDialog RID_SCDLG_SOLVER_PROGRESS
24     OutputSize = TRUE ;
25     HelpId = HID_SC_SOLVER_PROGRESS ;
26     SVLook = TRUE ;
27     Size = MAP_APPFONT ( 118 , 72 ) ;
28     Moveable = TRUE ;
29     Closeable = FALSE ;
30     FixedText FT_PROGRESS
31     {
32         Pos = MAP_APPFONT ( 6 , 11 ) ;
33         Size = MAP_APPFONT ( 106 , 8 ) ;
34         Center = TRUE ;
35         Text [ en-US ] = "Solving in progress..." ;
36     };
37     FixedText FT_TIMELIMIT
38     {
39         Pos = MAP_APPFONT ( 6 , 25 ) ;
40         Size = MAP_APPFONT ( 106 , 8 ) ;
41         Center = TRUE ;
42         Text [ en-US ] = "(time limit # seconds)" ;
43     };
44     FixedLine FL_BUTTONS
45     {
46         Pos = MAP_APPFONT ( 0 , 41 ) ;
47         Size = MAP_APPFONT ( 118 , 8 ) ;
48     };
49     OKButton BTN_OK
50     {
51         Pos = MAP_APPFONT ( 34 , 52 ) ;
52         Size = MAP_APPFONT ( 50 , 14 ) ;
53         TabStop = TRUE ;
54         DefButton = TRUE ;
55     };
56     Text [ en-US ] = "Solving..." ;
60 ModalDialog RID_SCDLG_SOLVER_NOSOLUTION
62     OutputSize = TRUE ;
63     HelpId = HID_SC_SOLVER_NOSOLUTION ;
64     SVLook = TRUE ;
65     Size = MAP_APPFONT ( 118 , 72 ) ;
66     Moveable = TRUE ;
67     FixedText FT_NOSOLUTION
68     {
69         Pos = MAP_APPFONT ( 6 , 8 ) ;
70         Size = MAP_APPFONT ( 106 , 8 ) ;
71         Text [ en-US ] = "No solution was found." ;
72     };
73     FixedText FT_ERRORTEXT
74     {
75         Pos = MAP_APPFONT ( 6 , 22 ) ;
76         Size = MAP_APPFONT ( 106 , 16 ) ;
77         WordBreak = TRUE ;
78         // text is dynamic
79     };
80     FixedLine FL_BUTTONS
81     {
82         Pos = MAP_APPFONT ( 0 , 41 ) ;
83         Size = MAP_APPFONT ( 118 , 8 ) ;
84     };
85     OKButton BTN_OK
86     {
87         Pos = MAP_APPFONT ( 34 , 52 ) ;
88         Size = MAP_APPFONT ( 50 , 14 ) ;
89         TabStop = TRUE ;
90         DefButton = TRUE ;
91     };
92     Text [ en-US ] = "No Solution" ;
96 ModalDialog RID_SCDLG_SOLVER_SUCCESS
98     OutputSize = TRUE ;
99     HelpId = HID_SC_SOLVER_SUCCESS ;
100     SVLook = TRUE ;
101     Size = MAP_APPFONT ( 138 , 89 ) ;
102     Moveable = TRUE ;
103     FixedText FT_SUCCESS
104     {
105         Pos = MAP_APPFONT ( 6 , 8 ) ;
106         Size = MAP_APPFONT ( 126 , 8 ) ;
107         Text [ en-US ] = "Solving successfully finished." ;
108     };
109     FixedText FT_RESULT
110     {
111         Pos = MAP_APPFONT ( 6 , 22 ) ;
112         Size = MAP_APPFONT ( 126 , 8 ) ;
113         Text [ en-US ] = "Result:" ;
114     };
115     FixedText FT_QUESTION
116     {
117         Pos = MAP_APPFONT ( 6 , 36 ) ;
118         Size = MAP_APPFONT ( 126 , 16 ) ;
119         WordBreak = TRUE ;
120         Text [ en-US ] = "Do you want to keep the result or do you want to restore previous values?" ;
121     };
122     FixedLine FL_BUTTONS
123     {
124         Pos = MAP_APPFONT ( 0 , 58 ) ;
125         Size = MAP_APPFONT ( 138 , 8 ) ;
126     };
127     OKButton BTN_OK
128     {
129         Pos = MAP_APPFONT ( 6 , 69 ) ;
130         Size = MAP_APPFONT ( 60 , 14 ) ;
131         TabStop = TRUE ;
132         DefButton = TRUE ;
133         Text [ en-US ] = "Keep Result" ;
134     };
135     CancelButton BTN_CANCEL
136     {
137         Pos = MAP_APPFONT ( 72 , 69 ) ;
138         Size = MAP_APPFONT ( 60 , 14 ) ;
139         TabStop = TRUE ;
140         Text [ en-US ] = "Restore Previous" ;
141     };
142     Text [ en-US ] = "Solving Result" ;
145 /* vim:set shiftwidth=4 softtabstop=4 expandtab: */