Bump version to 4.3-4
[LibreOffice.git] / sc / inc / pagepar.hxx
blob881dc4d3859d2b5af76b5441a8f6dca37e5c9691
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/.
9 * This file incorporates work covered by the following license notice:
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 .
20 #ifndef INCLUDED_SC_INC_PAGEPAR_HXX
21 #define INCLUDED_SC_INC_PAGEPAR_HXX
23 #include "global.hxx"
24 #include "address.hxx"
26 struct ScPageTableParam
28 bool bCellContent;
29 bool bNotes;
30 bool bGrid;
31 bool bHeaders;
32 bool bCharts;
33 bool bObjects;
34 bool bDrawings;
35 bool bFormulas;
36 bool bNullVals;
37 bool bTopDown;
38 bool bLeftRight;
39 bool bSkipEmpty;
40 bool bScaleNone;
41 bool bScaleAll;
42 bool bScaleTo;
43 bool bScalePageNum;
44 bool bForceBreaks;
45 sal_uInt16 nScaleAll;
46 sal_uInt16 nScaleWidth;
47 sal_uInt16 nScaleHeight;
48 sal_uInt16 nScalePageNum;
49 sal_uInt16 nFirstPageNo;
51 ScPageTableParam();
52 ~ScPageTableParam();
54 bool operator== ( const ScPageTableParam& r ) const;
55 void Reset ();
58 struct ScPageAreaParam
60 bool bPrintArea;
61 bool bRepeatRow;
62 bool bRepeatCol;
63 ScRange aPrintArea;
64 ScRange aRepeatRow;
65 ScRange aRepeatCol;
67 ScPageAreaParam();
68 ~ScPageAreaParam();
70 bool operator== ( const ScPageAreaParam& r ) const;
71 void Reset ();
74 #endif
76 /* vim:set shiftwidth=4 softtabstop=4 expandtab: */