nss: upgrade to release 3.73
[LibreOffice.git] / xmloff / source / style / XMLFootnoteSeparatorImport.cxx
blobf2b776510e6c3517835274a73f63d9d802440d41
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 .
21 #include "XMLFootnoteSeparatorImport.hxx"
23 #include <rtl/ustring.hxx>
24 #include <sal/log.hxx>
26 #include <com/sun/star/uno/Reference.h>
27 #include <com/sun/star/xml/sax/XAttributeList.hpp>
28 #include <com/sun/star/text/HorizontalAdjust.hpp>
31 #include <sax/tools/converter.hxx>
33 #include <xmloff/xmlimp.hxx>
34 #include <xmloff/xmltoken.hxx>
35 #include <xmloff/xmluconv.hxx>
36 #include <xmloff/xmlprmap.hxx>
37 #include <xmloff/xmlnamespace.hxx>
38 #include <xmloff/namespacemap.hxx>
39 #include <xmloff/maptype.hxx>
40 #include <xmloff/xmlement.hxx>
42 #include <PageMasterStyleMap.hxx>
44 #include <vector>
47 using namespace ::com::sun::star;
48 using namespace ::xmloff::token;
50 using ::std::vector;
51 using ::com::sun::star::uno::Any;
52 using ::com::sun::star::uno::Reference;
53 using ::com::sun::star::xml::sax::XAttributeList;
56 XMLFootnoteSeparatorImport::XMLFootnoteSeparatorImport(
57 SvXMLImport& rImport,
58 sal_Int32 /*nElement*/,
59 vector<XMLPropertyState> & rProps,
60 const rtl::Reference<XMLPropertySetMapper> & rMapperRef,
61 sal_Int32 nIndex) :
62 SvXMLImportContext(rImport),
63 rProperties(rProps),
64 rMapper(rMapperRef),
65 nPropIndex(nIndex)
69 XMLFootnoteSeparatorImport::~XMLFootnoteSeparatorImport()
73 void XMLFootnoteSeparatorImport::startFastElement(
74 sal_Int32 /*nElement*/,
75 const Reference<css::xml::sax::XFastAttributeList> & xAttrList)
77 // get the values from the properties
78 sal_Int16 nLineWeight = 0;
79 sal_Int32 nLineColor = 0;
80 sal_Int8 nLineRelWidth = 0;
81 text::HorizontalAdjust eLineAdjust = text::HorizontalAdjust_LEFT;
82 sal_Int32 nLineTextDistance = 0;
83 sal_Int32 nLineDistance = 0;
85 // Default separator line style should be SOLID (used to be default before
86 // the choice selector was available)
87 sal_Int8 nLineStyle = 1;
89 // iterate over xattribute list and fill values
90 for (auto &aIter : sax_fastparser::castToFastAttributeList(xAttrList))
92 OUString sAttrValue = aIter.toString();
93 sal_Int32 nTmp;
94 switch (aIter.getToken())
96 case XML_ELEMENT(STYLE, XML_WIDTH):
98 if (GetImport().GetMM100UnitConverter().convertMeasureToCore(
99 nTmp, sAttrValue))
101 nLineWeight = static_cast<sal_Int16>(nTmp);
103 break;
105 case XML_ELEMENT(STYLE, XML_DISTANCE_BEFORE_SEP):
107 if (GetImport().GetMM100UnitConverter().convertMeasureToCore(
108 nTmp, sAttrValue))
109 nLineTextDistance = nTmp;
110 break;
112 case XML_ELEMENT(STYLE, XML_DISTANCE_AFTER_SEP):
114 if (GetImport().GetMM100UnitConverter().convertMeasureToCore(
115 nTmp, sAttrValue))
116 nLineDistance = nTmp;
117 break;
119 case XML_ELEMENT(STYLE, XML_ADJUSTMENT ):
121 static const SvXMLEnumMapEntry<text::HorizontalAdjust> aXML_HorizontalAdjust_Enum[] =
123 { XML_LEFT, text::HorizontalAdjust_LEFT },
124 { XML_CENTER, text::HorizontalAdjust_CENTER },
125 { XML_RIGHT, text::HorizontalAdjust_RIGHT },
126 { XML_TOKEN_INVALID, text::HorizontalAdjust(0) }
129 SvXMLUnitConverter::convertEnum(
130 eLineAdjust, sAttrValue, aXML_HorizontalAdjust_Enum);
131 break;
133 case XML_ELEMENT(STYLE, XML_REL_WIDTH ):
135 if (::sax::Converter::convertPercent(nTmp, sAttrValue))
136 nLineRelWidth = static_cast<sal_uInt8>(nTmp);
137 break;
139 case XML_ELEMENT(STYLE, XML_COLOR):
141 if (::sax::Converter::convertColor(nTmp, sAttrValue))
143 nLineColor = nTmp;
145 break;
147 case XML_ELEMENT(STYLE, XML_LINE_STYLE ):
149 static const SvXMLEnumMapEntry<sal_Int8> aXML_LineStyle_Enum[] =
151 { XML_NONE, 0 },
152 { XML_SOLID, 1 },
153 { XML_DOTTED, 2 },
154 { XML_DASH, 3 },
155 { XML_TOKEN_INVALID, 0 }
158 SvXMLUnitConverter::convertEnum(nLineStyle, sAttrValue, aXML_LineStyle_Enum);
159 break;
161 default:
162 XMLOFF_WARN_UNKNOWN("xmloff", aIter);
166 // OK, now we have all values and can fill the XMLPropertyState vector
167 sal_Int32 nIndex;
169 nIndex = rMapper->FindEntryIndex(CTF_PM_FTN_LINE_ADJUST);
170 XMLPropertyState aLineAdjust( nIndex, uno::Any(sal_Int16(eLineAdjust)) );
171 rProperties.push_back(aLineAdjust);
173 nIndex = rMapper->FindEntryIndex(CTF_PM_FTN_LINE_COLOR);
174 XMLPropertyState aLineColor( nIndex, uno::Any(nLineColor) );
175 rProperties.push_back(aLineColor);
177 nIndex = rMapper->FindEntryIndex(CTF_PM_FTN_LINE_STYLE);
178 XMLPropertyState aLineStyle( nIndex, uno::Any(nLineStyle) );
179 rProperties.push_back(aLineStyle);
181 nIndex = rMapper->FindEntryIndex(CTF_PM_FTN_DISTANCE);
182 XMLPropertyState aLineDistance( nIndex, uno::Any(nLineDistance) );
183 rProperties.push_back(aLineDistance);
185 nIndex = rMapper->FindEntryIndex(CTF_PM_FTN_LINE_WIDTH);
186 XMLPropertyState aLineRelWidth( nIndex, uno::Any(nLineRelWidth));
187 rProperties.push_back(aLineRelWidth);
189 nIndex = rMapper->FindEntryIndex(CTF_PM_FTN_LINE_DISTANCE);
190 XMLPropertyState aLineTextDistance( nIndex, uno::Any(nLineTextDistance));
191 rProperties.push_back(aLineTextDistance);
193 SAL_WARN_IF( rMapper->FindEntryIndex(CTF_PM_FTN_LINE_WEIGHT) != nPropIndex, "xmloff",
194 "Received wrong property map index!" );
195 XMLPropertyState aLineWeight( nPropIndex, uno::Any(nLineWeight) );
196 rProperties.push_back(aLineWeight);
199 /* vim:set shiftwidth=4 softtabstop=4 expandtab: */