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 .
20 #include <numformat.hxx>
21 #include <patattr.hxx>
22 #include <scitems.hxx>
23 #include <document.hxx>
25 #include <svl/zforlist.hxx>
26 #include <svl/zformat.hxx>
27 #include <svl/intitem.hxx>
28 #include <svl/languageoptions.hxx>
32 bool NumFmtUtil::isLatinScript( const ScPatternAttr
& rPat
, ScDocument
& rDoc
)
34 SvNumberFormatter
* pFormatter
= rDoc
.GetFormatTable();
35 sal_uInt32 nKey
= rPat
.GetNumberFormat(pFormatter
);
36 return isLatinScript(nKey
, rDoc
);
39 bool NumFmtUtil::isLatinScript( sal_uLong nFormat
, ScDocument
& rDoc
)
41 SvNumberFormatter
* pFormatter
= rDoc
.GetFormatTable();
42 const SvNumberformat
* pFormat
= pFormatter
->GetEntry(nFormat
);
43 if (!pFormat
|| !pFormat
->IsStandard())
46 // The standard format is all-latin if the decimal separator doesn't
47 // have a different script type
50 LanguageType nFormatLang
= pFormat
->GetLanguage();
51 if (nFormatLang
== LANGUAGE_SYSTEM
)
52 aDecSep
= ScGlobal::pLocaleData
->getNumDecimalSep();
55 LocaleDataWrapper
aLocaleData(
56 comphelper::getProcessComponentContext(), LanguageTag(nFormatLang
));
57 aDecSep
= aLocaleData
.getNumDecimalSep();
60 SvtScriptType nScript
= rDoc
.GetStringScriptType(aDecSep
);
61 return (nScript
== SvtScriptType::NONE
|| nScript
== SvtScriptType::LATIN
);
66 /* vim:set shiftwidth=4 softtabstop=4 expandtab: */