1 /* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
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 .
22 #include <string_view>
24 #include <o3tl/unit_conversion.hxx>
25 #include <sal/mathconf.h>
26 #include <sal/macros.h>
27 #include <sal/log.hxx>
28 #include <tools/solar.h>
29 #include <unotools/fontdefs.hxx>
30 #include <filter/msfilter/msvbahelper.hxx>
31 #include <xestream.hxx>
33 #include <formula/errorcodes.hxx>
34 #include <globstr.hrc>
35 #include <scresid.hxx>
36 #include <xlstyle.hxx>
38 #include <xistream.hxx>
39 #include <xltools.hxx>
49 sal_uInt32 nData1
, sal_uInt16 nData2
, sal_uInt16 nData3
,
50 sal_uInt8 nData41
, sal_uInt8 nData42
, sal_uInt8 nData43
, sal_uInt8 nData44
,
51 sal_uInt8 nData45
, sal_uInt8 nData46
, sal_uInt8 nData47
, sal_uInt8 nData48
)
53 // convert to little endian -> makes streaming easy
54 UInt32ToSVBT32( nData1
, mpnData
);
55 ShortToSVBT16( nData2
, mpnData
+ 4 );
56 ShortToSVBT16( nData3
, mpnData
+ 6 );
57 mpnData
[ 8 ] = nData41
;
58 mpnData
[ 9 ] = nData42
;
59 mpnData
[ 10 ] = nData43
;
60 mpnData
[ 11 ] = nData44
;
61 mpnData
[ 12 ] = nData45
;
62 mpnData
[ 13 ] = nData46
;
63 mpnData
[ 14 ] = nData47
;
64 mpnData
[ 15 ] = nData48
;
67 bool operator==( const XclGuid
& rCmp1
, const XclGuid
& rCmp2
)
69 return ::std::equal( rCmp1
.mpnData
, std::end( rCmp1
.mpnData
), rCmp2
.mpnData
);
72 XclImpStream
& operator>>( XclImpStream
& rStrm
, XclGuid
& rGuid
)
74 rStrm
.Read( rGuid
.mpnData
, 16 ); // mpnData always in little endian
78 XclExpStream
& operator<<( XclExpStream
& rStrm
, const XclGuid
& rGuid
)
80 rStrm
.Write( rGuid
.mpnData
, 16 ); // mpnData already in little endian
87 const XclGuid
XclTools::maGuidStdLink(
88 0x79EAC9D0, 0xBAF9, 0x11CE, 0x8C, 0x82, 0x00, 0xAA, 0x00, 0x4B, 0xA9, 0x0B );
90 const XclGuid
XclTools::maGuidUrlMoniker(
91 0x79EAC9E0, 0xBAF9, 0x11CE, 0x8C, 0x82, 0x00, 0xAA, 0x00, 0x4B, 0xA9, 0x0B );
93 const XclGuid
XclTools::maGuidFileMoniker(
94 0x00000303, 0x0000, 0x0000, 0xC0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x46 );
98 double XclTools::GetDoubleFromRK( sal_Int32 nRKValue
)
107 if( ::get_flag( nRKValue
, EXC_RK_INTFLAG
) )
109 sal_Int32 nTemp
= nRKValue
>> 2;
110 ::set_flag
< sal_Int32
>( nTemp
, 0xE0000000, nRKValue
< 0 );
115 smD
.w32_parts
.msw
= nRKValue
& EXC_RK_VALUEMASK
;
118 if( ::get_flag( nRKValue
, EXC_RK_100FLAG
) )
124 bool XclTools::GetRKFromDouble( sal_Int32
& rnRKValue
, double fValue
)
129 fFrac
= modf( fValue
, &fInt
);
130 if( (fFrac
== 0.0) && (fInt
>= -536870912.0) && (fInt
<= 536870911.0) ) // 2^29
133 = static_cast<sal_Int32
>(
134 static_cast<sal_uInt32
>(static_cast<sal_Int32
>(fInt
)) << 2)
140 fFrac
= modf( fValue
* 100.0, &fInt
);
141 if( (fFrac
== 0.0) && (fInt
>= -536870912.0) && (fInt
<= 536870911.0) )
144 = static_cast<sal_Int32
>(
145 static_cast<sal_uInt32
>(static_cast<sal_Int32
>(fInt
)) << 2)
154 Degree100
XclTools::GetScRotation( sal_uInt16 nXclRot
, Degree100 nRotForStacked
)
156 if( nXclRot
== EXC_ROT_STACKED
)
157 return nRotForStacked
;
158 OSL_ENSURE( nXclRot
<= 180, "XclTools::GetScRotation - illegal rotation angle" );
159 return Degree100(static_cast< sal_Int32
>( (nXclRot
<= 180) ? (100 * ((nXclRot
> 90) ? (450 - nXclRot
) : nXclRot
)) : 0 ));
162 sal_uInt8
XclTools::GetXclRotation( Degree100 nScRot
)
164 sal_Int32 nXclRot
= nScRot
.get() / 100;
165 if( (0 <= nXclRot
) && (nXclRot
<= 90) )
166 return static_cast< sal_uInt8
>( nXclRot
);
168 return static_cast< sal_uInt8
>( 270 - nXclRot
);
170 return static_cast< sal_uInt8
>( nXclRot
- 180 );
172 return static_cast< sal_uInt8
>( 450 - nXclRot
);
176 sal_uInt8
XclTools::GetXclRotFromOrient( sal_uInt8 nXclOrient
)
180 case EXC_ORIENT_NONE
: return EXC_ROT_NONE
;
181 case EXC_ORIENT_STACKED
: return EXC_ROT_STACKED
;
182 case EXC_ORIENT_90CCW
: return EXC_ROT_90CCW
;
183 case EXC_ORIENT_90CW
: return EXC_ROT_90CW
;
184 default: OSL_FAIL( "XclTools::GetXclRotFromOrient - unknown text orientation" );
189 sal_uInt8
XclTools::GetXclOrientFromRot( sal_uInt16 nXclRot
)
191 if( nXclRot
== EXC_ROT_STACKED
)
192 return EXC_ORIENT_STACKED
;
193 OSL_ENSURE( nXclRot
<= 180, "XclTools::GetXclOrientFromRot - unknown text rotation" );
194 if( (45 < nXclRot
) && (nXclRot
<= 90) )
195 return EXC_ORIENT_90CCW
;
196 if( (135 < nXclRot
) && (nXclRot
<= 180) )
197 return EXC_ORIENT_90CW
;
198 return EXC_ORIENT_NONE
;
201 sal_uInt8
XclTools::GetXclErrorCode( FormulaError nScError
)
205 case FormulaError::IllegalArgument
: return EXC_ERR_VALUE
;
206 case FormulaError::IllegalFPOperation
: return EXC_ERR_NUM
; // maybe DIV/0 or NUM...
207 case FormulaError::DivisionByZero
: return EXC_ERR_DIV0
;
208 case FormulaError::IllegalParameter
: return EXC_ERR_VALUE
;
209 case FormulaError::PairExpected
: return EXC_ERR_VALUE
;
210 case FormulaError::OperatorExpected
: return EXC_ERR_VALUE
;
211 case FormulaError::VariableExpected
: return EXC_ERR_VALUE
;
212 case FormulaError::ParameterExpected
: return EXC_ERR_VALUE
;
213 case FormulaError::NoValue
: return EXC_ERR_VALUE
;
214 case FormulaError::CircularReference
: return EXC_ERR_VALUE
;
215 case FormulaError::NoCode
: return EXC_ERR_NULL
;
216 case FormulaError::NoRef
: return EXC_ERR_REF
;
217 case FormulaError::NoName
: return EXC_ERR_NAME
;
218 case FormulaError::NoAddin
: return EXC_ERR_NAME
;
219 case FormulaError::NoMacro
: return EXC_ERR_NAME
;
220 case FormulaError::NotAvailable
: return EXC_ERR_NA
;
226 FormulaError
XclTools::GetScErrorCode( sal_uInt8 nXclError
)
230 case EXC_ERR_NULL
: return FormulaError::NoCode
;
231 case EXC_ERR_DIV0
: return FormulaError::DivisionByZero
;
232 case EXC_ERR_VALUE
: return FormulaError::NoValue
;
233 case EXC_ERR_REF
: return FormulaError::NoRef
;
234 case EXC_ERR_NAME
: return FormulaError::NoName
;
235 case EXC_ERR_NUM
: return FormulaError::IllegalFPOperation
;
236 case EXC_ERR_NA
: return FormulaError::NotAvailable
;
237 default: OSL_FAIL( "XclTools::GetScErrorCode - unknown error code" );
239 return FormulaError::NotAvailable
;
242 double XclTools::ErrorToDouble( sal_uInt8 nXclError
)
244 return CreateDoubleError(GetScErrorCode( nXclError
));
247 XclBoolError
XclTools::ErrorToEnum( double& rfDblValue
, bool bErrOrBool
, sal_uInt8 nValue
)
255 case EXC_ERR_NULL
: eType
= xlErrNull
; break;
256 case EXC_ERR_DIV0
: eType
= xlErrDiv0
; break;
257 case EXC_ERR_VALUE
: eType
= xlErrValue
; break;
258 case EXC_ERR_REF
: eType
= xlErrRef
; break;
259 case EXC_ERR_NAME
: eType
= xlErrName
; break;
260 case EXC_ERR_NUM
: eType
= xlErrNum
; break;
261 case EXC_ERR_NA
: eType
= xlErrNA
; break;
262 default: eType
= xlErrUnknown
;
269 eType
= nValue
? xlErrTrue
: xlErrFalse
;
270 rfDblValue
= nValue
? 1.0 : 0.0;
275 template <typename N
> static N
to(double f
) { return limit_cast
<N
>(f
+ 0.5); }
277 sal_uInt16
XclTools::GetTwipsFromInch( double fInches
)
279 return to
<sal_uInt16
>(o3tl::convert(fInches
, o3tl::Length::in
, o3tl::Length::twip
));
282 sal_uInt16
XclTools::GetTwipsFromHmm( sal_Int32 nHmm
)
284 return limit_cast
<sal_uInt16
>(o3tl::convert(nHmm
, o3tl::Length::mm100
, o3tl::Length::twip
));
287 double XclTools::GetInchFromTwips( sal_Int32 nTwips
)
289 return o3tl::convert
<double>(nTwips
, o3tl::Length::twip
, o3tl::Length::in
);
292 double XclTools::GetInchFromHmm( sal_Int32 nHmm
)
294 return o3tl::convert
<double>(nHmm
, o3tl::Length::mm100
, o3tl::Length::in
);
297 sal_Int32
XclTools::GetHmmFromInch( double fInches
)
299 return to
<sal_Int32
>(o3tl::convert(fInches
, o3tl::Length::in
, o3tl::Length::mm100
));
302 sal_Int32
XclTools::GetHmmFromTwips( sal_Int32 nTwips
)
304 return limit_cast
<sal_Int32
>(o3tl::convert(nTwips
, o3tl::Length::twip
, o3tl::Length::mm100
));
307 sal_uInt16
XclTools::GetScColumnWidth( sal_uInt16 nXclWidth
, tools::Long nScCharWidth
)
309 double fScWidth
= static_cast< double >( nXclWidth
) / 256.0 * nScCharWidth
- 0.5;
310 return limit_cast
< sal_uInt16
>( fScWidth
);
313 sal_uInt16
XclTools::GetXclColumnWidth( sal_uInt16 nScWidth
, tools::Long nScCharWidth
)
315 double fXclWidth
= ( static_cast< double >( nScWidth
) + 0.5 ) * 256.0 / nScCharWidth
;
316 return limit_cast
< sal_uInt16
>( fXclWidth
);
319 // takes font height in twips (1/20 pt = 1/1440 in)
320 // returns correction value in 1/256th of *digit width* of default font
321 double XclTools::GetXclDefColWidthCorrection( tools::Long nXclDefFontHeight
)
323 // Excel uses *max digit width of default font* (W) as cell width unit. Also it has 5-pixel
324 // "correction" to cell widths (ECMA-376-1:2016 18.3.1.81): each cell has 1-pixel padding, then
325 // 3 pixels for the border (which may be 1-pixel - hairline - then it will have 2 additional
326 // 1-pixel spacings from each side; or e.g. 2 hairlines with 1-pixel spacing in the middle; or
327 // thick 3-pixel). Obviously, correction size entirely depends on pixel size (and it is actually
328 // different in Excel on monitors with different resolution). Thus actual (displayed/printed)
329 // cell widths consist of X*W+5px; stored in file is the X (or X*256 if 1/256th of digit width
330 // units are used) value.
331 // This formula apparently converts this 5-pixel correction to 1/256th of digit width units.
332 // Looks like it is created from
334 // 5 * 256 * 1440 * 2.1333 / (96 * max(N-15, 60)) + 50.0
336 // where 5 - pixel correction; 256 - used to produce 1/256th of digit width; 1440 - used to
337 // convert font height N (in twips) to inches; 2.1333 - an (empirical?) quotient to convert
338 // font *height* into digit *width*; 96 - "standard" monitor resolution (DPI).
339 // Additionally the formula uses 15 (of unknown origin), 60 (minimal font height 3 pt), and
340 // 50.0 (also of unknown origin).
342 // TODO: convert this to take font digit width directly (and possibly DPI?), to avoid guessing
343 // the digit width and pixel size. Or DPI might stay 96, to not follow Excel dependency on DPI
344 // in addition to used font, and have absolute size of the correction fixed 5/96 in.
345 return 40960.0 / ::std::max( nXclDefFontHeight
- 15, tools::Long(60) ) + 50.0;
350 Color
XclTools::GetPatternColor( const Color
& rPattColor
, const Color
& rBackColor
, sal_uInt16 nXclPattern
)
352 // 0x00 == 0% transparence (full rPattColor)
353 // 0x80 == 100% transparence (full rBackColor)
354 static const sal_uInt8 pnRatioTable
[] =
356 0x80, 0x00, 0x40, 0x20, 0x60, 0x40, 0x40, 0x40, // 00 - 07
357 0x40, 0x40, 0x20, 0x60, 0x60, 0x60, 0x60, 0x48, // 08 - 15
358 0x50, 0x70, 0x78 // 16 - 18
360 return (nXclPattern
< SAL_N_ELEMENTS( pnRatioTable
)) ?
361 ScfTools::GetMixedColor( rPattColor
, rBackColor
, pnRatioTable
[ nXclPattern
] ) : rPattColor
;
368 const struct XclCodePageEntry
370 sal_uInt16 mnCodePage
;
371 rtl_TextEncoding meTextEnc
;
375 { 437, RTL_TEXTENCODING_IBM_437
}, // OEM US
376 // { 720, RTL_TEXTENCODING_IBM_720 }, // OEM Arabic
377 { 737, RTL_TEXTENCODING_IBM_737
}, // OEM Greek
378 { 775, RTL_TEXTENCODING_IBM_775
}, // OEM Baltic
379 { 850, RTL_TEXTENCODING_IBM_850
}, // OEM Latin I
380 { 852, RTL_TEXTENCODING_IBM_852
}, // OEM Latin II (Central European)
381 { 855, RTL_TEXTENCODING_IBM_855
}, // OEM Cyrillic
382 { 857, RTL_TEXTENCODING_IBM_857
}, // OEM Turkish
383 // { 858, RTL_TEXTENCODING_IBM_858 }, // OEM Multilingual Latin I with Euro
384 { 860, RTL_TEXTENCODING_IBM_860
}, // OEM Portuguese
385 { 861, RTL_TEXTENCODING_IBM_861
}, // OEM Icelandic
386 { 862, RTL_TEXTENCODING_IBM_862
}, // OEM Hebrew
387 { 863, RTL_TEXTENCODING_IBM_863
}, // OEM Canadian (French)
388 { 864, RTL_TEXTENCODING_IBM_864
}, // OEM Arabic
389 { 865, RTL_TEXTENCODING_IBM_865
}, // OEM Nordic
390 { 866, RTL_TEXTENCODING_IBM_866
}, // OEM Cyrillic (Russian)
391 { 869, RTL_TEXTENCODING_IBM_869
}, // OEM Greek (Modern)
392 { 874, RTL_TEXTENCODING_MS_874
}, // MS Windows Thai
393 { 932, RTL_TEXTENCODING_MS_932
}, // MS Windows Japanese Shift-JIS
394 { 936, RTL_TEXTENCODING_MS_936
}, // MS Windows Chinese Simplified GBK
395 { 949, RTL_TEXTENCODING_MS_949
}, // MS Windows Korean (Wansung)
396 { 950, RTL_TEXTENCODING_MS_950
}, // MS Windows Chinese Traditional BIG5
397 { 1200, RTL_TEXTENCODING_DONTKNOW
}, // Unicode (BIFF8) - return *_DONTKNOW to preserve old code page
398 { 1250, RTL_TEXTENCODING_MS_1250
}, // MS Windows Latin II (Central European)
399 { 1251, RTL_TEXTENCODING_MS_1251
}, // MS Windows Cyrillic
400 { 1252, RTL_TEXTENCODING_MS_1252
}, // MS Windows Latin I (BIFF4-BIFF8)
401 { 1253, RTL_TEXTENCODING_MS_1253
}, // MS Windows Greek
402 { 1254, RTL_TEXTENCODING_MS_1254
}, // MS Windows Turkish
403 { 1255, RTL_TEXTENCODING_MS_1255
}, // MS Windows Hebrew
404 { 1256, RTL_TEXTENCODING_MS_1256
}, // MS Windows Arabic
405 { 1257, RTL_TEXTENCODING_MS_1257
}, // MS Windows Baltic
406 { 1258, RTL_TEXTENCODING_MS_1258
}, // MS Windows Vietnamese
407 { 1361, RTL_TEXTENCODING_MS_1361
}, // MS Windows Korean (Johab)
408 { 10000, RTL_TEXTENCODING_APPLE_ROMAN
}, // Apple Roman
409 { 32768, RTL_TEXTENCODING_APPLE_ROMAN
}, // Apple Roman
410 { 32769, RTL_TEXTENCODING_MS_1252
} // MS Windows Latin I (BIFF2-BIFF3)
412 const XclCodePageEntry
* const pCodePageTableEnd
= std::end(pCodePageTable
);
414 struct XclCodePageEntry_CPPred
416 explicit XclCodePageEntry_CPPred( sal_uInt16 nCodePage
) : mnCodePage( nCodePage
) {}
417 bool operator()( const XclCodePageEntry
& rEntry
) const { return rEntry
.mnCodePage
== mnCodePage
; }
418 sal_uInt16 mnCodePage
;
421 struct XclCodePageEntry_TEPred
423 explicit XclCodePageEntry_TEPred( rtl_TextEncoding eTextEnc
) : meTextEnc( eTextEnc
) {}
424 bool operator()( const XclCodePageEntry
& rEntry
) const { return rEntry
.meTextEnc
== meTextEnc
; }
425 rtl_TextEncoding meTextEnc
;
430 rtl_TextEncoding
XclTools::GetTextEncoding( sal_uInt16 nCodePage
)
432 const XclCodePageEntry
* pEntry
= ::std::find_if( pCodePageTable
, pCodePageTableEnd
, XclCodePageEntry_CPPred( nCodePage
) );
433 if( pEntry
== pCodePageTableEnd
)
435 SAL_WARN("sc", "XclTools::GetTextEncoding - unknown code page: 0x" << std::hex
<< nCodePage
);
436 return RTL_TEXTENCODING_DONTKNOW
;
438 return pEntry
->meTextEnc
;
441 sal_uInt16
XclTools::GetXclCodePage( rtl_TextEncoding eTextEnc
)
443 if( eTextEnc
== RTL_TEXTENCODING_UNICODE
)
444 return 1200; // for BIFF8
446 const XclCodePageEntry
* pEntry
= ::std::find_if( pCodePageTable
, pCodePageTableEnd
, XclCodePageEntry_TEPred( eTextEnc
) );
447 if( pEntry
== pCodePageTableEnd
)
449 SAL_WARN("sc", "XclTools::GetXclCodePage - unsupported text encoding: 0x" << std::hex
<< eTextEnc
);
452 return pEntry
->mnCodePage
;
455 OUString
XclTools::GetXclFontName( const OUString
& rFontName
)
457 // substitute with MS fonts
458 OUString aNewName
= GetSubsFontName(rFontName
, SubsFontFlags::ONLYONE
| SubsFontFlags::MS
);
459 return aNewName
.isEmpty() ? rFontName
: aNewName
;
462 // built-in defined names
463 const char maDefNamePrefix
[] = "Excel_BuiltIn_"; /// Prefix for built-in defined names.
464 const char maDefNamePrefixXml
[] = "_xlnm."; /// Prefix for built-in defined names for OOX
466 const char* const ppcDefNames
[] =
484 OUString
XclTools::GetXclBuiltInDefName( sal_Unicode cBuiltIn
)
486 OSL_ENSURE( SAL_N_ELEMENTS( ppcDefNames
) == EXC_BUILTIN_UNKNOWN
,
487 "XclTools::GetXclBuiltInDefName - built-in defined name list modified" );
489 if( cBuiltIn
< SAL_N_ELEMENTS( ppcDefNames
) )
490 return OUString::createFromAscii(ppcDefNames
[cBuiltIn
]);
492 return OUString::number(cBuiltIn
);
495 OUString
XclTools::GetBuiltInDefName( sal_Unicode cBuiltIn
)
497 return maDefNamePrefix
+ GetXclBuiltInDefName(cBuiltIn
);
500 OUString
XclTools::GetBuiltInDefNameXml( sal_Unicode cBuiltIn
)
502 return maDefNamePrefixXml
+ GetXclBuiltInDefName(cBuiltIn
);
505 sal_Unicode
XclTools::GetBuiltInDefNameIndex( const OUString
& rDefName
)
507 sal_Int32 nPrefixLen
= 0;
508 if( rDefName
.startsWithIgnoreAsciiCase( maDefNamePrefix
) )
509 nPrefixLen
= strlen(maDefNamePrefix
);
510 else if( rDefName
.startsWithIgnoreAsciiCase( maDefNamePrefixXml
) )
511 nPrefixLen
= strlen(maDefNamePrefixXml
);
514 for( sal_Unicode cBuiltIn
= 0; cBuiltIn
< EXC_BUILTIN_UNKNOWN
; ++cBuiltIn
)
516 OUString
aBuiltInName(GetXclBuiltInDefName(cBuiltIn
));
517 sal_Int32 nBuiltInLen
= aBuiltInName
.getLength();
518 if( rDefName
.matchIgnoreAsciiCase( aBuiltInName
, nPrefixLen
) )
520 // name can be followed by underline or space character
521 sal_Int32 nNextCharPos
= nPrefixLen
+ nBuiltInLen
;
522 sal_Unicode cNextChar
= (rDefName
.getLength() > nNextCharPos
) ? rDefName
[nNextCharPos
] : '\0';
523 if( (cNextChar
== '\0') || (cNextChar
== ' ') || (cNextChar
== '_') )
528 return EXC_BUILTIN_UNKNOWN
;
531 // built-in style names
533 const char maStyleNamePrefix1
[] = "Excel_BuiltIn_"; /// Prefix for built-in cell style names.
534 const char maStyleNamePrefix2
[] = "Excel Built-in "; /// Prefix for built-in cell style names from OOX filter.
536 const char* const ppcStyleNames
[] =
538 "", // "Normal" not used directly, but localized "Default"
539 "RowLevel_", // outline level will be appended
540 "ColumnLevel_", // outline level will be appended
550 OUString
XclTools::GetBuiltInStyleName( sal_uInt8 nStyleId
, std::u16string_view rName
, sal_uInt8 nLevel
)
554 if( nStyleId
== EXC_STYLE_NORMAL
) // "Normal" becomes "Default" style
556 aStyleName
= ScResId( STR_STYLENAME_STANDARD
);
560 OUStringBuffer
aBuf(maStyleNamePrefix1
);
561 if( nStyleId
< SAL_N_ELEMENTS( ppcStyleNames
) )
562 aBuf
.appendAscii(ppcStyleNames
[nStyleId
]);
563 else if (!rName
.empty())
566 aBuf
.append(static_cast<sal_Int32
>(nStyleId
));
568 if( (nStyleId
== EXC_STYLE_ROWLEVEL
) || (nStyleId
== EXC_STYLE_COLLEVEL
) )
569 aBuf
.append(static_cast<sal_Int32
>(nLevel
+1));
571 aStyleName
= aBuf
.makeStringAndClear();
577 bool XclTools::IsBuiltInStyleName( const OUString
& rStyleName
, sal_uInt8
* pnStyleId
, sal_Int32
* pnNextChar
)
579 // "Default" becomes "Normal"
580 if (rStyleName
== ScResId(STR_STYLENAME_STANDARD
))
582 if( pnStyleId
) *pnStyleId
= EXC_STYLE_NORMAL
;
583 if( pnNextChar
) *pnNextChar
= rStyleName
.getLength();
587 // try the other built-in styles
588 sal_uInt8 nFoundId
= 0;
589 sal_Int32 nNextChar
= 0;
591 sal_Int32 nPrefixLen
= 0;
592 if( rStyleName
.startsWithIgnoreAsciiCase( maStyleNamePrefix1
) )
593 nPrefixLen
= strlen(maStyleNamePrefix1
);
594 else if( rStyleName
.startsWithIgnoreAsciiCase( maStyleNamePrefix2
) )
595 nPrefixLen
= strlen(maStyleNamePrefix2
);
598 for( sal_uInt8 nId
= 0; nId
< SAL_N_ELEMENTS( ppcStyleNames
); ++nId
)
600 if( nId
!= EXC_STYLE_NORMAL
)
602 OUString aShortName
= OUString::createFromAscii(ppcStyleNames
[nId
]);
603 if( rStyleName
.matchIgnoreAsciiCase( aShortName
, nPrefixLen
) &&
604 (nNextChar
< nPrefixLen
+ aShortName
.getLength()))
607 nNextChar
= nPrefixLen
+ aShortName
.getLength();
615 if( pnStyleId
) *pnStyleId
= nFoundId
;
616 if( pnNextChar
) *pnNextChar
= nNextChar
;
620 if( pnStyleId
) *pnStyleId
= EXC_STYLE_USERDEF
;
621 if( pnNextChar
) *pnNextChar
= 0;
622 return nPrefixLen
> 0; // also return true for unknown built-in styles
625 bool XclTools::GetBuiltInStyleId( sal_uInt8
& rnStyleId
, sal_uInt8
& rnLevel
, const OUString
& rStyleName
)
629 if( IsBuiltInStyleName( rStyleName
, &nStyleId
, &nNextChar
) && (nStyleId
!= EXC_STYLE_USERDEF
) )
631 if( (nStyleId
== EXC_STYLE_ROWLEVEL
) || (nStyleId
== EXC_STYLE_COLLEVEL
) )
633 OUString aLevel
= rStyleName
.copy(nNextChar
);
634 sal_Int32 nLevel
= aLevel
.toInt32();
635 if (std::u16string_view(OUString::number(nLevel
)) == aLevel
636 && nLevel
> 0 && nLevel
<= EXC_STYLE_LEVELCOUNT
)
638 rnStyleId
= nStyleId
;
639 rnLevel
= static_cast< sal_uInt8
>( nLevel
- 1 );
643 else if( rStyleName
.getLength() == nNextChar
)
645 rnStyleId
= nStyleId
;
646 rnLevel
= EXC_STYLE_NOLEVEL
;
651 rnStyleId
= EXC_STYLE_USERDEF
;
652 rnLevel
= EXC_STYLE_NOLEVEL
;
656 // conditional formatting style names
658 const char maCFStyleNamePrefix1
[] = "Excel_CondFormat_"; /// Prefix for cond. formatting style names.
659 const char maCFStyleNamePrefix2
[] = "ConditionalStyle_"; /// Prefix for cond. formatting style names from OOX filter.
660 const char maCFStyleNamePrefix3
[] = "ExtConditionalStyle_";
662 OUString
XclTools::GetCondFormatStyleName( SCTAB nScTab
, sal_Int32 nFormat
, sal_uInt16 nCondition
)
664 return maCFStyleNamePrefix1
+
665 OUString::number(static_cast<sal_Int32
>(nScTab
+1)) +
667 OUString::number(static_cast<sal_Int32
>(nFormat
+1)) +
669 OUString::number(static_cast<sal_Int32
>(nCondition
+1));
672 bool XclTools::IsCondFormatStyleName( const OUString
& rStyleName
)
674 if( rStyleName
.startsWithIgnoreAsciiCase( maCFStyleNamePrefix1
) )
677 if( rStyleName
.startsWithIgnoreAsciiCase( maCFStyleNamePrefix2
) )
680 if (rStyleName
.startsWithIgnoreAsciiCase(maCFStyleNamePrefix3
))
688 void XclTools::SkipSubStream( XclImpStream
& rStrm
)
691 while( bLoop
&& rStrm
.StartNextRecord() )
693 sal_uInt16 nRecId
= rStrm
.GetRecId();
694 bLoop
= nRecId
!= EXC_ID_EOF
;
695 if( (nRecId
== EXC_ID2_BOF
) || (nRecId
== EXC_ID3_BOF
) || (nRecId
== EXC_ID4_BOF
) || (nRecId
== EXC_ID5_BOF
) )
696 SkipSubStream( rStrm
);
702 const char maSbMacroPrefix
[] = "vnd.sun.star.script:"; /// Prefix for StarBasic macros.
703 const char maSbMacroSuffix
[] = "?language=Basic&location=document"; /// Suffix for StarBasic macros.
705 OUString
XclTools::GetSbMacroUrl( const OUString
& rMacroName
, SfxObjectShell
* pDocShell
)
707 OSL_ENSURE( !rMacroName
.isEmpty(), "XclTools::GetSbMacroUrl - macro name is empty" );
708 ::ooo::vba::MacroResolvedInfo aMacroInfo
= ::ooo::vba::resolveVBAMacro( pDocShell
, rMacroName
);
709 if( aMacroInfo
.mbFound
)
710 return ::ooo::vba::makeMacroURL( aMacroInfo
.msResolvedMacro
);
714 OUString
XclTools::GetXclMacroName( const OUString
& rSbMacroUrl
)
716 sal_Int32 nSbMacroUrlLen
= rSbMacroUrl
.getLength();
717 sal_Int32 nMacroNameLen
= nSbMacroUrlLen
- strlen(maSbMacroPrefix
) - strlen(maSbMacroSuffix
);
718 if( (nMacroNameLen
> 0) && rSbMacroUrl
.startsWithIgnoreAsciiCase( maSbMacroPrefix
) &&
719 rSbMacroUrl
.endsWithIgnoreAsciiCase( maSbMacroSuffix
) )
721 sal_Int32 nPrjDot
= rSbMacroUrl
.indexOf( '.', strlen(maSbMacroPrefix
) ) + 1;
722 return rSbMacroUrl
.copy( nPrjDot
, nSbMacroUrlLen
- nPrjDot
- strlen(maSbMacroSuffix
) );
729 XclImpStream
& operator>>( XclImpStream
& rStrm
, Color
& rColor
)
731 sal_uInt8 nR
= rStrm
.ReaduInt8();
732 sal_uInt8 nG
= rStrm
.ReaduInt8();
733 sal_uInt8 nB
= rStrm
.ReaduInt8();
734 rStrm
.Ignore( 1 );//nD
735 rColor
= Color( nR
, nG
, nB
);
739 XclExpStream
& operator<<( XclExpStream
& rStrm
, const Color
& rColor
)
741 return rStrm
<< rColor
.GetRed() << rColor
.GetGreen() << rColor
.GetBlue() << sal_uInt8( 0 );
744 /* vim:set shiftwidth=4 softtabstop=4 expandtab: */