fix baseline build (old cairo) - 'cairo_rectangle_int_t' does not name a type
[LibreOffice.git] / sc / source / filter / excel / xlpage.cxx
blobafbe2ef7d120f8396f1cb5c284eeb4ad801c9fa9
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 #include "xlpage.hxx"
21 #include <sfx2/printer.hxx>
22 #include <editeng/svxenum.hxx>
23 #include <editeng/paperinf.hxx>
24 #include <vcl/svapp.hxx>
25 #include <sal/macros.h>
26 #include "scitems.hxx"
27 #include <editeng/brushitem.hxx>
28 #include "global.hxx"
29 #include "xlconst.hxx"
30 #include <oox/core/xmlfilterbase.hxx>
32 // Paper size =================================================================
34 struct XclPaperSize
36 Paper mePaper; /// SVX paper size identifier.
37 long mnWidth; /// Paper width in twips.
38 long mnHeight; /// Paper height in twips.
41 #define IN2TWIPS( v ) ((long)((v) * EXC_TWIPS_PER_INCH + 0.5))
42 #define MM2TWIPS( v ) ((long)((v) * EXC_TWIPS_PER_INCH / CM_PER_INCH / 10.0 + 0.5))
43 #define TWIPS2MM( v ) ((long)((v - 0.5) / EXC_TWIPS_PER_INCH * CM_PER_INCH * 10.0))
45 static const XclPaperSize pPaperSizeTable[] =
47 /* 0*/ { PAPER_USER, 0, 0 }, // undefined
48 { PAPER_LETTER, IN2TWIPS( 8.5 ), IN2TWIPS( 11 ) }, // Letter
49 { PAPER_USER, IN2TWIPS( 8.5 ), IN2TWIPS( 11 ) }, // Letter Small
50 { PAPER_TABLOID, IN2TWIPS( 11 ), IN2TWIPS( 17 ) }, // Tabloid
51 { PAPER_LEDGER, IN2TWIPS( 17 ), IN2TWIPS( 11 ) }, // Ledger
52 /* 5*/ { PAPER_LEGAL, IN2TWIPS( 8.5 ), IN2TWIPS( 14 ) }, // Legal
53 { PAPER_STATEMENT, IN2TWIPS( 5.5 ), IN2TWIPS( 8.5 ) }, // Statement
54 { PAPER_EXECUTIVE, IN2TWIPS( 7.25 ), IN2TWIPS( 10.5 ) }, // Executive
55 { PAPER_A3, MM2TWIPS( 297 ), MM2TWIPS( 420 ) }, // A3
56 { PAPER_A4, MM2TWIPS( 210 ), MM2TWIPS( 297 ) }, // A4
57 /* 10*/ { PAPER_USER, MM2TWIPS( 210 ), MM2TWIPS( 297 ) }, // A4 Small
58 { PAPER_A5, MM2TWIPS( 148 ), MM2TWIPS( 210 ) }, // A5
59 //See: http://wiki.openoffice.org/wiki/DefaultPaperSize comments
60 //near DMPAPER_B4 in vcl
61 //i.e.
62 //http://msdn.microsoft.com/en-us/library/bb241398.aspx makes the claim:
63 //xlPaperB4 12 B4 (250 mm x 354 mm)
64 //xlPaperB5 13 A5 (148 mm x 210 mm)
65 //but, a paper enum called B5 is surely not actually "A5", and furthermore
66 //the XlPaperSize enumeration otherwise follows the DMPAPER values
67 //http://msdn.microsoft.com/en-us/library/ms776398(VS.85).aspx
68 //which has
69 //DMPAPER_B4 12 B4 (JIS) 250 x 354
70 //DMPAPER_B5 13 B5 (JIS) 182 x 257 mm
71 //which claim them to be the JIS sizes. Though that document then gives
72 //"B4 (JIS)" an *ISO* B4 size in the text, but
73 //http://partners.adobe.com/public/developer/en/ps/5003.PPD_Spec_v4.3.pdf
74 //claims that the MS DMPAPER_B4 and DMPAPER_B5 truly are the JIS sizes
75 //which at least makes some sort of sense. (cmc)
76 { PAPER_B4_JIS, MM2TWIPS( 257 ), MM2TWIPS( 364 ) }, // B4 (JIS)
77 { PAPER_B5_JIS, MM2TWIPS( 182 ), MM2TWIPS( 257 ) }, // B5 (JIS)
78 { PAPER_USER, IN2TWIPS( 8.5 ), IN2TWIPS( 13 ) }, // Folio
79 /* 15*/ { PAPER_QUARTO, MM2TWIPS( 215 ), MM2TWIPS( 275 ) }, // Quarto
80 { PAPER_10x14, IN2TWIPS( 10 ), IN2TWIPS( 14 ) }, // 10x14
81 { PAPER_USER, IN2TWIPS( 11 ), IN2TWIPS( 17 ) }, // 11x17
82 { PAPER_USER, IN2TWIPS( 8.5 ), IN2TWIPS( 11 ) }, // Note
83 { PAPER_ENV_9, IN2TWIPS( 3.875 ), IN2TWIPS( 8.875 ) }, // Envelope #9
84 /* 20*/ { PAPER_ENV_10, IN2TWIPS( 4.125 ), IN2TWIPS( 9.5 ) }, // Envelope #10
85 { PAPER_ENV_11, IN2TWIPS( 4.5 ), IN2TWIPS( 10.375 ) }, // Envelope #11
86 { PAPER_ENV_12, IN2TWIPS( 4.75 ), IN2TWIPS( 11 ) }, // Envelope #12
87 { PAPER_ENV_14, IN2TWIPS( 5 ), IN2TWIPS( 11.5 ) }, // Envelope #14
88 { PAPER_C, IN2TWIPS( 17 ), IN2TWIPS( 22 ) }, // ANSI-C
89 /* 25*/ { PAPER_D, IN2TWIPS( 22 ), IN2TWIPS( 34 ) }, // ANSI-D
90 { PAPER_E, IN2TWIPS( 34 ), IN2TWIPS( 44 ) }, // ANSI-E
91 { PAPER_ENV_DL, MM2TWIPS( 110 ), MM2TWIPS( 220 ) }, // Envelope DL
92 { PAPER_ENV_C5, MM2TWIPS( 162 ), MM2TWIPS( 229 ) }, // Envelope C5
93 { PAPER_ENV_C3, MM2TWIPS( 324 ), MM2TWIPS( 458 ) }, // Envelope C3
94 /* 30*/ { PAPER_ENV_C4, MM2TWIPS( 229 ), MM2TWIPS( 324 ) }, // Envelope C4
95 { PAPER_ENV_C6, MM2TWIPS( 114 ), MM2TWIPS( 162 ) }, // Envelope C6
96 { PAPER_ENV_C65, MM2TWIPS( 114 ), MM2TWIPS( 229 ) }, // Envelope C65
97 { PAPER_B4_ISO, MM2TWIPS( 250 ), MM2TWIPS( 353 ) }, // B4 (ISO)
98 { PAPER_B5_ISO, MM2TWIPS( 176 ), MM2TWIPS( 250 ) }, // B5 (ISO)
99 /* 35*/ { PAPER_B6_ISO, MM2TWIPS( 125 ), MM2TWIPS( 176 ) }, // B6 (ISO)
100 { PAPER_ENV_ITALY, MM2TWIPS( 110 ), MM2TWIPS( 230 ) }, // Envelope Italy
101 { PAPER_ENV_MONARCH, IN2TWIPS( 3.875 ), IN2TWIPS( 7.5 ) }, // Envelope Monarch
102 { PAPER_ENV_PERSONAL, IN2TWIPS( 3.625 ), IN2TWIPS( 6.5 ) }, // 6 3/4 Envelope
103 { PAPER_FANFOLD_US, IN2TWIPS( 14.875 ), IN2TWIPS( 11 ) }, // US Std Fanfold
104 /* 40*/ { PAPER_FANFOLD_DE, IN2TWIPS( 8.5 ), IN2TWIPS( 12 ) }, // German Std Fanfold
105 { PAPER_FANFOLD_LEGAL_DE, IN2TWIPS( 8.5 ), IN2TWIPS( 13 ) }, // German Legal Fanfold
106 { PAPER_B4_ISO, MM2TWIPS( 250 ), MM2TWIPS( 353 ) }, // B4 (ISO)
107 { PAPER_POSTCARD_JP,MM2TWIPS( 100 ), MM2TWIPS( 148 ) }, // Japanese Postcard
108 { PAPER_9x11, IN2TWIPS( 9 ), IN2TWIPS( 11 ) }, // 9x11
109 /* 45*/ { PAPER_10x11, IN2TWIPS( 10 ), IN2TWIPS( 11 ) }, // 10x11
110 { PAPER_15x11, IN2TWIPS( 15 ), IN2TWIPS( 11 ) }, // 15x11
111 { PAPER_ENV_INVITE, MM2TWIPS( 220 ), MM2TWIPS( 220 ) }, // Envelope Invite
112 { PAPER_USER, 0, 0 }, // undefined
113 { PAPER_USER, 0, 0 }, // undefined
114 /* 50*/ { PAPER_USER, IN2TWIPS( 9.5 ), IN2TWIPS( 12 ) }, // Letter Extra
115 { PAPER_USER, IN2TWIPS( 9.5 ), IN2TWIPS( 15 ) }, // Legal Extra
116 { PAPER_USER, IN2TWIPS( 11.69 ), IN2TWIPS( 18 ) }, // Tabloid Extra
117 { PAPER_USER, MM2TWIPS( 235 ), MM2TWIPS( 322 ) }, // A4 Extra
118 { PAPER_USER, IN2TWIPS( 8.5 ), IN2TWIPS( 11 ) }, // Letter Transverse
119 /* 55*/ { PAPER_USER, MM2TWIPS( 210 ), MM2TWIPS( 297 ) }, // A4 Transverse
120 { PAPER_USER, IN2TWIPS( 9.5 ), IN2TWIPS( 12 ) }, // Letter Extra Transverse
121 { PAPER_A_PLUS, MM2TWIPS( 227 ), MM2TWIPS( 356 ) }, // Super A/A4
122 { PAPER_B_PLUS, MM2TWIPS( 305 ), MM2TWIPS( 487 ) }, // Super B/A3
123 { PAPER_LETTER_PLUS,IN2TWIPS( 8.5 ), IN2TWIPS( 12.69 ) }, // Letter Plus
124 /* 60*/ { PAPER_A4_PLUS, MM2TWIPS( 210 ), MM2TWIPS( 330 ) }, // A4 Plus
125 { PAPER_USER, MM2TWIPS( 148 ), MM2TWIPS( 210 ) }, // A5 Transverse
126 { PAPER_USER, MM2TWIPS( 182 ), MM2TWIPS( 257 ) }, // B5 (JIS) Transverse
127 { PAPER_USER, MM2TWIPS( 322 ), MM2TWIPS( 445 ) }, // A3 Extra
128 { PAPER_USER, MM2TWIPS( 174 ), MM2TWIPS( 235 ) }, // A5 Extra
129 /* 65*/ { PAPER_USER, MM2TWIPS( 201 ), MM2TWIPS( 276 ) }, // B5 (ISO) Extra
130 { PAPER_A2, MM2TWIPS( 420 ), MM2TWIPS( 594 ) }, // A2
131 { PAPER_USER, MM2TWIPS( 297 ), MM2TWIPS( 420 ) }, // A3 Transverse
132 { PAPER_USER, MM2TWIPS( 322 ), MM2TWIPS( 445 ) }, // A3 Extra Transverse
133 { PAPER_DOUBLEPOSTCARD_JP, MM2TWIPS( 200 ), MM2TWIPS( 148 ) }, // Double Japanese Postcard
134 /* 70*/ { PAPER_A6, MM2TWIPS( 105 ), MM2TWIPS( 148 ) }, // A6
135 { PAPER_USER, 0, 0 }, // undefined
136 { PAPER_USER, 0, 0 }, // undefined
137 { PAPER_USER, 0, 0 }, // undefined
138 { PAPER_USER, 0, 0 }, // undefined
139 /* 75*/ { PAPER_USER, IN2TWIPS( 11 ), IN2TWIPS( 8.5 ) }, // Letter Rotated
140 { PAPER_USER, MM2TWIPS( 420 ), MM2TWIPS( 297 ) }, // A3 Rotated
141 { PAPER_USER, MM2TWIPS( 297 ), MM2TWIPS( 210 ) }, // A4 Rotated
142 { PAPER_USER, MM2TWIPS( 210 ), MM2TWIPS( 148 ) }, // A5 Rotated
143 { PAPER_USER, MM2TWIPS( 364 ), MM2TWIPS( 257 ) }, // B4 (JIS) Rotated
144 /* 80*/ { PAPER_USER, MM2TWIPS( 257 ), MM2TWIPS( 182 ) }, // B5 (JIS) Rotated
145 { PAPER_USER, MM2TWIPS( 148 ), MM2TWIPS( 100 ) }, // Japanese Postcard Rotated
146 { PAPER_USER, MM2TWIPS( 148 ), MM2TWIPS( 200 ) }, // Double Japanese Postcard Rotated
147 { PAPER_USER, MM2TWIPS( 148 ), MM2TWIPS( 105 ) }, // A6 Rotated
148 { PAPER_USER, 0, 0 }, // undefined
149 /* 85*/ { PAPER_USER, 0, 0 }, // undefined
150 { PAPER_USER, 0, 0 }, // undefined
151 { PAPER_USER, 0, 0 }, // undefined
152 { PAPER_B6_JIS, MM2TWIPS( 128 ), MM2TWIPS( 182 ) }, // B6 (JIS)
153 { PAPER_USER, MM2TWIPS( 182 ), MM2TWIPS( 128 ) }, // B6 (JIS) Rotated
154 /* 90*/ { PAPER_12x11, IN2TWIPS( 12 ), IN2TWIPS( 11 ) } // 12x11
157 #undef IN2TWIPS
158 #undef MM2TWIPS
160 // Page settings ==============================================================
162 XclPageData::XclPageData()
164 SetDefaults();
167 XclPageData::~XclPageData()
169 // SvxBrushItem incomplete in header
172 void XclPageData::SetDefaults()
174 maHorPageBreaks.clear();
175 maVerPageBreaks.clear();
176 mxBrushItem.reset();
177 maHeader.clear();
178 maFooter.clear();
179 mfLeftMargin = mfRightMargin = XclTools::GetInchFromHmm( EXC_MARGIN_DEFAULT_LR );
180 mfTopMargin = mfBottomMargin = XclTools::GetInchFromHmm( EXC_MARGIN_DEFAULT_TB );
181 mfHeaderMargin = mfFooterMargin = XclTools::GetInchFromHmm( EXC_MARGIN_DEFAULT_HF );
182 mfHdrLeftMargin = mfHdrRightMargin = XclTools::GetInchFromHmm( EXC_MARGIN_DEFAULT_HLR );
183 mfFtrLeftMargin = mfFtrRightMargin = XclTools::GetInchFromHmm( EXC_MARGIN_DEFAULT_FLR );
184 mnStrictPaperSize = mnPaperSize = EXC_PAPERSIZE_DEFAULT;
185 mnPaperWidth = 0;
186 mnPaperHeight = 0;
187 mnCopies = 1;
188 mnStartPage = 0;
189 mnScaling = 100;
190 mnFitToWidth = mnFitToHeight = 1;
191 mnHorPrintRes = mnVerPrintRes = 300;
192 mbValid = false;
193 mbPortrait = true;
194 mbPrintInRows = mbBlackWhite = mbDraftQuality = mbPrintNotes = mbManualStart = mbFitToPages = false;
195 mbHorCenter = mbVerCenter = mbPrintHeadings = mbPrintGrid = false;
198 Size XclPageData::GetScPaperSize() const
200 const XclPaperSize* pEntry = pPaperSizeTable;
201 if( mnPaperSize < SAL_N_ELEMENTS( pPaperSizeTable ) )
202 pEntry += mnPaperSize;
204 Size aSize;
205 if( pEntry->mePaper == PAPER_USER )
206 aSize = Size( pEntry->mnWidth, pEntry->mnHeight );
207 else
208 aSize = SvxPaperInfo::GetPaperSize( pEntry->mePaper );
210 // invalid size -> back to default
211 if( !aSize.Width() || !aSize.Height() )
212 aSize = SvxPaperInfo::GetDefaultPaperSize();
214 if( !mbPortrait )
215 ::std::swap( aSize.Width(), aSize.Height() );
217 return aSize;
220 void XclPageData::SetScPaperSize( const Size& rSize, bool bPortrait, bool bStrictSize )
222 mbPortrait = bPortrait;
223 mnPaperSize = 0;
224 long nWidth = bPortrait ? rSize.Width() : rSize.Height();
225 long nHeight = bPortrait ? rSize.Height() : rSize.Width();
226 long nMaxWDiff = 80;
227 long nMaxHDiff = 50;
229 mnPaperWidth = TWIPS2MM( nWidth );
230 mnPaperHeight = TWIPS2MM( nHeight );
231 if( bStrictSize )
233 nMaxWDiff = 5;
234 nMaxHDiff = 5;
235 mnStrictPaperSize = EXC_PAPERSIZE_USER;
237 else
239 mnPaperSize = 0;
242 for( const XclPaperSize* pEntry = pPaperSizeTable; pEntry != STATIC_ARRAY_END( pPaperSizeTable ); ++pEntry )
244 long nWDiff = std::abs( pEntry->mnWidth - nWidth );
245 long nHDiff = std::abs( pEntry->mnHeight - nHeight );
246 if( ((nWDiff <= nMaxWDiff) && (nHDiff < nMaxHDiff)) ||
247 ((nWDiff < nMaxWDiff) && (nHDiff <= nMaxHDiff)) )
249 sal_uInt16 nIndex = static_cast< sal_uInt16 >( pEntry - pPaperSizeTable );
250 if( !bStrictSize )
251 mnPaperSize = nIndex;
252 else
253 mnStrictPaperSize = mnPaperSize = nIndex;
255 nMaxWDiff = nWDiff;
256 nMaxHDiff = nHDiff;
259 if( !bStrictSize )
260 SetScPaperSize( rSize, bPortrait, true );
263 /* vim:set shiftwidth=4 softtabstop=4 expandtab: */