tdf#146549 sw: Make the formatting toolbar visible
[LibreOffice.git] / offapi / com / sun / star / sheet / SolverStatus.idl
blobec3fb2588a4ec7549a0c0ce174269cac783fe175
1 /* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
2 /*
3 * This file is part of the LibreOffice project.
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/.
9 */
12 module com { module sun { module star { module sheet {
15 /** Describes the status reported by the solver
16 * Used in com::sun::star::sheet::XSolverSettings
18 * @since LibreOffice 25.2
20 constants SolverStatus
22 /// No status to report. Happens when the solver has not been called.
23 const byte NONE = 0;
25 /// The solver finished running and a solution was successfully found
26 const byte SOLUTION_FOUND = 1;
28 /// A parse error occurred after running the solver
29 const byte PARSE_ERROR = 2;
31 /// An error occurred while loading or running the solver
32 const byte ENGINE_ERROR = 3;
34 /// The solver finished running but a solution was not found
35 const byte SOLUTION_NOT_FOUND = 4;
39 }; }; }; };
41 /* vim:set shiftwidth=4 softtabstop=4 expandtab: */