Resolves: tdf#162278 get popup position relative to the dest parent
[LibreOffice.git] / sc / inc / rowheightcontext.hxx
blob699ef4d3e75f8c35a60d0f54e401ede5d482e44d
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/.
8 */
10 #pragma once
12 #include "scdllapi.h"
14 #include <tools/fract.hxx>
15 #include <vcl/vclptr.hxx>
16 #include <vcl/outdev.hxx>
18 #include "compressedarray.hxx"
19 #include "types.hxx"
21 using RowHeightsArray = ScCompressedArray<SCROW, sal_uInt16>;
23 namespace sc {
25 class SC_DLLPUBLIC RowHeightContext
27 RowHeightsArray maHeights;
29 double mfPPTX;
30 double mfPPTY;
31 Fraction maZoomX;
32 Fraction maZoomY;
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.
38 public:
39 RowHeightContext(
40 SCROW nMaxRow, double fPPTX, double fPPTY, const Fraction& rZoomX, const Fraction& rZoomY,
41 OutputDevice* pOutDev );
43 ~RowHeightContext();
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: */