merge the formfield patch from ooo-build
[ooovba.git] / xmloff / source / script / XMLScriptExportHandler.cxx
blob92e4e70cd7c22036ea3a5c161cd129bcb52fe020
1 /*************************************************************************
3 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
4 *
5 * Copyright 2008 by Sun Microsystems, Inc.
7 * OpenOffice.org - a multi-platform office productivity suite
9 * $RCSfile: XMLScriptExportHandler.cxx,v $
10 * $Revision: 1.7 $
12 * This file is part of OpenOffice.org.
14 * OpenOffice.org is free software: you can redistribute it and/or modify
15 * it under the terms of the GNU Lesser General Public License version 3
16 * only, as published by the Free Software Foundation.
18 * OpenOffice.org is distributed in the hope that it will be useful,
19 * but WITHOUT ANY WARRANTY; without even the implied warranty of
20 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
21 * GNU Lesser General Public License version 3 for more details
22 * (a copy is included in the LICENSE file that accompanied this code).
24 * You should have received a copy of the GNU Lesser General Public License
25 * version 3 along with OpenOffice.org. If not, see
26 * <http://www.openoffice.org/license.html>
27 * for a copy of the LGPLv3 License.
29 ************************************************************************/
31 // MARKER(update_precomp.py): autogen include statement, do not remove
32 #include "precompiled_xmloff.hxx"
33 #include "XMLScriptExportHandler.hxx"
35 #ifndef _COM_SUN_STAR_BEANS_PROPERTYVALUE_HPP
36 #include <com/sun/star/beans/PropertyValue.hpp>
37 #endif
38 #include <tools/debug.hxx>
39 #include <xmloff/xmlexp.hxx>
40 #include <xmloff/xmltoken.hxx>
41 #include <xmloff/nmspmap.hxx>
42 #include "xmlnmspe.hxx"
45 using namespace ::com::sun::star::uno;
46 using namespace ::xmloff::token;
48 using ::rtl::OUString;
49 using ::com::sun::star::beans::PropertyValue;
52 XMLScriptExportHandler::XMLScriptExportHandler() :
53 sURL(RTL_CONSTASCII_USTRINGPARAM("Script"))
57 XMLScriptExportHandler::~XMLScriptExportHandler()
61 void XMLScriptExportHandler::Export(
62 SvXMLExport& rExport,
63 const OUString& rEventQName,
64 Sequence<PropertyValue> & rValues,
65 sal_Bool bUseWhitespace)
68 rExport.AddAttribute(XML_NAMESPACE_SCRIPT, XML_LANGUAGE,
69 rExport.GetNamespaceMap().GetQNameByKey(
70 XML_NAMESPACE_OOO, GetXMLToken(XML_SCRIPT) ) );
71 rExport.AddAttribute(XML_NAMESPACE_SCRIPT, XML_EVENT_NAME, rEventQName);
73 sal_Int32 nCount = rValues.getLength();
74 for(sal_Int32 i = 0; i < nCount; i++)
76 if (sURL.equals(rValues[i].Name))
78 OUString sTmp;
79 rValues[i].Value >>= sTmp;
80 rExport.AddAttribute(XML_NAMESPACE_XLINK, XML_HREF, sTmp);
82 // else: disregard
85 SvXMLElementExport aEventElemt(rExport, XML_NAMESPACE_SCRIPT,
86 XML_EVENT_LISTENER,
87 bUseWhitespace, sal_False);