LibreOffice Module sc (master) 1
numformat.cxx
Go to the documentation of this file.
1/* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
2/*
3 * This file is part of the LibreOffice project.
4 *
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/.
8 *
9 * This file incorporates work covered by the following license notice:
10 *
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 .
18 */
19
20#include <numformat.hxx>
21#include <patattr.hxx>
22#include <document.hxx>
23
25#include <svl/numformat.hxx>
26#include <svl/zformat.hxx>
28
29namespace sc {
30
32{
33 SvNumberFormatter* pFormatter = rDoc.GetFormatTable();
34 sal_uInt32 nKey = rPat.GetNumberFormat(pFormatter);
35 return isLatinScript(nKey, rDoc);
36}
37
39{
40 SvNumberFormatter* pFormatter = rDoc.GetFormatTable();
41 const SvNumberformat* pFormat = pFormatter->GetEntry(nFormat);
42 if (!pFormat || !pFormat->IsStandard())
43 return false;
44
45 // The standard format is all-latin if the decimal separator doesn't
46 // have a different script type
47
48 OUString aDecSep;
49 LanguageType nFormatLang = pFormat->GetLanguage();
50 if (nFormatLang == LANGUAGE_SYSTEM)
52 else
53 {
54 LocaleDataWrapper aLocaleData(
56 aDecSep = aLocaleData.getNumDecimalSep();
57 }
58
59 SvtScriptType nScript = rDoc.GetStringScriptType(aDecSep);
60 return (nScript == SvtScriptType::NONE || nScript == SvtScriptType::LATIN);
61}
62
63}
64
65/* vim:set shiftwidth=4 softtabstop=4 expandtab: */
const OUString & getNumDecimalSep() const
SC_DLLPUBLIC SvtScriptType GetStringScriptType(const OUString &rString)
Definition: documen6.cxx:76
SC_DLLPUBLIC SvNumberFormatter * GetFormatTable() const
Definition: documen2.cxx:467
static SC_DLLPUBLIC const LocaleDataWrapper & getLocaleData()
Definition: global.cxx:1055
sal_uInt32 GetNumberFormat(SvNumberFormatter *) const
Definition: patattr.cxx:1301
const SvNumberformat * GetEntry(sal_uInt32 nKey) const
LanguageType GetLanguage() const
bool IsStandard() const
static bool isLatinScript(const ScPatternAttr &rPat, ScDocument &rDoc)
Check if the attribute pattern has a number format that only produces latin script output.
Definition: numformat.cxx:31
#define LANGUAGE_SYSTEM
SvtScriptType
Reference< XComponentContext > getProcessComponentContext()
CAUTION! The following defines must be in the same namespace as the respective type.
Definition: broadcast.cxx:15
sal_uIntPtr sal_uLong