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 407 : ScPageTableParam::ScPageTableParam()
27 : {
28 407 : Reset();
29 407 : }
30 :
31 407 : ScPageTableParam::~ScPageTableParam()
32 : {
33 407 : }
34 :
35 407 : void ScPageTableParam::Reset()
36 : {
37 407 : bCellContent = true;
38 : bNotes=bGrid=bHeaders=bDrawings=
39 : bLeftRight=bScaleAll=bScaleTo=bScalePageNum=
40 407 : bFormulas=bNullVals=bSkipEmpty=bForceBreaks = false;
41 407 : bTopDown=bScaleNone=bCharts=bObjects = true;
42 407 : nScaleAll = 100;
43 407 : nScalePageNum = nScaleWidth = nScaleHeight = 0;
44 407 : nFirstPageNo = 1;
45 407 : }
46 :
47 0 : bool ScPageTableParam::operator==( const ScPageTableParam& r ) const
48 : {
49 0 : return ( memcmp( this, &r, sizeof(ScPageTableParam) ) == 0 );
50 : }
51 :
52 : // struct ScPageAreaParam:
53 :
54 407 : ScPageAreaParam::ScPageAreaParam()
55 : {
56 407 : Reset();
57 407 : }
58 :
59 407 : ScPageAreaParam::~ScPageAreaParam()
60 : {
61 407 : }
62 :
63 407 : void ScPageAreaParam::Reset()
64 : {
65 407 : bPrintArea = bRepeatRow = bRepeatCol = false;
66 :
67 407 : memset( &aPrintArea, 0, sizeof(ScRange) );
68 407 : memset( &aRepeatRow, 0, sizeof(ScRange) );
69 407 : memset( &aRepeatCol, 0, sizeof(ScRange) );
70 407 : }
71 :
72 0 : bool ScPageAreaParam::operator==( const ScPageAreaParam& r ) const
73 : {
74 : bool bEqual =
75 0 : bPrintArea == r.bPrintArea
76 0 : && bRepeatRow == r.bRepeatRow
77 0 : && bRepeatCol == r.bRepeatCol;
78 :
79 0 : if ( bEqual )
80 0 : if ( bPrintArea )
81 0 : bEqual = bEqual && ( aPrintArea == r.aPrintArea );
82 0 : if ( bEqual )
83 0 : if ( bRepeatRow )
84 0 : bEqual = bEqual && ( aRepeatRow == r.aRepeatRow );
85 0 : if ( bEqual )
86 0 : if ( bRepeatCol )
87 0 : bEqual = bEqual && ( aRepeatCol == r.aRepeatCol );
88 :
89 0 : return bEqual;
90 156 : }
91 :
92 : /* vim:set shiftwidth=4 softtabstop=4 expandtab: */
|