Version 6.4.0.3, tag libreoffice-6.4.0.3
[LibreOffice.git] / sc / source / filter / inc / colrowst.hxx
blobd9838fb141c31b50763b9d08efd2f42532879574
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 * This file incorporates work covered by the following license notice:
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 .
20 #ifndef INCLUDED_SC_SOURCE_FILTER_INC_COLROWST_HXX
21 #define INCLUDED_SC_SOURCE_FILTER_INC_COLROWST_HXX
23 #include "xiroot.hxx"
24 #include <mdds/flat_segment_tree.hpp>
25 #include <o3tl/typed_flags_set.hxx>
27 enum class ExcColRowFlags : sal_uInt8 {
28 NONE = 0x00,
29 Used = 0x01,
30 Default = 0x02,
31 Hidden = 0x04,
32 Man = 0x08,
34 namespace o3tl {
35 template<> struct typed_flags<ExcColRowFlags> : is_typed_flags<ExcColRowFlags, 0x0f> {};
39 class XclImpColRowSettings : protected XclImpRoot
41 public:
42 explicit XclImpColRowSettings( const XclImpRoot& rRoot );
43 virtual ~XclImpColRowSettings() override;
45 void SetDefWidth( sal_uInt16 nDefWidth, bool bStdWidthRec = false );
46 void SetWidthRange( SCCOL nCol1, SCCOL nCol2, sal_uInt16 nWidth );
47 void HideCol( SCCOL nCol );
48 void HideColRange( SCCOL nCol1, SCCOL nCol2 );
50 void SetDefHeight( sal_uInt16 nDefHeight, sal_uInt16 nFlags );
51 void SetHeight( SCROW nRow, sal_uInt16 nHeight );
52 void SetRowSettings( SCROW nRow, sal_uInt16 nHeight, sal_uInt16 nFlags );
53 void SetManualRowHeight( SCROW nScRow );
55 void SetDefaultXF( SCCOL nScCol1, SCCOL nScCol2, sal_uInt16 nXFIndex );
56 /** Inserts all column and row settings of the specified sheet, except the hidden flags. */
57 void Convert( SCTAB nScTab );
58 /** Sets the HIDDEN flags at all hidden columns and rows in the specified sheet. */
59 void ConvertHiddenFlags( SCTAB nScTab );
61 private:
62 void ApplyColFlag(SCCOL nCol, ExcColRowFlags nNewVal);
63 bool GetColFlag(SCCOL nCol, ExcColRowFlags nMask) const;
65 private:
66 typedef ::mdds::flat_segment_tree<SCROW, sal_uInt16> WidthHeightStoreType;
67 typedef ::mdds::flat_segment_tree<SCROW, ExcColRowFlags> ColRowFlagsType;
68 typedef ::mdds::flat_segment_tree<SCROW, bool> RowHiddenType;
70 WidthHeightStoreType maColWidths;
71 ColRowFlagsType maColFlags;
72 WidthHeightStoreType maRowHeights;
73 ColRowFlagsType maRowFlags;
74 RowHiddenType maHiddenRows;
76 SCROW mnLastScRow;
78 sal_uInt16 mnDefWidth; /// Default width from DEFCOLWIDTH or STANDARDWIDTH record.
79 sal_uInt16 mnDefHeight; /// Default height from DEFAULTROWHEIGHT record.
80 sal_uInt16 mnDefRowFlags; /// Default row flags from DEFAULTROWHEIGHT record.
82 bool mbHasStdWidthRec; /// true = Width from STANDARDWIDTH (overrides DEFCOLWIDTH record).
83 bool mbHasDefHeight; /// true = mnDefHeight and mnDefRowFlags are valid.
84 bool mbDirty;
87 #endif
89 /* vim:set shiftwidth=4 softtabstop=4 expandtab: */