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 .
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>
34 #include <xmloff/xmlimp.hxx>
35 #include <xmloff/xmltoken.hxx>
36 #include <xmloff/xmluconv.hxx>
37 #include <xmloff/xmlprmap.hxx>
38 #include <xmloff/xmlnamespace.hxx>
39 #include <xmloff/namespacemap.hxx>
40 #include <xmloff/maptype.hxx>
41 #include <xmloff/xmlement.hxx>
43 #include <PageMasterStyleMap.hxx>
48 using namespace ::com::sun::star
;
49 using namespace ::xmloff::token
;
52 using ::com::sun::star::uno::Any
;
53 using ::com::sun::star::uno::Reference
;
56 XMLFootnoteSeparatorImport::XMLFootnoteSeparatorImport(
58 sal_Int32
/*nElement*/,
59 vector
<XMLPropertyState
> & rProps
,
60 rtl::Reference
<XMLPropertySetMapper
> xMapperRef
,
62 SvXMLImportContext(rImport
),
64 rMapper(std::move(xMapperRef
)),
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
))
93 switch (aIter
.getToken())
95 case XML_ELEMENT(STYLE
, XML_WIDTH
):
97 if (GetImport().GetMM100UnitConverter().convertMeasureToCore(
98 nTmp
, aIter
.toView()))
100 nLineWeight
= static_cast<sal_Int16
>(nTmp
);
104 case XML_ELEMENT(STYLE
, XML_DISTANCE_BEFORE_SEP
):
106 if (GetImport().GetMM100UnitConverter().convertMeasureToCore(
107 nTmp
, aIter
.toView()))
108 nLineTextDistance
= nTmp
;
111 case XML_ELEMENT(STYLE
, XML_DISTANCE_AFTER_SEP
):
113 if (GetImport().GetMM100UnitConverter().convertMeasureToCore(
114 nTmp
, aIter
.toView()))
115 nLineDistance
= nTmp
;
118 case XML_ELEMENT(STYLE
, XML_ADJUSTMENT
):
120 static const SvXMLEnumMapEntry
<text::HorizontalAdjust
> aXML_HorizontalAdjust_Enum
[] =
122 { XML_LEFT
, text::HorizontalAdjust_LEFT
},
123 { XML_CENTER
, text::HorizontalAdjust_CENTER
},
124 { XML_RIGHT
, text::HorizontalAdjust_RIGHT
},
125 { XML_TOKEN_INVALID
, text::HorizontalAdjust(0) }
128 SvXMLUnitConverter::convertEnum(
129 eLineAdjust
, aIter
.toView(), aXML_HorizontalAdjust_Enum
);
132 case XML_ELEMENT(STYLE
, XML_REL_WIDTH
):
134 if (::sax::Converter::convertPercent(nTmp
, aIter
.toView()))
135 nLineRelWidth
= static_cast<sal_uInt8
>(nTmp
);
138 case XML_ELEMENT(STYLE
, XML_COLOR
):
140 if (::sax::Converter::convertColor(nTmp
, aIter
.toView()))
146 case XML_ELEMENT(STYLE
, XML_LINE_STYLE
):
148 static const SvXMLEnumMapEntry
<sal_Int8
> aXML_LineStyle_Enum
[] =
154 { XML_TOKEN_INVALID
, 0 }
157 SvXMLUnitConverter::convertEnum(nLineStyle
, aIter
.toView(), aXML_LineStyle_Enum
);
161 XMLOFF_WARN_UNKNOWN("xmloff", aIter
);
165 // OK, now we have all values and can fill the XMLPropertyState vector
168 nIndex
= rMapper
->FindEntryIndex(CTF_PM_FTN_LINE_ADJUST
);
169 XMLPropertyState
aLineAdjust( nIndex
, uno::Any(sal_Int16(eLineAdjust
)) );
170 rProperties
.push_back(aLineAdjust
);
172 nIndex
= rMapper
->FindEntryIndex(CTF_PM_FTN_LINE_COLOR
);
173 XMLPropertyState
aLineColor( nIndex
, uno::Any(nLineColor
) );
174 rProperties
.push_back(aLineColor
);
176 nIndex
= rMapper
->FindEntryIndex(CTF_PM_FTN_LINE_STYLE
);
177 XMLPropertyState
aLineStyle( nIndex
, uno::Any(nLineStyle
) );
178 rProperties
.push_back(aLineStyle
);
180 nIndex
= rMapper
->FindEntryIndex(CTF_PM_FTN_DISTANCE
);
181 XMLPropertyState
aLineDistance( nIndex
, uno::Any(nLineDistance
) );
182 rProperties
.push_back(aLineDistance
);
184 nIndex
= rMapper
->FindEntryIndex(CTF_PM_FTN_LINE_WIDTH
);
185 XMLPropertyState
aLineRelWidth( nIndex
, uno::Any(nLineRelWidth
));
186 rProperties
.push_back(aLineRelWidth
);
188 nIndex
= rMapper
->FindEntryIndex(CTF_PM_FTN_LINE_DISTANCE
);
189 XMLPropertyState
aLineTextDistance( nIndex
, uno::Any(nLineTextDistance
));
190 rProperties
.push_back(aLineTextDistance
);
192 SAL_WARN_IF( rMapper
->FindEntryIndex(CTF_PM_FTN_LINE_WEIGHT
) != nPropIndex
, "xmloff",
193 "Received wrong property map index!" );
194 XMLPropertyState
aLineWeight( nPropIndex
, uno::Any(nLineWeight
) );
195 rProperties
.push_back(aLineWeight
);
198 /* vim:set shiftwidth=4 softtabstop=4 expandtab: */