LibreOffice Module xmloff (master) 1
sdxmlimp.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 <osl/thread.h>
21#include <sal/log.hxx>
24
25#include <xmloff/xmlscripti.hxx>
26#include "sdxmlimp_impl.hxx"
27#include "ximpbody.hxx"
28
29#include <xmloff/xmlmetai.hxx>
30#include "ximpstyl.hxx"
32#include <xmloff/xmltoken.hxx>
34#include <com/sun/star/awt/Rectangle.hpp>
35#include <com/sun/star/form/XFormsSupplier.hpp>
36#include <com/sun/star/frame/XModel.hpp>
37#include <com/sun/star/lang/XMultiServiceFactory.hpp>
38#include <com/sun/star/style/XStyleFamiliesSupplier.hpp>
39#include <com/sun/star/drawing/XMasterPagesSupplier.hpp>
40#include <com/sun/star/drawing/XDrawPagesSupplier.hpp>
43
45
46#include <com/sun/star/document/XDocumentProperties.hpp>
47#include <com/sun/star/document/XDocumentPropertiesSupplier.hpp>
48
49using namespace ::com::sun::star;
50using namespace ::xmloff::token;
51
52namespace {
53
54class SdXMLBodyContext_Impl : public SvXMLImportContext
55{
56 SdXMLImport& GetSdImport() { return static_cast<SdXMLImport&>(GetImport()); }
57
58public:
59
60 SdXMLBodyContext_Impl( SdXMLImport& rImport );
61
62 virtual css::uno::Reference< css::xml::sax::XFastContextHandler > SAL_CALL createFastChildContext(
63 sal_Int32 nElement, const css::uno::Reference< css::xml::sax::XFastAttributeList >& AttrList ) override;
64};
65
66}
67
68SdXMLBodyContext_Impl::SdXMLBodyContext_Impl( SdXMLImport& rImport ) :
69 SvXMLImportContext( rImport )
70{
71}
72
73css::uno::Reference< css::xml::sax::XFastContextHandler > SdXMLBodyContext_Impl::createFastChildContext(
74 sal_Int32 /*nElement*/,
75 const uno::Reference< xml::sax::XFastAttributeList > & /*xAttrList*/ )
76{
77 return new SdXMLBodyContext(GetSdImport());
78}
79
80namespace {
81
82// NB: virtually inherit so we can multiply inherit properly
83// in SdXMLFlatDocContext_Impl
84class SdXMLDocContext_Impl : public virtual SvXMLImportContext
85{
86protected:
87 SdXMLImport& GetSdImport() { return static_cast<SdXMLImport&>(GetImport()); }
88
89public:
90 SdXMLDocContext_Impl( SdXMLImport& rImport );
91
92 virtual css::uno::Reference< css::xml::sax::XFastContextHandler > SAL_CALL createFastChildContext(
93 sal_Int32 nElement, const css::uno::Reference< css::xml::sax::XFastAttributeList >& xAttrList ) override;
94};
95
96}
97
98SdXMLDocContext_Impl::SdXMLDocContext_Impl(
99 SdXMLImport& rImport )
100: SvXMLImportContext(rImport)
101{
102}
103
104uno::Reference< xml::sax::XFastContextHandler > SAL_CALL SdXMLDocContext_Impl::createFastChildContext(
105 sal_Int32 nElement, const uno::Reference< xml::sax::XFastAttributeList >& /*xAttrList*/ )
106{
107 switch (nElement)
108 {
109 case XML_ELEMENT(OFFICE, XML_SCRIPTS):
110 {
111 if( GetImport().getImportFlags() & SvXMLImportFlags::SCRIPTS )
112 {
113 // office:script inside office:document
114 return new XMLScriptContext( GetSdImport(), GetSdImport().GetModel() );
115 }
116 break;
117 }
118 case XML_ELEMENT(OFFICE, XML_MASTER_STYLES):
119 {
120 if( GetImport().getImportFlags() & SvXMLImportFlags::MASTERSTYLES )
121 {
122 // office:master-styles inside office:document
123 return GetSdImport().CreateMasterStylesContext();
124 }
125 break;
126 }
127 case XML_ELEMENT(OFFICE, XML_BODY):
128 {
129 if( GetImport().getImportFlags() & SvXMLImportFlags::CONTENT )
130 {
131 // office:body inside office:document
132 return new SdXMLBodyContext_Impl(GetSdImport());
133 }
134 break;
135 }
136 case XML_ELEMENT(OFFICE, XML_SETTINGS):
137 {
138 if( GetImport().getImportFlags() & SvXMLImportFlags::SETTINGS )
139 {
140 return new XMLDocumentSettingsContext(GetImport());
141 }
142 break;
143 }
144 case XML_ELEMENT(OFFICE, XML_STYLES):
145 {
146 if( GetImport().getImportFlags() & SvXMLImportFlags::STYLES )
147 {
148 // office:styles inside office:document
149 return GetSdImport().CreateStylesContext();
150 }
151 break;
152 }
153 case XML_ELEMENT(OFFICE, XML_AUTOMATIC_STYLES):
154 {
155 if( GetImport().getImportFlags() & SvXMLImportFlags::AUTOSTYLES )
156 {
157 // office:automatic-styles inside office:document
158 return GetSdImport().CreateAutoStylesContext();
159 }
160 break;
161 }
162 case XML_ELEMENT(OFFICE, XML_FONT_FACE_DECLS):
163 {
164 return GetSdImport().CreateFontDeclsContext();
165 }
166 case XML_ELEMENT(OFFICE, XML_META):
167 {
168 SAL_INFO("xmloff.draw", "XML_ELEMENT(OFFICE, XML_META): should not have come here, maybe document is invalid?");
169 break;
170 }
171 }
172 return nullptr;
173}
174
175namespace {
176
177// context for flat file xml format
178class SdXMLFlatDocContext_Impl
179 : public SdXMLDocContext_Impl, public SvXMLMetaDocumentContext
180{
181public:
182 SdXMLFlatDocContext_Impl( SdXMLImport& i_rImport,
183 const uno::Reference<document::XDocumentProperties>& i_xDocProps );
184
185 virtual css::uno::Reference< css::xml::sax::XFastContextHandler > SAL_CALL createFastChildContext(
186 sal_Int32 nElement, const css::uno::Reference< css::xml::sax::XFastAttributeList >& xAttrList ) override;
187};
188
189}
190
191SdXMLFlatDocContext_Impl::SdXMLFlatDocContext_Impl( SdXMLImport& i_rImport,
192 const uno::Reference<document::XDocumentProperties>& i_xDocProps) :
193 SvXMLImportContext(i_rImport),
194 SdXMLDocContext_Impl(i_rImport),
195 SvXMLMetaDocumentContext(i_rImport, i_xDocProps)
196{
197}
198
199uno::Reference< xml::sax::XFastContextHandler > SAL_CALL SdXMLFlatDocContext_Impl::createFastChildContext(
200 sal_Int32 nElement, const uno::Reference< xml::sax::XFastAttributeList >& xAttrList )
201{
202 // behave like meta base class iff we encounter office:meta
203 if ( nElement == XML_ELEMENT( OFFICE, XML_META ) ) {
205 nElement, xAttrList );
206 } else {
207 return SdXMLDocContext_Impl::createFastChildContext(
208 nElement, xAttrList );
209 }
210}
211
212extern "C" SAL_DLLPUBLIC_EXPORT uno::XInterface*
214 uno::XComponentContext* pCtx, uno::Sequence<uno::Any> const& /*rSeq*/)
215{
216 return cppu::acquire(
217 new SdXMLImport(pCtx, "XMLImpressImportOasis", false, SvXMLImportFlags::ALL));
218}
219
220extern "C" SAL_DLLPUBLIC_EXPORT uno::XInterface*
222 uno::Sequence<uno::Any> const& /*rSeq*/)
223{
224 return cppu::acquire(new SdXMLImport(pCtx, "XMLDrawImportOasis", true, SvXMLImportFlags::ALL));
225}
226
227extern "C" SAL_DLLPUBLIC_EXPORT uno::XInterface*
229 uno::Sequence<uno::Any> const& /*rSeq*/)
230{
231 return cppu::acquire(new SdXMLImport(pCtx, "XMLDrawStylesImportOasis", true,
234}
235
236extern "C" SAL_DLLPUBLIC_EXPORT uno::XInterface*
238 uno::XComponentContext* pCtx, uno::Sequence<uno::Any> const& /*rSeq*/)
239{
240 return cppu::acquire(new SdXMLImport(pCtx, "XMLDrawContentImportOasis", true,
244}
245
246extern "C" SAL_DLLPUBLIC_EXPORT uno::XInterface*
248 uno::XComponentContext* pCtx, uno::Sequence<uno::Any> const& /*rSeq*/)
249{
250 return cppu::acquire(
251 new SdXMLImport(pCtx, "XMLDrawMetaImportOasis", true, SvXMLImportFlags::META));
252}
253
254extern "C" SAL_DLLPUBLIC_EXPORT uno::XInterface*
256 uno::XComponentContext* pCtx, uno::Sequence<uno::Any> const& /*rSeq*/)
257{
258 return cppu::acquire(
259 new SdXMLImport(pCtx, "XMLDrawSettingsImportOasis", true, SvXMLImportFlags::SETTINGS));
260}
261
262extern "C" SAL_DLLPUBLIC_EXPORT uno::XInterface*
264 uno::XComponentContext* pCtx, uno::Sequence<uno::Any> const& /*rSeq*/)
265{
266 return cppu::acquire(new SdXMLImport(pCtx, "XMLImpressStylesImportOasis", false,
269}
270
271extern "C" SAL_DLLPUBLIC_EXPORT uno::XInterface*
273 uno::XComponentContext* pCtx, uno::Sequence<uno::Any> const& /*rSeq*/)
274{
275 return cppu::acquire(new SdXMLImport(pCtx, "XMLImpressContentImportOasis", false,
279}
280
281extern "C" SAL_DLLPUBLIC_EXPORT uno::XInterface*
283 uno::XComponentContext* pCtx, uno::Sequence<uno::Any> const& /*rSeq*/)
284{
285 return cppu::acquire(
286 new SdXMLImport(pCtx, "XMLImpressMetaImportOasis", false, SvXMLImportFlags::META));
287}
288
289extern "C" SAL_DLLPUBLIC_EXPORT uno::XInterface*
291 uno::XComponentContext* pCtx, uno::Sequence<uno::Any> const& /*rSeq*/)
292{
293 return cppu::acquire(
294 new SdXMLImport(pCtx, "XMLImpressSettingsImportOasis", false, SvXMLImportFlags::SETTINGS));
295}
296
298 const css::uno::Reference< css::uno::XComponentContext >& xContext,
299 OUString const & implementationName,
300 bool bIsDraw, SvXMLImportFlags nImportFlags )
301: SvXMLImport( xContext, implementationName, nImportFlags ),
302 mnNewPageCount(0),
303 mnNewMasterPageCount(0),
304 mbIsDraw(bIsDraw),
305 mbLoadDoc(true),
306 mbPreview(false)
307{
308 // add namespaces
309 GetNamespaceMap().Add(
313
314 GetNamespaceMap().Add(
316 GetXMLToken(XML_N_SMIL_COMPAT),
318}
319
320// XImporter
321void SAL_CALL SdXMLImport::setTargetDocument( const uno::Reference< lang::XComponent >& xDoc )
322{
323 SvXMLImport::setTargetDocument( xDoc );
324
325 uno::Reference< lang::XServiceInfo > xDocServices( GetModel(), uno::UNO_QUERY );
326 if( !xDocServices.is() )
327 throw lang::IllegalArgumentException();
328
329 mbIsDraw = !xDocServices->supportsService("com.sun.star.presentation.PresentationDocument");
330
331 // prepare access to styles
332 uno::Reference< style::XStyleFamiliesSupplier > xFamSup( GetModel(), uno::UNO_QUERY );
333 if(xFamSup.is())
334 mxDocStyleFamilies = xFamSup->getStyleFamilies();
335
336 if (!mbLoadDoc)
337 return;
338
339 // prepare access to master pages
340 uno::Reference < drawing::XMasterPagesSupplier > xMasterPagesSupplier(GetModel(), uno::UNO_QUERY);
341 if(xMasterPagesSupplier.is())
342 mxDocMasterPages = xMasterPagesSupplier->getMasterPages();
343
344 // prepare access to draw pages
345 uno::Reference <drawing::XDrawPagesSupplier> xDrawPagesSupplier(GetModel(), uno::UNO_QUERY);
346 if(!xDrawPagesSupplier.is())
347 throw lang::IllegalArgumentException();
348
349 mxDocDrawPages = xDrawPagesSupplier->getDrawPages();
350 if(!mxDocDrawPages.is())
351 throw lang::IllegalArgumentException();
352
353 if( mxDocDrawPages.is() && mxDocDrawPages->getCount() > 0 )
354 {
355 uno::Reference< form::XFormsSupplier > xFormsSupp;
356 mxDocDrawPages->getByIndex(0) >>= xFormsSupp;
357 mbIsFormsSupported = xFormsSupp.is();
358 }
359
360 // #88546# enable progress bar increments, SdXMLImport is only used for
361 // draw/impress import
362 GetShapeImport()->enableHandleProgressBar();
363
364 uno::Reference< lang::XMultiServiceFactory > xFac( GetModel(), uno::UNO_QUERY );
365 if( xFac.is() )
366 {
367 uno::Sequence< OUString > sSNS( xFac->getAvailableServiceNames() );
368 if (comphelper::findValue(sSNS, "com.sun.star.drawing.TableShape") != -1)
369 mbIsTableShapeSupported = true;
370 }
371}
372
373// XInitialization
374void SAL_CALL SdXMLImport::initialize( const uno::Sequence< uno::Any >& aArguments )
375{
376 SvXMLImport::initialize( aArguments );
377
378 static constexpr OUStringLiteral sOrganizerMode(u"OrganizerMode");
379 bool bStyleOnly(false);
380
381 css::beans::PropertyValue aPropValue;
382 if (aArguments.hasElements() && (aArguments[0] >>= aPropValue) && aPropValue.Name == sOrganizerMode)
383 {
384 aPropValue.Value >>= bStyleOnly;
385 mbLoadDoc = !bStyleOnly;
386 }
387
388 uno::Reference< beans::XPropertySet > xInfoSet( getImportInfo() );
389 if( !xInfoSet.is() )
390 return;
391
392 uno::Reference< beans::XPropertySetInfo > xInfoSetInfo( xInfoSet->getPropertySetInfo() );
393
394 if( xInfoSetInfo->hasPropertyByName( gsPageLayouts ) )
395 xInfoSet->getPropertyValue( gsPageLayouts ) >>= mxPageLayouts;
396
397 if( xInfoSetInfo->hasPropertyByName( gsPreview ) )
398 xInfoSet->getPropertyValue( gsPreview ) >>= mbPreview;
399
400 if (xInfoSetInfo->hasPropertyByName(sOrganizerMode))
401 {
402 if (xInfoSet->getPropertyValue(sOrganizerMode) >>= bStyleOnly)
403 {
404 mbLoadDoc = !bStyleOnly;
405 }
406 }
407}
408
410 const uno::Reference< xml::sax::XFastAttributeList >& xAttrList )
411{
412 SvXMLImportContext* pContext = nullptr;
413
414 switch (nElement)
415 {
419 pContext = new SdXMLDocContext_Impl(*this);
420 break;
422 pContext = CreateMetaContext(nElement, xAttrList);
423 break;
425 {
426 uno::Reference<document::XDocumentPropertiesSupplier> xDPS(
427 GetModel(), uno::UNO_QUERY_THROW);
428 // flat OpenDocument file format
429 pContext = new SdXMLFlatDocContext_Impl( *this, xDPS->getDocumentProperties());
430 }
431 break;
433 // internal xml file for built in styles
434 if (!mbLoadDoc)
435 pContext = CreateStylesContext();
436 break;
437 }
438 return pContext;
439}
440
442 const uno::Reference<xml::sax::XFastAttributeList>&)
443{
444 SvXMLImportContext* pContext = nullptr;
445
446 if (getImportFlags() & SvXMLImportFlags::META)
447 {
448 uno::Reference<document::XDocumentPropertiesSupplier> xDPS(
449 GetModel(), uno::UNO_QUERY_THROW);
450 uno::Reference<document::XDocumentProperties> const xDocProps(
451 !mbLoadDoc ? nullptr : xDPS->getDocumentProperties());
452 pContext = new SvXMLMetaDocumentContext(*this, xDocProps);
453 }
454
455 return pContext;
456}
457
459{
460 if(GetShapeImport()->GetStylesContext())
461 return GetShapeImport()->GetStylesContext();
462
463 GetShapeImport()->SetStylesContext(new SdXMLStylesContext(
464 *this, false));
465
466 return GetShapeImport()->GetStylesContext();
467}
468
470{
471 if(GetShapeImport()->GetAutoStylesContext())
472 return GetShapeImport()->GetAutoStylesContext();
473
474 GetShapeImport()->SetAutoStylesContext(new SdXMLStylesContext(
475 *this, true));
476
477 return GetShapeImport()->GetAutoStylesContext();
478}
479
481{
482 if (!mxMasterStylesContext.is())
484 return mxMasterStylesContext.get();
485}
486
488{
489 XMLFontStylesContext *pFSContext =
490 new XMLFontStylesContext( *this, osl_getThreadTextEncoding() );
491 SetFontDecls( pFSContext );
492 return pFSContext;
493}
494
495void SdXMLImport::SetViewSettings(const css::uno::Sequence<css::beans::PropertyValue>& aViewProps)
496{
497 uno::Reference< beans::XPropertySet > xPropSet( GetModel(), uno::UNO_QUERY );
498 if( !xPropSet.is() )
499 return;
500
501 awt::Rectangle aVisArea( 0,0, 28000, 21000 );
502
503 for( const auto& rViewProp : aViewProps )
504 {
505 const OUString& rName = rViewProp.Name;
506 const uno::Any rValue = rViewProp.Value;
507
508 if ( rName == "VisibleAreaTop" )
509 {
510 rValue >>= aVisArea.Y;
511 }
512 else if ( rName == "VisibleAreaLeft" )
513 {
514 rValue >>= aVisArea.X;
515 }
516 else if ( rName == "VisibleAreaWidth" )
517 {
518 rValue >>= aVisArea.Width;
519 }
520 else if ( rName == "VisibleAreaHeight" )
521 {
522 rValue >>= aVisArea.Height;
523 }
524 }
525
526 try
527 {
528 xPropSet->setPropertyValue("VisibleArea", uno::Any( aVisArea ) );
529 }
530 catch(const css::uno::Exception&)
531 {
532/* #i79978# since old documents may contain invalid view settings, this is nothing to worry the user about.
533 SetError( XMLERROR_FLAG_WARNING | XMLERROR_API, {}, e.Message, NULL );
534*/
535 }
536}
537
538void SdXMLImport::SetConfigurationSettings(const css::uno::Sequence<css::beans::PropertyValue>& aConfigProps)
539{
540 uno::Reference< lang::XMultiServiceFactory > xFac( GetModel(), uno::UNO_QUERY );
541 if( !xFac.is() )
542 return;
543
544 uno::Reference< beans::XPropertySet > xProps( xFac->createInstance("com.sun.star.document.Settings"), uno::UNO_QUERY );
545 if( !xProps.is() )
546 return;
547
548 uno::Reference< beans::XPropertySetInfo > xInfo( xProps->getPropertySetInfo() );
549 if( !xInfo.is() )
550 return;
551
552 const uno::Sequence<beans::PropertyValue>* pValues = &aConfigProps;
553
554 DocumentSettingsSerializer *pFilter;
555 pFilter = dynamic_cast<DocumentSettingsSerializer *>(xProps.get());
556 uno::Sequence<beans::PropertyValue> aFiltered;
557 if( pFilter )
558 {
559 aFiltered = pFilter->filterStreamsFromStorage( GetDocumentBase(), GetSourceStorage(), aConfigProps );
560 pValues = &aFiltered;
561 }
562
563 for( const auto& rValue : *pValues )
564 {
565 try
566 {
567 const OUString& rProperty = rValue.Name;
568 if( xInfo->hasPropertyByName( rProperty ) )
569 xProps->setPropertyValue( rProperty, rValue.Value );
570 }
571 catch(const uno::Exception&)
572 {
573 SAL_INFO("xmloff.draw", "#SdXMLImport::SetConfigurationSettings: Exception!" );
574 }
575 }
576}
577
578// #80365# override this method to read and use the hint value from the
579// written meta information. If no info is found, guess 10 draw objects
580//void SdXMLImport::SetStatisticAttributes(const uno::Reference<xml::sax::XAttributeList>& xAttrList)
582 const uno::Sequence<beans::NamedValue> & i_rStats)
583{
584 static const char* s_stats[] =
585 { "ObjectCount", nullptr };
586
587 SvXMLImport::SetStatistics(i_rStats);
588
589 sal_uInt32 nCount(10);
590 for (const auto& rStat : i_rStats) {
591 for (const char** pStat = s_stats; *pStat != nullptr; ++pStat) {
592 if (rStat.Name.equalsAscii(*pStat)) {
593 sal_Int32 val = 0;
594 if (rStat.Value >>= val) {
595 nCount = val;
596 } else {
597 SAL_WARN("xmloff.draw", "SdXMLImport::SetStatistics: invalid entry");
598 }
599 }
600 }
601 }
602
603 if(nCount)
604 {
605 GetProgressBarHelper()->SetReference(nCount);
606 GetProgressBarHelper()->SetValue(0);
607 }
608}
609
610void SdXMLImport::AddHeaderDecl( const OUString& rName, const OUString& rText )
611{
612 if( !rName.isEmpty() && !rText.isEmpty() )
613 maHeaderDeclsMap[rName] = rText;
614}
615
616void SdXMLImport::AddFooterDecl( const OUString& rName, const OUString& rText )
617{
618 if( !rName.isEmpty() && !rText.isEmpty() )
619 maFooterDeclsMap[rName] = rText;
620}
621
622void SdXMLImport::AddDateTimeDecl( const OUString& rName, const OUString& rText, bool bFixed, const OUString& rDateTimeFormat )
623{
624 if( !rName.isEmpty() && (!rText.isEmpty() || !bFixed) )
625 {
627 aDecl.maStrText = rText;
628 aDecl.mbFixed = bFixed;
629 aDecl.maStrDateTimeFormat = rDateTimeFormat;
630 maDateTimeDeclsMap[rName] = aDecl;
631 }
632}
633
634OUString SdXMLImport::GetHeaderDecl( const OUString& rName ) const
635{
636 OUString aRet;
637 HeaderFooterDeclMap::const_iterator aIter( maHeaderDeclsMap.find( rName ) );
638 if( aIter != maHeaderDeclsMap.end() )
639 aRet = (*aIter).second;
640
641 return aRet;
642}
643
644OUString SdXMLImport::GetFooterDecl( const OUString& rName ) const
645{
646 OUString aRet;
647 HeaderFooterDeclMap::const_iterator aIter( maFooterDeclsMap.find( rName ) );
648 if( aIter != maFooterDeclsMap.end() )
649 aRet = (*aIter).second;
650
651 return aRet;
652}
653
654OUString SdXMLImport::GetDateTimeDecl( const OUString& rName, bool& rbFixed, OUString& rDateTimeFormat )
655{
657
658 DateTimeDeclMap::const_iterator aIter( maDateTimeDeclsMap.find( rName ) );
659 if( aIter != maDateTimeDeclsMap.end() )
660 aDecl = (*aIter).second;
661
662 rbFixed = aDecl.mbFixed;
663 rDateTimeFormat = aDecl.maStrDateTimeFormat;
664 return aDecl.maStrText;
665}
666
668{
669 uno::Reference< lang::XMultiServiceFactory > xFac( GetModel(), uno::UNO_QUERY );
670 if( xFac.is() )
671 {
672 uno::Reference< beans::XPropertySet > xProps( xFac->createInstance("com.sun.star.document.Settings"), uno::UNO_QUERY );
673 if( xProps.is() )
674 xProps->setPropertyValue("EmbedFonts", uno::Any( true ) );
675 }
676}
677
678/* vim:set shiftwidth=4 softtabstop=4 expandtab: */
const PropertyValue * pValues
void AddFooterDecl(const OUString &rName, const OUString &rText)
Definition: sdxmlimp.cxx:616
SvXMLStylesContext * CreateStylesContext()
Definition: sdxmlimp.cxx:458
virtual void SAL_CALL setTargetDocument(const css::uno::Reference< css::lang::XComponent > &xDoc) override
Definition: sdxmlimp.cxx:321
rtl::Reference< SdXMLMasterStylesContext > mxMasterStylesContext
virtual SvXMLImportContext * CreateFastContext(sal_Int32 nElement, const ::css::uno::Reference< ::css::xml::sax::XFastAttributeList > &xAttrList) override
Definition: sdxmlimp.cxx:409
SvXMLImportContext * CreateFontDeclsContext()
Definition: sdxmlimp.cxx:487
static constexpr OUStringLiteral gsPreview
SvXMLImportContext * CreateMetaContext(const sal_Int32 nElement, const css::uno::Reference< css::xml::sax::XFastAttributeList > &xAttrList)
Definition: sdxmlimp.cxx:441
virtual void SAL_CALL initialize(const css::uno::Sequence< css::uno::Any > &aArguments) override
Definition: sdxmlimp.cxx:374
css::uno::Reference< css::container::XNameAccess > mxPageLayouts
OUString GetDateTimeDecl(const OUString &rName, bool &rbFixed, OUString &rDateTimeFormat)
Definition: sdxmlimp.cxx:654
HeaderFooterDeclMap maFooterDeclsMap
virtual void SetViewSettings(const css::uno::Sequence< css::beans::PropertyValue > &aViewProps) override
Definition: sdxmlimp.cxx:495
virtual void SetConfigurationSettings(const css::uno::Sequence< css::beans::PropertyValue > &aConfigProps) override
Definition: sdxmlimp.cxx:538
virtual void SetStatistics(const css::uno::Sequence< css::beans::NamedValue > &i_rStats) override
Definition: sdxmlimp.cxx:581
SvXMLImportContext * CreateMasterStylesContext()
Definition: sdxmlimp.cxx:480
css::uno::Reference< css::container::XIndexAccess > mxDocMasterPages
HeaderFooterDeclMap maHeaderDeclsMap
css::uno::Reference< css::container::XIndexAccess > mxDocDrawPages
static constexpr OUStringLiteral gsPageLayouts
DateTimeDeclMap maDateTimeDeclsMap
SdXMLImport(const css::uno::Reference< css::uno::XComponentContext > &xContext, OUString const &implementationName, bool bIsDraw, SvXMLImportFlags nImportFlags)
Definition: sdxmlimp.cxx:297
void AddHeaderDecl(const OUString &rName, const OUString &rText)
Definition: sdxmlimp.cxx:610
virtual void NotifyContainsEmbeddedFont() override
Definition: sdxmlimp.cxx:667
void AddDateTimeDecl(const OUString &rName, const OUString &rText, bool bFixed, const OUString &rDateTimeFormat)
Definition: sdxmlimp.cxx:622
SvXMLStylesContext * CreateAutoStylesContext()
Definition: sdxmlimp.cxx:469
OUString GetHeaderDecl(const OUString &rName) const
Definition: sdxmlimp.cxx:634
OUString GetFooterDecl(const OUString &rName) const
Definition: sdxmlimp.cxx:644
css::uno::Reference< css::container::XNameAccess > mxDocStyleFamilies
This class deliberately does not support XWeak, to improve performance when loading large documents.
Definition: xmlictxt.hxx:48
SvXMLImport & GetImport()
Definition: xmlictxt.hxx:60
virtual css::uno::Reference< XFastContextHandler > SAL_CALL createFastChildContext(sal_Int32 Element, const css::uno::Reference< css::xml::sax::XFastAttributeList > &Attribs) override
Definition: xmlictxt.cxx:59
handles the top-level office:document-meta element of meta.xml documents
Definition: xmlmetai.hxx:37
virtual css::uno::Reference< css::xml::sax::XFastContextHandler > SAL_CALL createFastChildContext(sal_Int32 nElement, const css::uno::Reference< css::xml::sax::XFastAttributeList > &xAttrList) override
Definition: xmlmetai.cxx:223
int nCount
float u
Sequence< PropertyValue > aArguments
#define SAL_WARN(area, stream)
#define SAL_INFO(area, stream)
sal_Int32 findValue(const css::uno::Sequence< T1 > &_rList, const T2 &_rValue)
constexpr OUStringLiteral implementationName
Handling of tokens in XML:
@ XML_DOCUMENT_SETTINGS
Definition: xmltoken.hxx:704
@ XML_NP_PRESENTATION
Definition: xmltoken.hxx:88
@ XML_AUTOMATIC_STYLES
Definition: xmltoken.hxx:303
@ XML_N_PRESENTATION
Definition: xmltoken.hxx:89
@ XML_DOCUMENT_CONTENT
Definition: xmltoken.hxx:702
const OUString & GetXMLToken(enum XMLTokenEnum eToken)
return the OUString representation for eToken
Definition: xmltoken.cxx:3541
SAL_DLLPUBLIC_EXPORT uno::XInterface * com_sun_star_comp_Impress_XMLOasisImporter_get_implementation(uno::XComponentContext *pCtx, uno::Sequence< uno::Any > const &)
Definition: sdxmlimp.cxx:213
SAL_DLLPUBLIC_EXPORT uno::XInterface * com_sun_star_comp_Impress_XMLOasisMetaImporter_get_implementation(uno::XComponentContext *pCtx, uno::Sequence< uno::Any > const &)
Definition: sdxmlimp.cxx:282
SAL_DLLPUBLIC_EXPORT uno::XInterface * com_sun_star_comp_Draw_XMLOasisImporter_get_implementation(uno::XComponentContext *pCtx, uno::Sequence< uno::Any > const &)
Definition: sdxmlimp.cxx:221
SAL_DLLPUBLIC_EXPORT uno::XInterface * com_sun_star_comp_Impress_XMLOasisSettingsImporter_get_implementation(uno::XComponentContext *pCtx, uno::Sequence< uno::Any > const &)
Definition: sdxmlimp.cxx:290
SAL_DLLPUBLIC_EXPORT uno::XInterface * com_sun_star_comp_Impress_XMLOasisStylesImporter_get_implementation(uno::XComponentContext *pCtx, uno::Sequence< uno::Any > const &)
Definition: sdxmlimp.cxx:263
SAL_DLLPUBLIC_EXPORT uno::XInterface * com_sun_star_comp_Draw_XMLOasisContentImporter_get_implementation(uno::XComponentContext *pCtx, uno::Sequence< uno::Any > const &)
Definition: sdxmlimp.cxx:237
SAL_DLLPUBLIC_EXPORT uno::XInterface * com_sun_star_comp_Draw_XMLOasisSettingsImporter_get_implementation(uno::XComponentContext *pCtx, uno::Sequence< uno::Any > const &)
Definition: sdxmlimp.cxx:255
SAL_DLLPUBLIC_EXPORT uno::XInterface * com_sun_star_comp_Draw_XMLOasisStylesImporter_get_implementation(uno::XComponentContext *pCtx, uno::Sequence< uno::Any > const &)
Definition: sdxmlimp.cxx:228
SAL_DLLPUBLIC_EXPORT uno::XInterface * com_sun_star_comp_Impress_XMLOasisContentImporter_get_implementation(uno::XComponentContext *pCtx, uno::Sequence< uno::Any > const &)
Definition: sdxmlimp.cxx:272
SAL_DLLPUBLIC_EXPORT uno::XInterface * com_sun_star_comp_Draw_XMLOasisMetaImporter_get_implementation(uno::XComponentContext *pCtx, uno::Sequence< uno::Any > const &)
Definition: sdxmlimp.cxx:247
Object Value
#define XML_ELEMENT(prefix, name)
Definition: xmlimp.hxx:97
SvXMLImportFlags
Definition: xmlimp.hxx:111
const struct statistic s_stats[]
constexpr sal_uInt16 XML_NAMESPACE_SMIL
constexpr sal_uInt16 XML_NAMESPACE_PRESENTATION