bump product version to 5.0.4.1
[LibreOffice.git] / xmloff / source / draw / layerexp.cxx
blobe1a3727f97f0168e87de08ad69d72e4d46e9366c
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 <com/sun/star/drawing/XLayerSupplier.hpp>
22 #include <com/sun/star/container/XIndexAccess.hpp>
23 #include <com/sun/star/beans/XPropertySet.hpp>
24 #include <xmloff/xmltoken.hxx>
25 #include <xmloff/xmlnmspe.hxx>
26 #include <xmloff/xmlexp.hxx>
27 #include <xmloff/xmlement.hxx>
28 #include <xmloff/nmspmap.hxx>
29 #include "layerexp.hxx"
31 using ::com::sun::star::uno::Reference;
33 using namespace ::cppu;
34 using namespace ::com::sun::star;
35 using namespace ::com::sun::star::uno;
36 using namespace ::com::sun::star::drawing;
37 using namespace ::com::sun::star::beans;
38 using namespace ::com::sun::star::lang;
39 using namespace ::com::sun::star::container;
40 using namespace ::xmloff::token;
42 void SdXMLayerExporter::exportLayer( SvXMLExport& rExport )
44 Reference< XLayerSupplier > xLayerSupplier( rExport.GetModel(), UNO_QUERY );
45 if( !xLayerSupplier.is() )
46 return;
48 Reference< XIndexAccess > xLayerManager( xLayerSupplier->getLayerManager(), UNO_QUERY );
49 if( !xLayerManager.is() )
50 return;
52 const sal_Int32 nCount = xLayerManager->getCount();
53 if( nCount == 0 )
54 return;
56 const OUString strName( "Name" );
57 const OUString strTitle( "Title" );
58 const OUString strDescription( "Description" );
60 OUString sTmp;
62 SvXMLElementExport aElem( rExport, XML_NAMESPACE_DRAW, XML_LAYER_SET, true, true );
64 for( sal_Int32 nIndex = 0; nIndex < nCount; nIndex++ )
66 try
68 Reference< XPropertySet> xLayer( xLayerManager->getByIndex( nIndex ), UNO_QUERY_THROW );
69 xLayer->getPropertyValue( strName ) >>= sTmp;
70 if(!sTmp.isEmpty())
71 rExport.AddAttribute( XML_NAMESPACE_DRAW, XML_NAME, sTmp );
73 SvXMLElementExport aEle( rExport, XML_NAMESPACE_DRAW, XML_LAYER, true, true );
75 // title property (as <svg:title> element)
76 xLayer->getPropertyValue(strTitle) >>= sTmp;
77 if(!sTmp.isEmpty())
79 SvXMLElementExport aEventElemt(rExport, XML_NAMESPACE_SVG, XML_TITLE, true, false);
80 rExport.Characters(sTmp);
83 // description property (as <svg:desc> element)
84 xLayer->getPropertyValue(strDescription) >>= sTmp;
85 if(!sTmp.isEmpty())
87 SvXMLElementExport aDesc(rExport, XML_NAMESPACE_SVG, XML_DESC, true, false);
88 rExport.Characters(sTmp);
91 catch( Exception& )
93 OSL_FAIL("SdXMLayerExporter::exportLayer(), exception caught during export of one layer!");
98 /* vim:set shiftwidth=4 softtabstop=4 expandtab: */