LCOV - code coverage report
Current view: top level - sc/source/core/data - rowheightcontext.cxx (source / functions) Hit Total Coverage
Test: commit 0e63ca4fde4e446f346e35849c756a30ca294aab Lines: 23 23 100.0 %
Date: 2014-04-11 Functions: 11 11 100.0 %
Legend: Lines: hit not hit

          Line data    Source code
       1             : /* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
       2             : /*
       3             :  * This file is part of the LibreOffice project.
       4             :  *
       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             :  */
       9             : 
      10             : #include <rowheightcontext.hxx>
      11             : 
      12             : namespace sc {
      13             : 
      14        5843 : RowHeightContext::RowHeightContext(
      15             :     double fPPTX, double fPPTY, const Fraction& rZoomX, const Fraction& rZoomY,
      16             :     OutputDevice* pOutDev ) :
      17             :     mfPPTX(fPPTX), mfPPTY(fPPTY),
      18             :     maZoomX(rZoomX), maZoomY(rZoomY),
      19             :     mpOutDev(pOutDev),
      20             :     mnExtraHeight(0),
      21        5843 :     mbForceAutoSize(false) {}
      22             : 
      23        5843 : RowHeightContext::~RowHeightContext() {}
      24             : 
      25        2768 : double RowHeightContext::getPPTX() const
      26             : {
      27        2768 :     return mfPPTX;
      28             : }
      29             : 
      30        4007 : double RowHeightContext::getPPTY() const
      31             : {
      32        4007 :     return mfPPTY;
      33             : }
      34             : 
      35        1239 : const Fraction& RowHeightContext::getZoomX() const
      36             : {
      37        1239 :     return maZoomX;
      38             : }
      39             : 
      40        1239 : const Fraction& RowHeightContext::getZoomY() const
      41             : {
      42        1239 :     return maZoomY;
      43             : }
      44             : 
      45        1239 : OutputDevice* RowHeightContext::getOutputDevice()
      46             : {
      47        1239 :     return mpOutDev;
      48             : }
      49             : 
      50           1 : void RowHeightContext::setExtraHeight( sal_uInt16 nH )
      51             : {
      52           1 :     mnExtraHeight = nH;
      53           1 : }
      54             : 
      55        1529 : sal_uInt16 RowHeightContext::getExtraHeight() const
      56             : {
      57        1529 :     return mnExtraHeight;
      58             : }
      59             : 
      60           2 : void RowHeightContext::setForceAutoSize( bool b )
      61             : {
      62           2 :     mbForceAutoSize = b;
      63           2 : }
      64             : 
      65        3107 : bool RowHeightContext::isForceAutoSize() const
      66             : {
      67        3107 :     return mbForceAutoSize;
      68             : }
      69             : 
      70             : }
      71             : 
      72             : /* vim:set shiftwidth=4 softtabstop=4 expandtab: */

Generated by: LCOV version 1.10