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 0 : ScPageTableParam::ScPageTableParam()
27 : {
28 0 : Reset();
29 0 : }
30 :
31 0 : ScPageTableParam::~ScPageTableParam()
32 : {
33 0 : }
34 :
35 0 : void ScPageTableParam::Reset()
36 : {
37 0 : bCellContent = true;
38 : bNotes=bGrid=bHeaders=bDrawings=
39 : bLeftRight=bScaleAll=bScaleTo=bScalePageNum=
40 0 : bFormulas=bNullVals=bSkipEmpty=bForceBreaks = false;
41 0 : bTopDown=bScaleNone=bCharts=bObjects = true;
42 0 : nScaleAll = 100;
43 0 : nScalePageNum = nScaleWidth = nScaleHeight = 0;
44 0 : nFirstPageNo = 1;
45 0 : }
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 0 : ScPageAreaParam::ScPageAreaParam()
56 : {
57 0 : Reset();
58 0 : }
59 :
60 0 : ScPageAreaParam::~ScPageAreaParam()
61 : {
62 0 : }
63 :
64 0 : void ScPageAreaParam::Reset()
65 : {
66 0 : bPrintArea = bRepeatRow = bRepeatCol = false;
67 :
68 0 : memset( &aPrintArea, 0, sizeof(ScRange) );
69 0 : memset( &aRepeatRow, 0, sizeof(ScRange) );
70 0 : memset( &aRepeatCol, 0, sizeof(ScRange) );
71 0 : }
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: */
|