/* -*- 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/. */ #ifndef INCLUDED_SC_INC_TYPES_HXX #define INCLUDED_SC_INC_TYPES_HXX #include #include #include class ScMatrix; // The typedefs typedef sal_Int32 SCROW; typedef sal_Int16 SCCOL; typedef sal_Int16 SCTAB; typedef sal_Int32 SCCOLROW; ///< a type capable of holding either SCCOL or SCROW // temporarily signed typedefs typedef sal_Int32 SCsROW; typedef sal_Int16 SCsCOL; typedef sal_Int16 SCsTAB; typedef sal_Int32 SCsCOLROW; typedef ::boost::intrusive_ptr ScMatrixRef; typedef ::boost::intrusive_ptr ScConstMatrixRef; namespace formula { class FormulaToken; } typedef ::boost::intrusive_ptr ScTokenRef; typedef sal_uInt8 ScMatValType; const ScMatValType SC_MATVAL_VALUE = 0x00; const ScMatValType SC_MATVAL_BOOLEAN = 0x01; const ScMatValType SC_MATVAL_STRING = 0x02; const ScMatValType SC_MATVAL_EMPTY = SC_MATVAL_STRING | 0x04; // STRING plus flag const ScMatValType SC_MATVAL_EMPTYPATH = SC_MATVAL_EMPTY | 0x08; // EMPTY plus flag const ScMatValType SC_MATVAL_NONVALUE = SC_MATVAL_EMPTYPATH; // mask of all non-value bits struct ScFormulaCellGroup; typedef ::boost::intrusive_ptr ScFormulaCellGroupRef; /** * When vectorization is enabled, we could potentially mass-calculate a * series of formula token arrays in adjacent formula cells in one step, * provided that they all contain identical set of tokens. */ enum ScFormulaVectorState { FormulaVectorDisabled = 0, FormulaVectorEnabled, FormulaVectorCheckReference, FormulaVectorUnknown }; namespace sc { enum class MatrixEdge{ Nothing = 0, Inside = 1, Bottom = 2, Left = 4, Top = 8, Right = 16, Open = 32 }; // typed_flags, template outside of sc namespace enum GroupCalcState { GroupCalcDisabled = 0, GroupCalcEnabled, GroupCalcRunning, }; struct RangeMatrix { ScMatrixRef mpMat; sal_Int32 mnCol1; sal_Int32 mnRow1; sal_Int32 mnTab1; sal_Int32 mnCol2; sal_Int32 mnRow2; sal_Int32 mnTab2; RangeMatrix(); bool isRangeValid() const; }; enum AreaOverlapType { AreaInside, AreaPartialOverlap, AreaInsideOrOverlap, OneRowInsideArea, OneColumnInsideArea }; enum ListenerGroupType { ListenerSingle, ListenerGroup, ListenerBoth }; enum StartListeningType { ConvertToGroupListening, SingleCellListening, NoListening }; } namespace o3tl{ template<> struct typed_flags : o3tl::is_typed_flags {}; } #endif /* vim:set shiftwidth=4 softtabstop=4 expandtab: */