1 /* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
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/.
14 #include <tools/fract.hxx>
15 #include <vcl/vclptr.hxx>
16 #include <vcl/outdev.hxx>
18 #include "compressedarray.hxx"
21 using RowHeightsArray
= ScCompressedArray
<SCROW
, sal_uInt16
>;
25 class SC_DLLPUBLIC RowHeightContext
27 RowHeightsArray maHeights
;
33 VclPtr
<OutputDevice
> mpOutDev
;
35 sal_uInt16 mnExtraHeight
;
36 bool mbForceAutoSize
; /// whether to set height to optimal even when the manual height flag is set.
40 SCROW nMaxRow
, double fPPTX
, double fPPTY
, const Fraction
& rZoomX
, const Fraction
& rZoomY
,
41 OutputDevice
* pOutDev
);
45 double getPPTX() const { return mfPPTX
;}
46 double getPPTY() const { return mfPPTY
;}
47 const Fraction
& getZoomX() const { return maZoomX
;}
48 const Fraction
& getZoomY() const { return maZoomY
;}
50 OutputDevice
* getOutputDevice() { return mpOutDev
;}
52 void setExtraHeight( sal_uInt16 nH
);
53 sal_uInt16
getExtraHeight() const { return mnExtraHeight
;}
55 void setForceAutoSize( bool b
);
56 bool isForceAutoSize() const { return mbForceAutoSize
;}
58 RowHeightsArray
& getHeightArray() { return maHeights
; }
63 /* vim:set shiftwidth=4 softtabstop=4 expandtab: */