bump product version to 4.1.6.2
[LibreOffice.git] / sc / inc / pagepar.hxx
blob5f004e7a2e81954c6d8e76aad89eb69e46abeb16
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 SC_PAGEPAR_HXX
21 #define SC_PAGEPAR_HXX
23 #include "global.hxx"
24 #include "address.hxx"
26 //-----------------------------------------------------------------------
28 struct ScPageTableParam
30 sal_Bool bCellContent;
31 sal_Bool bNotes;
32 sal_Bool bGrid;
33 sal_Bool bHeaders;
34 sal_Bool bCharts;
35 sal_Bool bObjects;
36 sal_Bool bDrawings;
37 sal_Bool bFormulas;
38 sal_Bool bNullVals;
39 sal_Bool bTopDown;
40 sal_Bool bLeftRight;
41 sal_Bool bSkipEmpty;
42 sal_Bool bScaleNone;
43 sal_Bool bScaleAll;
44 sal_Bool bScaleTo;
45 sal_Bool bScalePageNum;
46 sal_uInt16 nScaleAll;
47 sal_uInt16 nScaleWidth;
48 sal_uInt16 nScaleHeight;
49 sal_uInt16 nScalePageNum;
50 sal_uInt16 nFirstPageNo;
52 ScPageTableParam();
53 ~ScPageTableParam();
55 sal_Bool operator== ( const ScPageTableParam& r ) const;
56 void Reset ();
59 struct ScPageAreaParam
61 sal_Bool bPrintArea;
62 sal_Bool bRepeatRow;
63 sal_Bool bRepeatCol;
64 ScRange aPrintArea;
65 ScRange aRepeatRow;
66 ScRange aRepeatCol;
68 ScPageAreaParam();
69 ~ScPageAreaParam();
71 sal_Bool operator== ( const ScPageAreaParam& r ) const;
72 void Reset ();
76 #endif
79 /* vim:set shiftwidth=4 softtabstop=4 expandtab: */