/* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */ /* * This file is part of the LibreOffice project. * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this * file, You can obtain one at http://mozilla.org/MPL/2.0/. * * This file incorporates work covered by the following license notice: * * Licensed to the Apache Software Foundation (ASF) under one or more * contributor license agreements. See the NOTICE file distributed * with this work for additional information regarding copyright * ownership. The ASF licenses this file to you under the Apache * License, Version 2.0 (the "License"); you may not use this file * except in compliance with the License. You may obtain a copy of * the License at http://www.apache.org/licenses/LICENSE-2.0 . */ #include #include using namespace ::com::sun::star::uno; using namespace ::com::sun::star::xml::sax; XMLEmbeddedObjectExportFilter::XMLEmbeddedObjectExportFilter( const Reference< XDocumentHandler > & rHandler ) noexcept : xHandler( rHandler ), xExtHandler( rHandler, UNO_QUERY ) { } XMLEmbeddedObjectExportFilter::~XMLEmbeddedObjectExportFilter () noexcept { } void SAL_CALL XMLEmbeddedObjectExportFilter::startDocument() { // do nothing, filter this } void SAL_CALL XMLEmbeddedObjectExportFilter::endDocument() { // do nothing, filter this } void SAL_CALL XMLEmbeddedObjectExportFilter::startElement( const OUString& rName, const Reference< XAttributeList >& xAttrList ) { xHandler->startElement( rName, xAttrList ); } void SAL_CALL XMLEmbeddedObjectExportFilter::endElement( const OUString& rName ) { xHandler->endElement( rName ); } void SAL_CALL XMLEmbeddedObjectExportFilter::characters( const OUString& rChars ) { xHandler->characters( rChars ); } void SAL_CALL XMLEmbeddedObjectExportFilter::ignorableWhitespace( const OUString& rWhitespaces ) { xHandler->ignorableWhitespace( rWhitespaces ); } void SAL_CALL XMLEmbeddedObjectExportFilter::processingInstruction( const OUString& rTarget, const OUString& rData ) { xHandler->processingInstruction( rTarget, rData ); } void SAL_CALL XMLEmbeddedObjectExportFilter::setDocumentLocator( const Reference< XLocator >& rLocator ) { xHandler->setDocumentLocator( rLocator ); } // XExtendedDocumentHandler void SAL_CALL XMLEmbeddedObjectExportFilter::startCDATA() { if( xExtHandler.is() ) xExtHandler->startCDATA(); } void SAL_CALL XMLEmbeddedObjectExportFilter::endCDATA() { if( xExtHandler.is() ) xExtHandler->endCDATA(); } void SAL_CALL XMLEmbeddedObjectExportFilter::comment( const OUString& rComment ) { if( xExtHandler.is() ) xExtHandler->comment( rComment ); } void SAL_CALL XMLEmbeddedObjectExportFilter::allowLineBreak() { if( xExtHandler.is() ) xExtHandler->allowLineBreak(); } void SAL_CALL XMLEmbeddedObjectExportFilter::unknown( const OUString& rString ) { if( xExtHandler.is() ) xExtHandler->unknown( rString ); } // XInitialize void SAL_CALL XMLEmbeddedObjectExportFilter::initialize( const Sequence< Any >& aArguments ) { for( const auto& rAny : aArguments ) { if( rAny.getValueType() == cppu::UnoType::get()) { rAny >>= xHandler; rAny >>= xExtHandler; } } } // XServiceInfo OUString SAL_CALL XMLEmbeddedObjectExportFilter::getImplementationName() { return OUString(); } sal_Bool SAL_CALL XMLEmbeddedObjectExportFilter::supportsService( const OUString& ServiceName ) { return cppu::supportsService(this, ServiceName); } Sequence< OUString > SAL_CALL XMLEmbeddedObjectExportFilter::getSupportedServiceNames( ) { Sequence< OUString > aSeq; return aSeq; } /* vim:set shiftwidth=4 softtabstop=4 expandtab: */