LibreOffice Module xmloff (master) 1
XMLShapeStyleContext.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 <tools/debug.hxx>
21#include <sal/log.hxx>
24#include <xmloff/contextid.hxx>
25#include <com/sun/star/drawing/FillStyle.hpp>
26#include <com/sun/star/drawing/XControlShape.hpp>
27#include <com/sun/star/beans/XPropertySet.hpp>
28#include <com/sun/star/beans/XPropertySetInfo.hpp>
29#include <com/sun/star/lang/IllegalArgumentException.hpp>
30#include <com/sun/star/container/XIndexReplace.hpp>
31#include <xmloff/xmlimp.hxx>
32#include <xmloff/xmlnumi.hxx>
34#include <xmloff/xmlprmap.hxx>
35#include <xmloff/xmltoken.hxx>
36#include <xmloff/xmlerror.hxx>
37#include <xmloff/maptype.hxx>
38#include <xmloff/xmlimppr.hxx>
39
40#include <xmlsdtypes.hxx>
41
42using namespace ::com::sun::star;
43using namespace ::com::sun::star::uno;
44using namespace ::com::sun::star::beans;
45using namespace ::com::sun::star::drawing;
46using namespace ::xmloff::token;
47
48
50 SvXMLImport& rImport,
51 SvXMLStylesContext& rStyles,
52 XmlStyleFamily nFamily)
53: XMLPropStyleContext(rImport, rStyles, nFamily ),
54 m_bIsNumRuleAlreadyConverted( false )
55{
56}
57
59{
60}
61
62void XMLShapeStyleContext::SetAttribute( sal_Int32 nElement, const OUString& rValue )
63{
64 if (m_sControlDataStyleName.isEmpty() && (nElement & TOKEN_MASK) == XML_DATA_STYLE_NAME)
65 {
67 }
68 else if( nElement == XML_ELEMENT(STYLE, XML_LIST_STYLE_NAME) )
69 {
70 m_sListStyleName = rValue;
71 }
72 else
73 {
74 XMLPropStyleContext::SetAttribute( nElement, rValue );
75
76 if( nElement == XML_ELEMENT(STYLE, XML_NAME) || nElement == XML_ELEMENT(STYLE, XML_DISPLAY_NAME) )
77 {
78 if( !GetName().isEmpty() && !GetDisplayName().isEmpty() && GetName() != GetDisplayName() )
79 {
80 GetImport().
81 AddStyleDisplayName( GetFamily(), GetName(), GetDisplayName() );
82 }
83 }
84 }
85}
86
87css::uno::Reference< css::xml::sax::XFastContextHandler > XMLShapeStyleContext::createFastChildContext(
88 sal_Int32 nElement,
89 const css::uno::Reference< css::xml::sax::XFastAttributeList >& xAttrList )
90{
93 {
94 sal_Int32 nLocalName = nElement & TOKEN_MASK;
95 sal_uInt32 nFamily = 0;
96 if( nLocalName == XML_TEXT_PROPERTIES )
97 nFamily = XML_TYPE_PROP_TEXT;
98 else if( nLocalName == XML_PARAGRAPH_PROPERTIES )
100 else if( nLocalName == XML_GRAPHIC_PROPERTIES )
101 nFamily = XML_TYPE_PROP_GRAPHIC;
102 if( nFamily )
103 {
106 if( xImpPrMap.is() )
107 return new XMLShapePropertySetContext( GetImport(), nElement, xAttrList,
108 nFamily,
110 xImpPrMap );
111 }
112 }
113
114 return XMLPropStyleContext::createFastChildContext( nElement, xAttrList );
115}
116
117void XMLShapeStyleContext::FillPropertySet( const Reference< beans::XPropertySet > & rPropSet )
118{
120 {
122
123 // for compatibility to beta files, search for CTF_SD_NUMBERINGRULES_NAME to
124 // import numbering rules from the style:properties element
125 const rtl::Reference< XMLPropertySetMapper >&rMapper = GetStyles()->GetImportPropertyMapper( GetFamily() )->getPropertySetMapper();
126
127 ::std::vector< XMLPropertyState > &rProperties = GetProperties();
128 ::std::vector< XMLPropertyState >::iterator end( rProperties.end() );
129
130 // first, look for the old format, where we had a text:list-style-name
131 // attribute in the style:properties element
132 auto property = std::find_if(rProperties.begin(), end, [&rMapper](XMLPropertyState& rProp) {
133 // find properties with context
134 return (rProp.mnIndex != -1) && (rMapper->GetEntryContextId( rProp.mnIndex ) == CTF_SD_NUMBERINGRULES_NAME); });
135
136 // if we did not find an old list-style-name in the properties, and we need one
137 // because we got a style:list-style attribute in the style-style element
138 // we generate one
139 if( (property == end) && ( !m_sListStyleName.isEmpty() ) )
140 {
141 sal_Int32 nIndex = rMapper->FindEntryIndex( CTF_SD_NUMBERINGRULES_NAME );
142 SAL_WARN_IF( -1 == nIndex, "xmloff", "can't find numbering rules property entry, can't set numbering rule!" );
143
144 XMLPropertyState aNewState( nIndex );
145 rProperties.push_back( aNewState );
146 end = rProperties.end();
147 property = end - 1;
148 }
149
150 // so, if we have an old or a new list style name, we set its value to
151 // a numbering rule
152 if( property != end )
153 {
154 if( m_sListStyleName.isEmpty() )
155 {
156 property->maValue >>= m_sListStyleName;
157 }
158
159 const SvxXMLListStyleContext *pListStyle = GetImport().GetTextImport()->FindAutoListStyle( m_sListStyleName );
160
161 SAL_WARN_IF( !pListStyle, "xmloff", "list-style not found for shape style" );
162 if( pListStyle )
163 {
164 uno::Reference< container::XIndexReplace > xNumRule( SvxXMLListStyleContext::CreateNumRule( GetImport().GetModel() ) );
165 pListStyle->FillUnoNumRule(xNumRule);
166 property->maValue <<= xNumRule;
167 }
168 else
169 {
170 property->mnIndex = -1;
171 }
172 }
173 }
174
175 struct ContextID_Index_Pair aContextIDs[] =
176 {
177 { CTF_DASHNAME, -1, drawing::FillStyle::FillStyle_MAKE_FIXED_SIZE },
178 { CTF_LINESTARTNAME, -1, drawing::FillStyle::FillStyle_MAKE_FIXED_SIZE },
179 { CTF_LINEENDNAME, -1, drawing::FillStyle::FillStyle_MAKE_FIXED_SIZE },
180 { CTF_FILLGRADIENTNAME, -1, drawing::FillStyle::FillStyle_GRADIENT },
181 { CTF_FILLTRANSNAME, -1, drawing::FillStyle::FillStyle_MAKE_FIXED_SIZE },
182 { CTF_FILLHATCHNAME, -1, drawing::FillStyle::FillStyle_HATCH },
183 { CTF_FILLBITMAPNAME, -1, drawing::FillStyle::FillStyle_BITMAP },
184 { CTF_SD_OLE_VIS_AREA_IMPORT_LEFT, -1, drawing::FillStyle::FillStyle_MAKE_FIXED_SIZE },
185 { CTF_SD_OLE_VIS_AREA_IMPORT_TOP, -1, drawing::FillStyle::FillStyle_MAKE_FIXED_SIZE },
186 { CTF_SD_OLE_VIS_AREA_IMPORT_WIDTH, -1, drawing::FillStyle::FillStyle_MAKE_FIXED_SIZE },
187 { CTF_SD_OLE_VIS_AREA_IMPORT_HEIGHT, -1, drawing::FillStyle::FillStyle_MAKE_FIXED_SIZE },
188 { -1, -1, drawing::FillStyle::FillStyle_MAKE_FIXED_SIZE }
189 };
190 static const XmlStyleFamily aFamilies[] =
191 {
199 };
200
203 SAL_WARN_IF( !xImpPrMap.is(), "xmloff", "There is the import prop mapper" );
204 if( xImpPrMap.is() )
205 xImpPrMap->FillPropertySet( GetProperties(), rPropSet, aContextIDs );
206
207 Reference< XPropertySetInfo > xInfo;
208 // get property set mapper
209 rtl::Reference<XMLPropertySetMapper> xPropMapper( xImpPrMap->getPropertySetMapper() );
210
211 for( sal_uInt16 i=0; aContextIDs[i].nContextID != -1; i++ )
212 {
213 sal_Int32 nIndex = aContextIDs[i].nIndex;
214 if( nIndex != -1 ) switch( aContextIDs[i].nContextID )
215 {
216 case CTF_DASHNAME:
218 case CTF_LINEENDNAME:
223 {
224 struct XMLPropertyState& rState = GetProperties()[nIndex];
225 OUString sStyleName;
226 rState.maValue >>= sStyleName;
227 sStyleName = GetImport().GetStyleDisplayName( aFamilies[i], sStyleName );
228 // All of these attributes refer to something with draw:name
229 // of type styleName = NCName which is non-empty.
230 // tdf#89802: for Writer frames there would be no exception here but
231 // it will fail later on attach() and take out the entire frame
232 if (sStyleName.isEmpty() &&
233 ( CTF_FILLGRADIENTNAME == aContextIDs[i].nContextID
234 || CTF_FILLTRANSNAME == aContextIDs[i].nContextID
235 || CTF_FILLHATCHNAME == aContextIDs[i].nContextID
236 || CTF_FILLBITMAPNAME == aContextIDs[i].nContextID))
237 {
238 Sequence<OUString> const seq{ sStyleName };
239 GetImport().SetError(
241 seq, "empty style name reference", nullptr );
242 break;
243 }
244
245 if (::xmloff::IsIgnoreFillStyleNamedItem(rPropSet, aContextIDs[i].nExpectedFillStyle))
246 {
247 SAL_INFO("xmloff.style", "ShapeStyleContext: dropping fill named item: " << sStyleName);
248 break; // ignore it, it's not used
249 }
250
251 try
252 {
253
254 // set property
255 const OUString& rPropertyName = xPropMapper->GetEntryAPIName(rState.mnIndex);
256 if( !xInfo.is() )
257 xInfo = rPropSet->getPropertySetInfo();
258 if ( xInfo->hasPropertyByName( rPropertyName ) )
259 {
260 rPropSet->setPropertyValue( rPropertyName, Any( sStyleName ) );
261 }
262 }
263 catch ( const css::lang::IllegalArgumentException& e )
264 {
265 Sequence<OUString> aSeq { sStyleName };
266 GetImport().SetError(
268 aSeq, e.Message, nullptr );
269 }
270 break;
271 }
276 {
277 struct XMLPropertyState& rState = GetProperties()[nIndex];
278 const OUString& rPropertyName = xPropMapper->GetEntryAPIName(rState.mnIndex);
279 try
280 {
281 if( !xInfo.is() )
282 xInfo = rPropSet->getPropertySetInfo();
283 if ( xInfo->hasPropertyByName( rPropertyName ) )
284 {
285 rPropSet->setPropertyValue( rPropertyName, rState.maValue );
286 }
287 }
288 catch ( const css::lang::IllegalArgumentException& e )
289 {
290 Sequence<OUString> aSeq;
291 GetImport().SetError(
293 aSeq, e.Message, nullptr );
294 }
295 break;
296 }
297 }
298 }
299
300 if (m_sControlDataStyleName.isEmpty())
301 return;
302
303 // we had a data-style-name attribute
304
305 // set the formatting on the control model of the control shape
306 uno::Reference< drawing::XControlShape > xControlShape(rPropSet, uno::UNO_QUERY);
307 DBG_ASSERT(xControlShape.is(), "XMLShapeStyleContext::FillPropertySet: data style for a non-control shape!");
308 if (xControlShape.is())
309 {
310 uno::Reference< beans::XPropertySet > xControlModel(xControlShape->getControl(), uno::UNO_QUERY);
311 DBG_ASSERT(xControlModel.is(), "XMLShapeStyleContext::FillPropertySet: no control model for the shape!");
312 if (xControlModel.is())
313 {
314 GetImport().GetFormImport()->applyControlNumberStyle(xControlModel, m_sControlDataStyleName);
315 }
316 }
317}
318
319void XMLShapeStyleContext::Finish( bool /*bOverwrite*/ )
320{
321}
322
323/* vim:set shiftwidth=4 softtabstop=4 expandtab: */
SvXMLImport & GetImport()
Definition: xmlictxt.hxx:60
const OUString & GetName() const
Definition: xmlstyle.hxx:78
XmlStyleFamily GetFamily() const
Definition: xmlstyle.hxx:85
const OUString & GetDisplayName() const
Definition: xmlstyle.hxx:79
virtual rtl::Reference< SvXMLImportPropertyMapper > GetImportPropertyMapper(XmlStyleFamily nFamily) const
Definition: xmlstyle.cxx:522
void FillUnoNumRule(const css::uno::Reference< css::container::XIndexReplace > &rNumRule) const
Definition: xmlnumi.cxx:887
static css::uno::Reference< css::container::XIndexReplace > CreateNumRule(const css::uno::Reference< css::frame::XModel > &rModel)
Definition: xmlnumi.cxx:1031
virtual css::uno::Reference< css::xml::sax::XFastContextHandler > SAL_CALL createFastChildContext(sal_Int32 nElement, const css::uno::Reference< css::xml::sax::XFastAttributeList > &AttrList) override
Definition: prstylei.cxx:175
::std::vector< XMLPropertyState > & GetProperties()
Definition: prstylei.hxx:79
SvXMLStylesContext * GetStyles()
Definition: prstylei.hxx:78
virtual void SetAttribute(sal_Int32 nElement, const OUString &rValue) override
Definition: prstylei.cxx:57
virtual void FillPropertySet(const css::uno::Reference< css::beans::XPropertySet > &rPropSet) override
XMLShapeStyleContext(SvXMLImport &rImport, SvXMLStylesContext &rStyles, XmlStyleFamily nFamily)
virtual css::uno::Reference< css::xml::sax::XFastContextHandler > SAL_CALL createFastChildContext(sal_Int32 nElement, const css::uno::Reference< css::xml::sax::XFastAttributeList > &AttrList) override
virtual void Finish(bool bOverwrite) override
virtual void SetAttribute(sal_Int32 nElement, const OUString &rValue) override
virtual ~XMLShapeStyleContext() override
#define CTF_SD_NUMBERINGRULES_NAME
Definition: contextid.hxx:36
#define DBG_ASSERT(sCon, aError)
XmlStyleFamily
Definition: families.hxx:50
sal_Int32 nIndex
Sequence< sal_Int8 > aSeq
#define SAL_WARN_IF(condition, area, stream)
#define SAL_INFO(area, stream)
int i
end
Handling of tokens in XML:
@ XML_PARAGRAPH_PROPERTIES
Definition: xmltoken.hxx:2634
@ XML_GRAPHIC_PROPERTIES
Definition: xmltoken.hxx:2629
bool IsIgnoreFillStyleNamedItem(css::uno::Reference< css::beans::XPropertySet > const &xProps, drawing::FillStyle const nExpectedFillStyle)
Definition: ximpstyl.cxx:1451
This struct is used as an optional parameter to the static _FillPropertySet() methods.
Definition: xmlimppr.hxx:58
sal_Int16 nContextID
Definition: xmlimppr.hxx:59
Smart struct to transport an Any with an index to the appropriate property-name.
Definition: maptype.hxx:140
css::uno::Any maValue
Definition: maptype.hxx:142
sal_Int32 mnIndex
Definition: maptype.hxx:141
#define XMLERROR_STYLE_PROP_VALUE
Definition: xmlerror.hxx:68
#define XMLERROR_FLAG_WARNING
Definition: xmlerror.hxx:35
#define XML_ELEMENT(prefix, name)
Definition: xmlimp.hxx:97
constexpr bool IsTokenInNamespace(sal_Int32 nToken, sal_uInt16 nNamespacePrefix)
Definition: xmlimp.hxx:104
constexpr sal_Int32 TOKEN_MASK
Definition: xmlimp.hxx:94
constexpr sal_uInt16 XML_NAMESPACE_LO_EXT
constexpr sal_uInt16 XML_NAMESPACE_STYLE
#define CTF_SD_OLE_VIS_AREA_IMPORT_HEIGHT
Definition: xmlsdtypes.hxx:171
#define CTF_SD_OLE_VIS_AREA_IMPORT_LEFT
Definition: xmlsdtypes.hxx:168
#define CTF_DASHNAME
Definition: xmlsdtypes.hxx:135
#define CTF_FILLBITMAPNAME
Definition: xmlsdtypes.hxx:140
#define CTF_FILLGRADIENTNAME
Definition: xmlsdtypes.hxx:138
#define CTF_LINEENDNAME
Definition: xmlsdtypes.hxx:137
#define CTF_LINESTARTNAME
Definition: xmlsdtypes.hxx:136
#define CTF_SD_OLE_VIS_AREA_IMPORT_TOP
Definition: xmlsdtypes.hxx:169
#define CTF_FILLTRANSNAME
Definition: xmlsdtypes.hxx:141
#define CTF_FILLHATCHNAME
Definition: xmlsdtypes.hxx:139
#define CTF_SD_OLE_VIS_AREA_IMPORT_WIDTH
Definition: xmlsdtypes.hxx:170
#define XML_TYPE_PROP_GRAPHIC
Definition: xmltypes.hxx:94
#define XML_TYPE_PROP_PARAGRAPH
Definition: xmltypes.hxx:99
#define XML_TYPE_PROP_TEXT
Definition: xmltypes.hxx:98