summaryrefslogtreecommitdiff
path: root/sc/source/ui/src/optsolver.src
blob: 1de4b5e4911798de22a8baf6fd246a91876a4f72 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
/* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
/*
 * This file is part of the LibreOffice project.
 *
 * This Source Code Form is subject to the terms of the Mozilla Public
 * License, v. 2.0. If a copy of the MPL was not distributed with this
 * file, You can obtain one at http://mozilla.org/MPL/2.0/.
 *
 * This file incorporates work covered by the following license notice:
 *
 *   Licensed to the Apache Software Foundation (ASF) under one or more
 *   contributor license agreements. See the NOTICE file distributed
 *   with this work for additional information regarding copyright
 *   ownership. The ASF licenses this file to you under the Apache
 *   License, Version 2.0 (the "License"); you may not use this file
 *   except in compliance with the License. You may obtain a copy of
 *   the License at http://www.apache.org/licenses/LICENSE-2.0 .
 */

#include "optsolver.hrc"

ModelessDialog RID_SCDLG_SOLVER_PROGRESS
{
    OutputSize = TRUE ;
    HelpId = HID_SC_SOLVER_PROGRESS ;
    SVLook = TRUE ;
    Size = MAP_APPFONT ( 118 , 72 ) ;
    Moveable = TRUE ;
    Closeable = FALSE ;
    FixedText FT_PROGRESS
    {
        Pos = MAP_APPFONT ( 6 , 11 ) ;
        Size = MAP_APPFONT ( 106 , 8 ) ;
        Center = TRUE ;
        Text [ en-US ] = "Solving in progress..." ;
    };
    FixedText FT_TIMELIMIT
    {
        Pos = MAP_APPFONT ( 6 , 25 ) ;
        Size = MAP_APPFONT ( 106 , 8 ) ;
        Center = TRUE ;
        Text [ en-US ] = "(time limit # seconds)" ;
    };
    FixedLine FL_BUTTONS
    {
        Pos = MAP_APPFONT ( 0 , 41 ) ;
        Size = MAP_APPFONT ( 118 , 8 ) ;
    };
    OKButton BTN_OK
    {
        Pos = MAP_APPFONT ( 34 , 52 ) ;
        Size = MAP_APPFONT ( 50 , 14 ) ;
        TabStop = TRUE ;
        DefButton = TRUE ;
    };
    Text [ en-US ] = "Solving..." ;
};


ModalDialog RID_SCDLG_SOLVER_SUCCESS
{
    OutputSize = TRUE ;
    HelpId = HID_SC_SOLVER_SUCCESS ;
    SVLook = TRUE ;
    Size = MAP_APPFONT ( 138 , 89 ) ;
    Moveable = TRUE ;
    FixedText FT_SUCCESS
    {
        Pos = MAP_APPFONT ( 6 , 8 ) ;
        Size = MAP_APPFONT ( 126 , 8 ) ;
        Text [ en-US ] = "Solving successfully finished." ;
    };
    FixedText FT_RESULT
    {
        Pos = MAP_APPFONT ( 6 , 22 ) ;
        Size = MAP_APPFONT ( 126 , 8 ) ;
        Text [ en-US ] = "Result:" ;
    };
    FixedText FT_QUESTION
    {
        Pos = MAP_APPFONT ( 6 , 36 ) ;
        Size = MAP_APPFONT ( 126 , 16 ) ;
        WordBreak = TRUE ;
        Text [ en-US ] = "Do you want to keep the result or do you want to restore previous values?" ;
    };
    FixedLine FL_BUTTONS
    {
        Pos = MAP_APPFONT ( 0 , 58 ) ;
        Size = MAP_APPFONT ( 138 , 8 ) ;
    };
    OKButton BTN_OK
    {
        Pos = MAP_APPFONT ( 6 , 69 ) ;
        Size = MAP_APPFONT ( 60 , 14 ) ;
        TabStop = TRUE ;
        DefButton = TRUE ;
        Text [ en-US ] = "Keep Result" ;
    };
    CancelButton BTN_CANCEL
    {
        Pos = MAP_APPFONT ( 72 , 69 ) ;
        Size = MAP_APPFONT ( 60 , 14 ) ;
        TabStop = TRUE ;
        Text [ en-US ] = "Restore Previous" ;
    };
    Text [ en-US ] = "Solving Result" ;
};

/* vim:set shiftwidth=4 softtabstop=4 expandtab: */