LOK: tilebench improvements
[LibreOffice.git] / sc / inc / pagepar.hxx
blob23ba00169d7d2baf0c541db89794e608b29bdc2b
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 void Reset ();
57 struct ScPageAreaParam
59 bool bPrintArea;
60 bool bRepeatRow;
61 bool bRepeatCol;
62 ScRange aPrintArea;
63 ScRange aRepeatRow;
64 ScRange aRepeatCol;
66 ScPageAreaParam();
67 ~ScPageAreaParam();
69 void Reset ();
72 #endif
74 /* vim:set shiftwidth=4 softtabstop=4 expandtab: */