use insert function instead of for loop
[LibreOffice.git] / sc / source / filter / excel / xlpage.cxx
blobdfcdbccde45d7af22710c7f8fedbdeab1e804170
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 <xltools.hxx>
22 #include <editeng/paperinf.hxx>
23 #include <o3tl/unit_conversion.hxx>
24 #include <sal/macros.h>
25 #include <editeng/brushitem.hxx>
27 namespace{
29 struct XclPaperSize
31 Paper mePaper; /// SVX paper size identifier.
32 tools::Long mnWidth; /// Paper width in twips.
33 tools::Long mnHeight; /// Paper height in twips.
36 constexpr tools::Long in2twips(double n_inch)
38 return o3tl::convert(n_inch, o3tl::Length::in, o3tl::Length::twip) + 0.5;
40 constexpr tools::Long mm2twips(double n_mm)
42 return o3tl::convert(n_mm, o3tl::Length::mm, o3tl::Length::twip) + 0.5;
44 constexpr tools::Long twips2mm(tools::Long n_twips)
46 return o3tl::convert(n_twips, o3tl::Length::twip, o3tl::Length::mm);
49 // see ApiPaperSize spPaperSizeTable in filter and aDinTab in i18nutil
50 constexpr XclPaperSize pPaperSizeTable[] =
52 /* 0*/ { PAPER_USER, 0, 0 }, // undefined
53 { PAPER_LETTER, in2twips( 8.5 ), in2twips( 11 ) }, // Letter
54 { PAPER_USER, in2twips( 8.5 ), in2twips( 11 ) }, // Letter Small
55 { PAPER_TABLOID, in2twips( 11 ), in2twips( 17 ) }, // Tabloid
56 { PAPER_LEDGER, in2twips( 17 ), in2twips( 11 ) }, // Ledger
57 /* 5*/ { PAPER_LEGAL, in2twips( 8.5 ), in2twips( 14 ) }, // Legal
58 { PAPER_STATEMENT, in2twips( 5.5 ), in2twips( 8.5 ) }, // Statement
59 { PAPER_EXECUTIVE, in2twips( 7.25 ), in2twips( 10.5 ) }, // Executive
60 { PAPER_A3, mm2twips( 297 ), mm2twips( 420 ) }, // A3
61 { PAPER_A4, mm2twips( 210 ), mm2twips( 297 ) }, // A4
62 /* 10*/ { PAPER_USER, mm2twips( 210 ), mm2twips( 297 ) }, // A4 Small
63 { PAPER_A5, mm2twips( 148 ), mm2twips( 210 ) }, // A5
64 /* for JIS vs ISO B confusion see:
65 https://docs.microsoft.com/en-us/windows/win32/intl/paper-sizes
66 http://wiki.openoffice.org/wiki/DefaultPaperSize comments
67 http://partners.adobe.com/public/developer/en/ps/5003.PPD_Spec_v4.3.pdf */
68 { PAPER_B4_JIS, mm2twips( 257 ), mm2twips( 364 ) }, // B4 (JIS)
69 { PAPER_B5_JIS, mm2twips( 182 ), mm2twips( 257 ) }, // B5 (JIS)
70 { PAPER_USER, in2twips( 8.5 ), in2twips( 13 ) }, // Folio
71 /* 15*/ { PAPER_QUARTO, mm2twips( 215 ), mm2twips( 275 ) }, // Quarto
72 { PAPER_10x14, in2twips( 10 ), in2twips( 14 ) }, // 10x14
73 { PAPER_USER, in2twips( 11 ), in2twips( 17 ) }, // 11x17
74 { PAPER_USER, in2twips( 8.5 ), in2twips( 11 ) }, // Note
75 { PAPER_ENV_9, in2twips( 3.875 ), in2twips( 8.875 ) }, // Envelope #9
76 /* 20*/ { PAPER_ENV_10, in2twips( 4.125 ), in2twips( 9.5 ) }, // Envelope #10
77 { PAPER_ENV_11, in2twips( 4.5 ), in2twips( 10.375 ) }, // Envelope #11
78 { PAPER_ENV_12, in2twips( 4.75 ), in2twips( 11 ) }, // Envelope #12
79 { PAPER_ENV_14, in2twips( 5 ), in2twips( 11.5 ) }, // Envelope #14
80 { PAPER_C, in2twips( 17 ), in2twips( 22 ) }, // ANSI-C
81 /* 25*/ { PAPER_D, in2twips( 22 ), in2twips( 34 ) }, // ANSI-D
82 { PAPER_E, in2twips( 34 ), in2twips( 44 ) }, // ANSI-E
83 { PAPER_ENV_DL, mm2twips( 110 ), mm2twips( 220 ) }, // Envelope DL
84 { PAPER_ENV_C5, mm2twips( 162 ), mm2twips( 229 ) }, // Envelope C5
85 { PAPER_ENV_C3, mm2twips( 324 ), mm2twips( 458 ) }, // Envelope C3
86 /* 30*/ { PAPER_ENV_C4, mm2twips( 229 ), mm2twips( 324 ) }, // Envelope C4
87 { PAPER_ENV_C6, mm2twips( 114 ), mm2twips( 162 ) }, // Envelope C6
88 { PAPER_ENV_C65, mm2twips( 114 ), mm2twips( 229 ) }, // Envelope C65
89 { PAPER_B4_ISO, mm2twips( 250 ), mm2twips( 353 ) }, // B4 (ISO)
90 { PAPER_B5_ISO, mm2twips( 176 ), mm2twips( 250 ) }, // B5 (ISO)
91 /* 35*/ { PAPER_B6_ISO, mm2twips( 125 ), mm2twips( 176 ) }, // B6 (ISO)
92 { PAPER_ENV_ITALY, mm2twips( 110 ), mm2twips( 230 ) }, // Envelope Italy
93 { PAPER_ENV_MONARCH, in2twips( 3.875 ), in2twips( 7.5 ) }, // Envelope Monarch
94 { PAPER_ENV_PERSONAL, in2twips( 3.625 ), in2twips( 6.5 ) }, // 6 3/4 Envelope
95 { PAPER_FANFOLD_US, in2twips( 14.875 ), in2twips( 11 ) }, // US Std Fanfold
96 /* 40*/ { PAPER_FANFOLD_DE, in2twips( 8.5 ), in2twips( 12 ) }, // German Std Fanfold
97 { PAPER_FANFOLD_LEGAL_DE, in2twips( 8.5 ), in2twips( 13 ) }, // German Legal Fanfold
98 { PAPER_B4_ISO, mm2twips( 250 ), mm2twips( 353 ) }, // B4 (ISO)
99 { PAPER_POSTCARD_JP,mm2twips( 100 ), mm2twips( 148 ) }, // Japanese Postcard
100 { PAPER_9x11, in2twips( 9 ), in2twips( 11 ) }, // 9x11
101 /* 45*/ { PAPER_10x11, in2twips( 10 ), in2twips( 11 ) }, // 10x11
102 { PAPER_15x11, in2twips( 15 ), in2twips( 11 ) }, // 15x11
103 { PAPER_ENV_INVITE, mm2twips( 220 ), mm2twips( 220 ) }, // Envelope Invite
104 { PAPER_USER, 0, 0 }, // undefined
105 { PAPER_USER, 0, 0 }, // undefined
106 /* See: https://docs.microsoft.com/en-us/windows/win32/intl/paper-sizes */
107 /* 50*/ { PAPER_USER, in2twips( 9.5 ), in2twips( 12 ) }, // Letter Extra
108 { PAPER_USER, in2twips( 9.5 ), in2twips( 15 ) }, // Legal Extra
109 { PAPER_USER, in2twips( 11.69 ), in2twips( 18 ) }, // Tabloid Extra
110 { PAPER_USER, mm2twips( 235 ), mm2twips( 322 ) }, // A4 Extra
111 { PAPER_USER, in2twips( 8.5 ), in2twips( 11 ) }, // Letter Transverse
112 /* 55*/ { PAPER_USER, mm2twips( 210 ), mm2twips( 297 ) }, // A4 Transverse
113 { PAPER_USER, in2twips( 9.5 ), in2twips( 12 ) }, // Letter Extra Transverse
114 { PAPER_A_PLUS, mm2twips( 227 ), mm2twips( 356 ) }, // Super A/A4
115 { PAPER_B_PLUS, mm2twips( 305 ), mm2twips( 487 ) }, // Super B/A3
116 { PAPER_LETTER_PLUS,in2twips( 8.5 ), in2twips( 12.69 ) }, // Letter Plus
117 /* 60*/ { PAPER_A4_PLUS, mm2twips( 210 ), mm2twips( 330 ) }, // A4 Plus
118 { PAPER_USER, mm2twips( 148 ), mm2twips( 210 ) }, // A5 Transverse
119 { PAPER_USER, mm2twips( 182 ), mm2twips( 257 ) }, // B5 (JIS) Transverse
120 { PAPER_USER, mm2twips( 322 ), mm2twips( 445 ) }, // A3 Extra
121 { PAPER_USER, mm2twips( 174 ), mm2twips( 235 ) }, // A5 Extra
122 /* 65*/ { PAPER_USER, mm2twips( 201 ), mm2twips( 276 ) }, // B5 (ISO) Extra
123 { PAPER_A2, mm2twips( 420 ), mm2twips( 594 ) }, // A2
124 { PAPER_USER, mm2twips( 297 ), mm2twips( 420 ) }, // A3 Transverse
125 { PAPER_USER, mm2twips( 322 ), mm2twips( 445 ) }, // A3 Extra Transverse
126 { PAPER_DOUBLEPOSTCARD_JP, mm2twips( 200 ), mm2twips( 148 ) }, // Double Japanese Postcard
127 /* 70*/ { PAPER_A6, mm2twips( 105 ), mm2twips( 148 ) }, // A6
128 { PAPER_USER, 0, 0 }, // Japanese Envelope Kaku #2
129 { PAPER_USER, 0, 0 }, // Japanese Envelope Kaku #3
130 { PAPER_USER, 0, 0 }, // Japanese Envelope Chou #3
131 { PAPER_USER, 0, 0 }, // Japanese Envelope Chou #4
132 /* 75*/ { PAPER_USER, in2twips( 11 ), in2twips( 8.5 ) }, // Letter Rotated
133 { PAPER_USER, mm2twips( 420 ), mm2twips( 297 ) }, // A3 Rotated
134 { PAPER_USER, mm2twips( 297 ), mm2twips( 210 ) }, // A4 Rotated
135 { PAPER_USER, mm2twips( 210 ), mm2twips( 148 ) }, // A5 Rotated
136 { PAPER_USER, mm2twips( 364 ), mm2twips( 257 ) }, // B4 (JIS) Rotated
137 /* 80*/ { PAPER_USER, mm2twips( 257 ), mm2twips( 182 ) }, // B5 (JIS) Rotated
138 { PAPER_USER, mm2twips( 148 ), mm2twips( 100 ) }, // Japanese Postcard Rotated
139 { PAPER_USER, mm2twips( 148 ), mm2twips( 200 ) }, // Double Japanese Postcard Rotated
140 { PAPER_USER, mm2twips( 148 ), mm2twips( 105 ) }, // A6 Rotated
141 { PAPER_USER, 0, 0 }, // Japanese Envelope Kaku #2 Rotated
142 /* 85*/ { PAPER_USER, 0, 0 }, // Japanese Envelope Kaku #3 Rotated
143 { PAPER_USER, 0, 0 }, // Japanese Envelope Chou #3 Rotated
144 { PAPER_USER, 0, 0 }, // Japanese Envelope Chou #4 Rotated
145 { PAPER_B6_JIS, mm2twips( 128 ), mm2twips( 182 ) }, // B6 (JIS)
146 { PAPER_USER, mm2twips( 182 ), mm2twips( 128 ) }, // B6 (JIS) Rotated
147 /* 90*/ { PAPER_12x11, in2twips( 12 ), in2twips( 11 ) } // 12x11
150 } //namespace
152 // Page settings ==============================================================
154 XclPageData::XclPageData()
156 SetDefaults();
159 XclPageData::~XclPageData()
161 // SvxBrushItem incomplete in header
164 void XclPageData::SetDefaults()
166 maHorPageBreaks.clear();
167 maVerPageBreaks.clear();
168 mxBrushItem.reset();
169 maHeader.clear();
170 maFooter.clear();
171 maHeaderEven.clear();
172 maFooterEven.clear();
173 mfLeftMargin = mfRightMargin = XclTools::GetInchFromHmm( EXC_MARGIN_DEFAULT_LR );
174 mfTopMargin = mfBottomMargin = XclTools::GetInchFromHmm( EXC_MARGIN_DEFAULT_TB );
175 mfHeaderMargin = mfFooterMargin = XclTools::GetInchFromHmm( EXC_MARGIN_DEFAULT_HF );
176 mfHdrLeftMargin = mfHdrRightMargin = XclTools::GetInchFromHmm( EXC_MARGIN_DEFAULT_HLR );
177 mfFtrLeftMargin = mfFtrRightMargin = XclTools::GetInchFromHmm( EXC_MARGIN_DEFAULT_FLR );
178 mnStrictPaperSize = mnPaperSize = EXC_PAPERSIZE_DEFAULT;
179 mnPaperWidth = 0;
180 mnPaperHeight = 0;
181 mnCopies = 1;
182 mnStartPage = 0;
183 mnScaling = 100;
184 mnFitToWidth = mnFitToHeight = 1;
185 mnHorPrintRes = mnVerPrintRes = 300;
186 mbUseEvenHF = mbUseFirstHF = false;
187 mbValid = false;
188 mbPortrait = true;
189 mbPrintInRows = mbBlackWhite = mbDraftQuality = mbPrintNotes = mbManualStart = mbFitToPages = false;
190 mbHorCenter = mbVerCenter = mbPrintHeadings = mbPrintGrid = false;
193 Size XclPageData::GetScPaperSize() const
195 const XclPaperSize* pEntry = pPaperSizeTable;
196 if( mnPaperSize < std::size( pPaperSizeTable ) )
197 pEntry += mnPaperSize;
199 Size aSize;
200 if( pEntry->mePaper == PAPER_USER )
201 aSize = Size( pEntry->mnWidth, pEntry->mnHeight );
202 else
203 aSize = SvxPaperInfo::GetPaperSize( pEntry->mePaper );
205 // invalid size -> back to default
206 if( !aSize.Width() || !aSize.Height() )
207 aSize = SvxPaperInfo::GetDefaultPaperSize();
209 if( !mbPortrait )
211 // swap width and height
212 tools::Long n = aSize.Width();
213 aSize.setWidth(aSize.Height());
214 aSize.setHeight(n);
217 return aSize;
220 void XclPageData::SetScPaperSize( const Size& rSize, bool bPortrait, bool bStrictSize )
222 mbPortrait = bPortrait;
223 mnPaperSize = 0;
224 tools::Long nWidth = bPortrait ? rSize.Width() : rSize.Height();
225 tools::Long nHeight = bPortrait ? rSize.Height() : rSize.Width();
226 tools::Long nMaxWDiff = 80;
227 tools::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 = EXC_PAPERSIZE_DEFAULT;
242 for( const auto &rEntry : pPaperSizeTable)
244 tools::Long nWDiff = std::abs( rEntry.mnWidth - nWidth );
245 tools::Long nHDiff = std::abs( rEntry.mnHeight - nHeight );
246 if( ((nWDiff <= nMaxWDiff) && (nHDiff < nMaxHDiff)) ||
247 ((nWDiff < nMaxWDiff) && (nHDiff <= nMaxHDiff)) )
249 sal_uInt16 nIndex = static_cast< sal_uInt16 >( &rEntry - pPaperSizeTable );
250 mnPaperSize = nIndex;
251 if( bStrictSize )
252 mnStrictPaperSize = nIndex;
254 nMaxWDiff = nWDiff;
255 nMaxHDiff = nHDiff;
258 if( !bStrictSize )
259 SetScPaperSize( rSize, bPortrait, true );
262 /* vim:set shiftwidth=4 softtabstop=4 expandtab: */