LibreOffice Module xmloff (master) 1
xmlnumfe.hxx
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#ifndef INCLUDED_XMLOFF_XMLNUMFE_HXX
21#define INCLUDED_XMLOFF_XMLNUMFE_HXX
22
23#include <sal/config.h>
24#include <xmloff/dllapi.h>
25#include <sal/types.h>
26#include <com/sun/star/uno/Sequence.h>
27#include <rtl/ustrbuf.hxx>
28#include <i18nlangtag/lang.h>
29#include <memory>
30
31namespace com::sun::star::lang { struct Locale; }
32namespace com::sun::star::uno { template <typename > class Reference; }
33namespace com::sun::star::util { class XNumberFormatsSupplier; }
34
35inline constexpr OUStringLiteral XML_WRITTENNUMBERSTYLES = u"WrittenNumberStyles";
36
37class Color;
39class CharClass;
40class SvXMLExport;
42class SvNumberformat;
44
46
48{
49private:
51 OUString m_sPrefix;
53 OUStringBuffer m_sTextContent;
55 std::unique_ptr<SvXMLNumUsedList_Impl> m_pUsedList;
56 std::unique_ptr<LocaleDataWrapper> m_pLocaleData;
57
58 SAL_DLLPRIVATE void AddCalendarAttr_Impl( const OUString& rCalendar );
59 SAL_DLLPRIVATE void AddStyleAttr_Impl( bool bLong );
60 SAL_DLLPRIVATE void AddLanguageAttr_Impl( LanguageType nLang );
61
62 SAL_DLLPRIVATE void AddToTextElement_Impl( std::u16string_view rString );
63 SAL_DLLPRIVATE void FinishTextElement_Impl(bool bUseExtensionNS = false);
64
65 SAL_DLLPRIVATE void WriteColorElement_Impl( const Color& rColor );
66 SAL_DLLPRIVATE void WriteIntegerElement_Impl( sal_Int32 nInteger, sal_Int32 nBlankInteger, bool bGrouping );
67 SAL_DLLPRIVATE void WriteEmbeddedEntries_Impl( const SvXMLEmbeddedTextEntryArr& rEmbeddedEntries );
68 SAL_DLLPRIVATE void WriteNumberElement_Impl( sal_Int32 nDecimals, sal_Int32 nMinDecimals,
69 sal_Int32 nInteger, sal_Int32 nBlankInteger, const OUString& rDashStr,
70 bool bGrouping, sal_Int32 nTrailingThousands,
71 const SvXMLEmbeddedTextEntryArr& rEmbeddedEntries );
72 SAL_DLLPRIVATE void WriteScientificElement_Impl( sal_Int32 nDecimals, sal_Int32 nMinDecimals, sal_Int32 nInteger, sal_Int32 nBlankInteger,
73 bool bGrouping, sal_Int32 nExp, sal_Int32 nExpInterval, bool bExpSign,
74 const SvXMLEmbeddedTextEntryArr& rEmbeddedEntries );
75 SAL_DLLPRIVATE void WriteFractionElement_Impl( sal_Int32 nInteger, sal_Int32 nBlankInteger, bool bGrouping,
76 const SvNumberformat& rFormat, sal_uInt16 nPart );
77 SAL_DLLPRIVATE void WriteCurrencyElement_Impl( const OUString& rString,
78 std::u16string_view rExt );
79 SAL_DLLPRIVATE void WriteBooleanElement_Impl();
80 SAL_DLLPRIVATE void WriteTextContentElement_Impl();
81 SAL_DLLPRIVATE void WriteDayElement_Impl( const OUString& rCalendar, bool bLong );
82 SAL_DLLPRIVATE void WriteMonthElement_Impl( const OUString& rCalendar, bool bLong, bool bText );
83 SAL_DLLPRIVATE void WriteYearElement_Impl( const OUString& rCalendar, bool bLong );
84 SAL_DLLPRIVATE void WriteEraElement_Impl( const OUString& rCalendar, bool bLong );
85 SAL_DLLPRIVATE void WriteDayOfWeekElement_Impl( const OUString& rCalendar, bool bLong );
86 SAL_DLLPRIVATE void WriteWeekElement_Impl( const OUString& rCalendar );
87 SAL_DLLPRIVATE void WriteQuarterElement_Impl( const OUString& rCalendar, bool bLong );
88 SAL_DLLPRIVATE void WriteHoursElement_Impl( bool bLong );
89 SAL_DLLPRIVATE void WriteMinutesElement_Impl( bool bLong );
90 SAL_DLLPRIVATE void WriteSecondsElement_Impl( bool bLong, sal_uInt16 nDecimals );
91 SAL_DLLPRIVATE void WriteAMPMElement_Impl();
92 SAL_DLLPRIVATE void WriteMapElement_Impl( sal_Int32 nOp, double fLimit,
93 sal_Int32 nKey, sal_Int32 nPart );
94
95 SAL_DLLPRIVATE void WriteRepeatedElement_Impl( sal_Unicode ch );
96 SAL_DLLPRIVATE bool WriteTextWithCurrency_Impl( const OUString& rString,
97 const css::lang::Locale& rLocale );
98 SAL_DLLPRIVATE void ExportPart_Impl( const SvNumberformat& rFormat, sal_uInt32 nKey, sal_uInt32 nRealKey,
99 sal_uInt16 nPart, bool bDefPart );
100
101 SAL_DLLPRIVATE void ExportFormat_Impl( const SvNumberformat& rFormat, sal_uInt32 nKey, sal_uInt32 nRealKey );
102
103public:
105 const css::uno::Reference< css::util::XNumberFormatsSupplier >& rSupp );
107 const css::uno::Reference< css::util::XNumberFormatsSupplier >& rSupp,
108 OUString sPrefix );
109
111
112 // core API
113 void Export( bool bIsAutoStyle);
114
115 // mark number format as used
116 void SetUsed( sal_uInt32 nKey );
117
118 // get the style name that was generated for a key
119 OUString GetStyleName( sal_uInt32 nKey );
120
121 css::uno::Sequence<sal_Int32> GetWasUsed() const;
122 void SetWasUsed(const css::uno::Sequence<sal_Int32>& rWasUsed);
123
124
125 // two methods to allow the field import/export to treat system languages
126 // properly:
127
129 sal_uInt32 ForceSystemLanguage( sal_uInt32 nKey );
130};
131
132#endif
133
134/* vim:set shiftwidth=4 softtabstop=4 expandtab: */
OUString m_sPrefix
Definition: xmlnumfe.hxx:51
OUStringBuffer m_sTextContent
Definition: xmlnumfe.hxx:53
std::unique_ptr< LocaleDataWrapper > m_pLocaleData
Definition: xmlnumfe.hxx:56
SvXMLExport & m_rExport
Definition: xmlnumfe.hxx:50
std::unique_ptr< SvXMLNumUsedList_Impl > m_pUsedList
Definition: xmlnumfe.hxx:55
SvXMLNumFmtExport(SvXMLExport &rExport, const css::uno::Reference< css::util::XNumberFormatsSupplier > &rSupp)
SvNumberFormatter * m_pFormatter
Definition: xmlnumfe.hxx:52
#define XMLOFF_DLLPUBLIC
Definition: dllapi.h:29
float u
OUString sPrefix
Reference
sal_uInt16 sal_Unicode
constexpr OUStringLiteral XML_WRITTENNUMBERSTYLES
Definition: xmlnumfe.hxx:35