LCOV - code coverage report
Current view: top level - sc/source/core/data - pagepar.cxx (source / functions) Hit Total Coverage
Test: commit 0e63ca4fde4e446f346e35849c756a30ca294aab Lines: 24 40 60.0 %
Date: 2014-04-11 Functions: 6 8 75.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             :  * This file incorporates work covered by the following license notice:
      10             :  *
      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 .
      18             :  */
      19             : 
      20             : #include <string.h>
      21             : 
      22             : #include "pagepar.hxx"
      23             : 
      24             : // struct ScPageTableParam:
      25             : 
      26         296 : ScPageTableParam::ScPageTableParam()
      27             : {
      28         296 :     Reset();
      29         296 : }
      30             : 
      31         296 : ScPageTableParam::~ScPageTableParam()
      32             : {
      33         296 : }
      34             : 
      35         296 : void ScPageTableParam::Reset()
      36             : {
      37         296 :     bCellContent = true;
      38             :     bNotes=bGrid=bHeaders=bDrawings=
      39             :     bLeftRight=bScaleAll=bScaleTo=bScalePageNum=
      40         296 :     bFormulas=bNullVals=bSkipEmpty=bForceBreaks = false;
      41         296 :     bTopDown=bScaleNone=bCharts=bObjects    = true;
      42         296 :     nScaleAll = 100;
      43         296 :     nScalePageNum = nScaleWidth = nScaleHeight = 0;
      44         296 :     nFirstPageNo = 1;
      45         296 : }
      46             : 
      47           0 : bool ScPageTableParam::operator==( const ScPageTableParam& r ) const
      48             : {
      49           0 :     return ( memcmp( this, &r, sizeof(ScPageTableParam) ) == 0 );
      50             : }
      51             : 
      52             : 
      53             : // struct ScPageAreaParam:
      54             : 
      55         296 : ScPageAreaParam::ScPageAreaParam()
      56             : {
      57         296 :     Reset();
      58         296 : }
      59             : 
      60         296 : ScPageAreaParam::~ScPageAreaParam()
      61             : {
      62         296 : }
      63             : 
      64         296 : void ScPageAreaParam::Reset()
      65             : {
      66         296 :     bPrintArea = bRepeatRow = bRepeatCol = false;
      67             : 
      68         296 :     memset( &aPrintArea, 0, sizeof(ScRange) );
      69         296 :     memset( &aRepeatRow, 0, sizeof(ScRange) );
      70         296 :     memset( &aRepeatCol, 0, sizeof(ScRange) );
      71         296 : }
      72             : 
      73           0 : bool ScPageAreaParam::operator==( const ScPageAreaParam& r ) const
      74             : {
      75             :     bool bEqual =
      76           0 :             bPrintArea  == r.bPrintArea
      77           0 :         &&  bRepeatRow  == r.bRepeatRow
      78           0 :         &&  bRepeatCol  == r.bRepeatCol;
      79             : 
      80           0 :     if ( bEqual )
      81           0 :         if ( bPrintArea )
      82           0 :             bEqual = bEqual && ( aPrintArea == r.aPrintArea );
      83           0 :     if ( bEqual )
      84           0 :         if ( bRepeatRow )
      85           0 :             bEqual = bEqual && ( aRepeatRow == r.aRepeatRow );
      86           0 :     if ( bEqual )
      87           0 :         if ( bRepeatCol )
      88           0 :             bEqual = bEqual && ( aRepeatCol == r.aRepeatCol );
      89             : 
      90           0 :     return bEqual;
      91             : }
      92             : 
      93             : /* vim:set shiftwidth=4 softtabstop=4 expandtab: */

Generated by: LCOV version 1.10