b7381c5197
Change-Id: I292217537eb592cbad9af11f87402baa9f4cc442
601 lines
21 KiB
C++
601 lines
21 KiB
C++
/* -*- 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 <com/sun/star/xml/sax/XFastSAXSerializable.hpp>
|
|
|
|
#include "ShapeContextHandler.hxx"
|
|
#include "ShapeDrawingFragmentHandler.hxx"
|
|
#include "LockedCanvasContext.hxx"
|
|
#include "WpsContext.hxx"
|
|
#include "WpgContext.hxx"
|
|
#include "oox/vml/vmldrawingfragment.hxx"
|
|
#include "oox/vml/vmlshape.hxx"
|
|
#include "oox/drawingml/themefragmenthandler.hxx"
|
|
#include <boost/scoped_ptr.hpp>
|
|
#include <cppuhelper/supportsservice.hxx>
|
|
|
|
namespace oox { namespace shape {
|
|
|
|
using namespace ::com::sun::star;
|
|
using namespace core;
|
|
using namespace drawingml;
|
|
|
|
OUString SAL_CALL ShapeContextHandler_getImplementationName()
|
|
{
|
|
return OUString( "com.sun.star.comp.oox.ShapeContextHandler" );
|
|
}
|
|
|
|
uno::Sequence< OUString > SAL_CALL
|
|
ShapeContextHandler_getSupportedServiceNames()
|
|
{
|
|
uno::Sequence< OUString > s(1);
|
|
s[0] = "com.sun.star.xml.sax.FastShapeContextHandler";
|
|
return s;
|
|
}
|
|
|
|
uno::Reference< uno::XInterface > SAL_CALL
|
|
ShapeContextHandler_createInstance( const uno::Reference< uno::XComponentContext > & context)
|
|
SAL_THROW((uno::Exception))
|
|
{
|
|
return static_cast< ::cppu::OWeakObject* >( new ShapeContextHandler(context) );
|
|
}
|
|
|
|
|
|
ShapeContextHandler::ShapeContextHandler
|
|
(uno::Reference< uno::XComponentContext > const & context) :
|
|
mnStartToken(0), m_xContext(context)
|
|
{
|
|
try
|
|
{
|
|
mxFilterBase.set( new ShapeFilterBase(context) );
|
|
}
|
|
catch( uno::Exception& )
|
|
{
|
|
}
|
|
}
|
|
|
|
ShapeContextHandler::~ShapeContextHandler()
|
|
{
|
|
}
|
|
|
|
uno::Reference<xml::sax::XFastContextHandler> ShapeContextHandler::getLockedCanvasContext(sal_Int32 nElement)
|
|
{
|
|
if (!mxLockedCanvasContext.is())
|
|
{
|
|
FragmentHandler2Ref rFragmentHandler(new ShapeFragmentHandler(*mxFilterBase, msRelationFragmentPath));
|
|
ShapePtr pMasterShape;
|
|
|
|
switch (nElement & 0xffff)
|
|
{
|
|
case XML_lockedCanvas:
|
|
mxLockedCanvasContext.set(new LockedCanvasContext(*rFragmentHandler));
|
|
break;
|
|
default:
|
|
break;
|
|
}
|
|
}
|
|
|
|
return mxLockedCanvasContext;
|
|
}
|
|
|
|
/*
|
|
* This method creates new ChartGraphicDataContext Object.
|
|
*/
|
|
uno::Reference<xml::sax::XFastContextHandler> ShapeContextHandler::getChartShapeContext(sal_Int32 nElement)
|
|
{
|
|
if (!mxChartShapeContext.is())
|
|
{
|
|
switch (nElement & 0xffff)
|
|
{
|
|
case XML_chart:
|
|
{
|
|
boost::scoped_ptr<ContextHandler2Helper> pFragmentHandler(
|
|
new ShapeFragmentHandler(*mxFilterBase, msRelationFragmentPath));
|
|
mpShape.reset(new Shape("com.sun.star.drawing.OLE2Shape" ));
|
|
mxChartShapeContext.set(new ChartGraphicDataContext(*pFragmentHandler, mpShape, true));
|
|
break;
|
|
}
|
|
default:
|
|
break;
|
|
}
|
|
}
|
|
|
|
return mxChartShapeContext;
|
|
}
|
|
|
|
uno::Reference<xml::sax::XFastContextHandler> ShapeContextHandler::getWpsContext(sal_Int32 nStartElement, sal_Int32 nElement)
|
|
{
|
|
if (!mxWpsContext.is())
|
|
{
|
|
FragmentHandler2Ref rFragmentHandler(new ShapeFragmentHandler(*mxFilterBase, msRelationFragmentPath));
|
|
ShapePtr pMasterShape;
|
|
|
|
uno::Reference<drawing::XShape> xShape;
|
|
// No element happens in case of pretty-printed XML, bodyPr is the case when we are called again after <wps:txbx>.
|
|
if (!nElement || nElement == WPS_TOKEN(bodyPr))
|
|
// Assume that this is just a continuation of the previous shape.
|
|
xShape = mxSavedShape;
|
|
|
|
switch (getBaseToken(nStartElement))
|
|
{
|
|
case XML_wsp:
|
|
mxWpsContext.set(new WpsContext(*rFragmentHandler, xShape));
|
|
break;
|
|
default:
|
|
break;
|
|
}
|
|
}
|
|
|
|
return mxWpsContext;
|
|
}
|
|
|
|
uno::Reference<xml::sax::XFastContextHandler> ShapeContextHandler::getWpgContext(sal_Int32 nElement)
|
|
{
|
|
if (!mxWpgContext.is())
|
|
{
|
|
FragmentHandler2Ref rFragmentHandler(new ShapeFragmentHandler(*mxFilterBase, msRelationFragmentPath));
|
|
ShapePtr pMasterShape;
|
|
|
|
switch (getBaseToken(nElement))
|
|
{
|
|
case XML_wgp:
|
|
mxWpgContext.set(new WpgContext(*rFragmentHandler));
|
|
break;
|
|
default:
|
|
break;
|
|
}
|
|
}
|
|
|
|
return mxWpgContext;
|
|
}
|
|
|
|
uno::Reference<xml::sax::XFastContextHandler>
|
|
ShapeContextHandler::getGraphicShapeContext(::sal_Int32 Element )
|
|
{
|
|
if (! mxGraphicShapeContext.is())
|
|
{
|
|
boost::shared_ptr<ContextHandler2Helper> pFragmentHandler
|
|
(new ShapeFragmentHandler(*mxFilterBase, msRelationFragmentPath));
|
|
ShapePtr pMasterShape;
|
|
|
|
switch (Element & 0xffff)
|
|
{
|
|
case XML_graphic:
|
|
mpShape.reset(new Shape("com.sun.star.drawing.GraphicObjectShape" ));
|
|
mxGraphicShapeContext.set
|
|
(new GraphicalObjectFrameContext(*pFragmentHandler, pMasterShape, mpShape, true));
|
|
break;
|
|
case XML_pic:
|
|
mpShape.reset(new Shape("com.sun.star.drawing.GraphicObjectShape" ));
|
|
mxGraphicShapeContext.set
|
|
(new GraphicShapeContext(*pFragmentHandler, pMasterShape, mpShape));
|
|
break;
|
|
default:
|
|
break;
|
|
}
|
|
}
|
|
|
|
return mxGraphicShapeContext;
|
|
}
|
|
|
|
uno::Reference<xml::sax::XFastContextHandler>
|
|
ShapeContextHandler::getDrawingShapeContext()
|
|
{
|
|
if (!mxDrawingFragmentHandler.is())
|
|
{
|
|
mpDrawing.reset( new oox::vml::Drawing( *mxFilterBase, mxDrawPage, oox::vml::VMLDRAWING_WORD ) );
|
|
mxDrawingFragmentHandler.set
|
|
(dynamic_cast<ContextHandler *>
|
|
(new oox::vml::DrawingFragment
|
|
( *mxFilterBase, msRelationFragmentPath, *mpDrawing )));
|
|
}
|
|
|
|
return mxDrawingFragmentHandler;
|
|
}
|
|
|
|
uno::Reference<xml::sax::XFastContextHandler>
|
|
ShapeContextHandler::getDiagramShapeContext()
|
|
{
|
|
if (!mxDiagramShapeContext.is())
|
|
{
|
|
boost::shared_ptr<ContextHandler2Helper> pFragmentHandler(new ShapeFragmentHandler(*mxFilterBase, msRelationFragmentPath));
|
|
mpShape.reset(new Shape());
|
|
mxDiagramShapeContext.set(new DiagramGraphicDataContext(*pFragmentHandler, mpShape));
|
|
}
|
|
|
|
return mxDiagramShapeContext;
|
|
}
|
|
|
|
uno::Reference<xml::sax::XFastContextHandler>
|
|
ShapeContextHandler::getContextHandler(sal_Int32 nElement)
|
|
{
|
|
uno::Reference<xml::sax::XFastContextHandler> xResult;
|
|
|
|
switch (getNamespace( mnStartToken ))
|
|
{
|
|
case NMSP_doc:
|
|
case NMSP_vml:
|
|
xResult.set(getDrawingShapeContext());
|
|
break;
|
|
case NMSP_dmlDiagram:
|
|
xResult.set(getDiagramShapeContext());
|
|
break;
|
|
case NMSP_dmlLockedCanvas:
|
|
xResult.set(getLockedCanvasContext(mnStartToken));
|
|
break;
|
|
case NMSP_dmlChart:
|
|
xResult.set(getChartShapeContext(mnStartToken));
|
|
break;
|
|
case NMSP_wps:
|
|
xResult.set(getWpsContext(mnStartToken, nElement));
|
|
break;
|
|
case NMSP_wpg:
|
|
xResult.set(getWpgContext(mnStartToken));
|
|
break;
|
|
default:
|
|
xResult.set(getGraphicShapeContext(mnStartToken));
|
|
break;
|
|
}
|
|
|
|
return xResult;
|
|
}
|
|
|
|
// ::com::sun::star::xml::sax::XFastContextHandler:
|
|
void SAL_CALL ShapeContextHandler::startFastElement
|
|
(::sal_Int32 Element,
|
|
const uno::Reference< xml::sax::XFastAttributeList > & Attribs)
|
|
throw (uno::RuntimeException, xml::sax::SAXException, std::exception)
|
|
{
|
|
static const OUString sInputStream
|
|
("InputStream");
|
|
|
|
uno::Sequence<beans::PropertyValue> aSeq(1);
|
|
aSeq[0].Name = sInputStream;
|
|
aSeq[0].Value <<= mxInputStream;
|
|
mxFilterBase->filter(aSeq);
|
|
|
|
mpThemePtr.reset(new Theme());
|
|
|
|
if (Element == DGM_TOKEN(relIds) || Element == LC_TOKEN(lockedCanvas) || Element == C_TOKEN(chart) ||
|
|
Element == WPS_TOKEN(wsp) || Element == WPG_TOKEN(wgp) || Element == OOX_TOKEN(dmlPicture, pic))
|
|
{
|
|
// Parse the theme relation, if available; the diagram won't have colors without it.
|
|
if (!msRelationFragmentPath.isEmpty())
|
|
{
|
|
FragmentHandlerRef rFragmentHandler(new ShapeFragmentHandler(*mxFilterBase, msRelationFragmentPath));
|
|
OUString aThemeFragmentPath = rFragmentHandler->getFragmentPathFromFirstTypeFromOfficeDoc( "theme" );
|
|
if(!aThemeFragmentPath.isEmpty())
|
|
{
|
|
uno::Reference<xml::sax::XFastSAXSerializable> xDoc(mxFilterBase->importFragment(aThemeFragmentPath), uno::UNO_QUERY_THROW);
|
|
mxFilterBase->importFragment(new ThemeFragmentHandler(*mxFilterBase, aThemeFragmentPath, *mpThemePtr ), xDoc);
|
|
ShapeFilterBase* pShapeFilterBase(dynamic_cast<ShapeFilterBase*>(mxFilterBase.get()));
|
|
if (pShapeFilterBase)
|
|
pShapeFilterBase->setCurrentTheme(mpThemePtr);
|
|
}
|
|
}
|
|
|
|
createFastChildContext(Element, Attribs);
|
|
}
|
|
|
|
// Entering VML block (startFastElement() is called for the outermost tag),
|
|
// handle possible recursion.
|
|
if ( getContextHandler() == getDrawingShapeContext() )
|
|
mpDrawing->getShapes().pushMark();
|
|
|
|
uno::Reference<XFastContextHandler> xContextHandler(getContextHandler());
|
|
|
|
if (xContextHandler.is())
|
|
xContextHandler->startFastElement(Element, Attribs);
|
|
}
|
|
|
|
void SAL_CALL ShapeContextHandler::startUnknownElement
|
|
(const OUString & Namespace, const OUString & Name,
|
|
const uno::Reference< xml::sax::XFastAttributeList > & Attribs)
|
|
throw (uno::RuntimeException, xml::sax::SAXException, std::exception)
|
|
{
|
|
if ( getContextHandler() == getDrawingShapeContext() )
|
|
mpDrawing->getShapes().pushMark();
|
|
|
|
uno::Reference<XFastContextHandler> xContextHandler(getContextHandler());
|
|
|
|
if (xContextHandler.is())
|
|
xContextHandler->startUnknownElement(Namespace, Name, Attribs);
|
|
}
|
|
|
|
void SAL_CALL ShapeContextHandler::endFastElement(::sal_Int32 Element)
|
|
throw (uno::RuntimeException, xml::sax::SAXException, std::exception)
|
|
{
|
|
uno::Reference<XFastContextHandler> xContextHandler(getContextHandler());
|
|
|
|
if (xContextHandler.is())
|
|
xContextHandler->endFastElement(Element);
|
|
// In case a textbox is sent, and later we get additional properties for
|
|
// the textbox, then the wps context is not cleared, so do that here.
|
|
if (Element == (NMSP_wps | XML_wsp))
|
|
{
|
|
uno::Reference<lang::XServiceInfo> xServiceInfo(mxSavedShape, uno::UNO_QUERY);
|
|
if (xServiceInfo.is() && xServiceInfo->supportsService("com.sun.star.text.TextFrame"))
|
|
mxWpsContext.clear();
|
|
mxSavedShape.clear();
|
|
}
|
|
}
|
|
|
|
void SAL_CALL ShapeContextHandler::endUnknownElement
|
|
(const OUString & Namespace,
|
|
const OUString & Name)
|
|
throw (uno::RuntimeException, xml::sax::SAXException, std::exception)
|
|
{
|
|
uno::Reference<XFastContextHandler> xContextHandler(getContextHandler());
|
|
|
|
if (xContextHandler.is())
|
|
xContextHandler->endUnknownElement(Namespace, Name);
|
|
}
|
|
|
|
uno::Reference< xml::sax::XFastContextHandler > SAL_CALL
|
|
ShapeContextHandler::createFastChildContext
|
|
(::sal_Int32 Element,
|
|
const uno::Reference< xml::sax::XFastAttributeList > & Attribs)
|
|
throw (uno::RuntimeException, xml::sax::SAXException, std::exception)
|
|
{
|
|
uno::Reference< xml::sax::XFastContextHandler > xResult;
|
|
uno::Reference< xml::sax::XFastContextHandler > xContextHandler(getContextHandler(Element));
|
|
|
|
if (xContextHandler.is())
|
|
xResult.set(xContextHandler->createFastChildContext
|
|
(Element, Attribs));
|
|
|
|
return xResult;
|
|
}
|
|
|
|
uno::Reference< xml::sax::XFastContextHandler > SAL_CALL
|
|
ShapeContextHandler::createUnknownChildContext
|
|
(const OUString & Namespace,
|
|
const OUString & Name,
|
|
const uno::Reference< xml::sax::XFastAttributeList > & Attribs)
|
|
throw (uno::RuntimeException, xml::sax::SAXException, std::exception)
|
|
{
|
|
uno::Reference<XFastContextHandler> xContextHandler(getContextHandler());
|
|
|
|
if (xContextHandler.is())
|
|
return xContextHandler->createUnknownChildContext
|
|
(Namespace, Name, Attribs);
|
|
|
|
return uno::Reference< xml::sax::XFastContextHandler >();
|
|
}
|
|
|
|
void SAL_CALL ShapeContextHandler::characters(const OUString & aChars)
|
|
throw (uno::RuntimeException, xml::sax::SAXException, std::exception)
|
|
{
|
|
uno::Reference<XFastContextHandler> xContextHandler(getContextHandler());
|
|
|
|
if (xContextHandler.is())
|
|
xContextHandler->characters(aChars);
|
|
}
|
|
|
|
// ::com::sun::star::xml::sax::XFastShapeContextHandler:
|
|
uno::Reference< drawing::XShape > SAL_CALL
|
|
ShapeContextHandler::getShape() throw (uno::RuntimeException, std::exception)
|
|
{
|
|
uno::Reference< drawing::XShape > xResult;
|
|
uno::Reference< drawing::XShapes > xShapes( mxDrawPage, uno::UNO_QUERY );
|
|
|
|
if (mxFilterBase.is() && xShapes.is())
|
|
{
|
|
if ( getContextHandler() == getDrawingShapeContext() )
|
|
{
|
|
mpDrawing->finalizeFragmentImport();
|
|
if( boost::shared_ptr< vml::ShapeBase > pShape = mpDrawing->getShapes().takeLastShape() )
|
|
xResult = pShape->convertAndInsert( xShapes );
|
|
// Only now remove the recursion mark, because getShape() is called in writerfilter
|
|
// after endFastElement().
|
|
mpDrawing->getShapes().popMark();
|
|
}
|
|
else if (mxDiagramShapeContext.is())
|
|
{
|
|
basegfx::B2DHomMatrix aMatrix;
|
|
if (mpShape->getExtDrawings().size() == 0)
|
|
{
|
|
mpShape->addShape( *mxFilterBase, mpThemePtr.get(), xShapes, aMatrix, mpShape->getFillProperties() );
|
|
xResult = mpShape->getXShape();
|
|
}
|
|
else
|
|
{
|
|
// Prerendered diagram output is available, then use that, and throw away the original result.
|
|
for (std::vector<OUString>::const_iterator aIt = mpShape->getExtDrawings().begin(); aIt != mpShape->getExtDrawings().end(); ++aIt)
|
|
{
|
|
DiagramGraphicDataContext* pDiagramGraphicDataContext = dynamic_cast<DiagramGraphicDataContext*>(mxDiagramShapeContext.get());
|
|
OUString aFragmentPath(pDiagramGraphicDataContext->getFragmentPathFromRelId(*aIt));
|
|
oox::drawingml::ShapePtr pShapePtr( new Shape( "com.sun.star.drawing.GroupShape" ) );
|
|
pShapePtr->setDiagramType();
|
|
mxFilterBase->importFragment(new ShapeDrawingFragmentHandler(*mxFilterBase, aFragmentPath, pShapePtr));
|
|
|
|
uno::Sequence<beans::PropertyValue> aValue(mpShape->getDiagramDoms());
|
|
sal_Int32 length = aValue.getLength();
|
|
aValue.realloc(length+1);
|
|
beans::PropertyValue* pValue = aValue.getArray();
|
|
pValue[length].Name = "OOXDrawing";
|
|
pValue[length].Value = uno::makeAny( mxFilterBase->importFragment( aFragmentPath ) );
|
|
pShapePtr->setDiagramDoms( aValue );
|
|
|
|
pShapePtr->addShape( *mxFilterBase, mpThemePtr.get(), xShapes, aMatrix, pShapePtr->getFillProperties() );
|
|
xResult = pShapePtr->getXShape();
|
|
}
|
|
mpShape.reset((Shape*)0);
|
|
}
|
|
mxDiagramShapeContext.clear();
|
|
}
|
|
else if (mxLockedCanvasContext.is())
|
|
{
|
|
ShapePtr pShape = dynamic_cast<LockedCanvasContext*>(mxLockedCanvasContext.get())->getShape();
|
|
if (pShape)
|
|
{
|
|
basegfx::B2DHomMatrix aMatrix;
|
|
pShape->addShape(*mxFilterBase, mpThemePtr.get(), xShapes, aMatrix, pShape->getFillProperties());
|
|
xResult = pShape->getXShape();
|
|
mxLockedCanvasContext.clear();
|
|
}
|
|
}
|
|
else if (mxChartShapeContext.is())
|
|
{
|
|
ChartGraphicDataContext* pChartGraphicDataContext = dynamic_cast<ChartGraphicDataContext*>(mxChartShapeContext.get());
|
|
if (pChartGraphicDataContext)
|
|
{
|
|
basegfx::B2DHomMatrix aMatrix;
|
|
oox::drawingml::ShapePtr xShapePtr( pChartGraphicDataContext->getShape());
|
|
// See SwXTextDocument::createInstance(), ODF import uses the same hack.
|
|
xShapePtr->setServiceName("com.sun.star.drawing.temporaryForXMLImportOLE2Shape");
|
|
xShapePtr->addShape( *mxFilterBase, mpThemePtr.get(), xShapes, aMatrix, xShapePtr->getFillProperties() );
|
|
xResult = xShapePtr->getXShape();
|
|
}
|
|
mxChartShapeContext.clear();
|
|
}
|
|
else if (mxWpsContext.is())
|
|
{
|
|
ShapePtr pShape = dynamic_cast<WpsContext*>(mxWpsContext.get())->getShape();
|
|
if (pShape)
|
|
{
|
|
basegfx::B2DHomMatrix aMatrix;
|
|
pShape->setPosition(maPosition);
|
|
pShape->addShape(*mxFilterBase, mpThemePtr.get(), xShapes, aMatrix, pShape->getFillProperties());
|
|
xResult = pShape->getXShape();
|
|
mxSavedShape = xResult;
|
|
mxWpsContext.clear();
|
|
}
|
|
}
|
|
else if (mxWpgContext.is())
|
|
{
|
|
ShapePtr pShape = dynamic_cast<WpgContext*>(mxWpgContext.get())->getShape();
|
|
if (pShape)
|
|
{
|
|
basegfx::B2DHomMatrix aMatrix;
|
|
pShape->setPosition(maPosition);
|
|
pShape->addShape(*mxFilterBase, mpThemePtr.get(), xShapes, aMatrix, pShape->getFillProperties());
|
|
xResult = pShape->getXShape();
|
|
mxWpgContext.clear();
|
|
}
|
|
}
|
|
else if (mpShape.get() != NULL)
|
|
{
|
|
basegfx::B2DHomMatrix aTransformation;
|
|
mpShape->addShape(*mxFilterBase, mpThemePtr.get(), xShapes, aTransformation, mpShape->getFillProperties() );
|
|
xResult.set(mpShape->getXShape());
|
|
mxGraphicShapeContext.clear( );
|
|
}
|
|
}
|
|
|
|
return xResult;
|
|
}
|
|
|
|
css::uno::Reference< css::drawing::XDrawPage > SAL_CALL
|
|
ShapeContextHandler::getDrawPage() throw (css::uno::RuntimeException, std::exception)
|
|
{
|
|
return mxDrawPage;
|
|
}
|
|
|
|
void SAL_CALL ShapeContextHandler::setDrawPage
|
|
(const css::uno::Reference< css::drawing::XDrawPage > & the_value)
|
|
throw (css::uno::RuntimeException, std::exception)
|
|
{
|
|
mxDrawPage = the_value;
|
|
}
|
|
|
|
css::uno::Reference< css::frame::XModel > SAL_CALL
|
|
ShapeContextHandler::getModel() throw (css::uno::RuntimeException, std::exception)
|
|
{
|
|
if( !mxFilterBase.is() )
|
|
throw uno::RuntimeException();
|
|
return mxFilterBase->getModel();
|
|
}
|
|
|
|
void SAL_CALL ShapeContextHandler::setModel
|
|
(const css::uno::Reference< css::frame::XModel > & the_value)
|
|
throw (css::uno::RuntimeException, std::exception)
|
|
{
|
|
if( !mxFilterBase.is() )
|
|
throw uno::RuntimeException();
|
|
uno::Reference<lang::XComponent> xComp(the_value, uno::UNO_QUERY_THROW);
|
|
mxFilterBase->setTargetDocument(xComp);
|
|
}
|
|
|
|
uno::Reference< io::XInputStream > SAL_CALL
|
|
ShapeContextHandler::getInputStream() throw (uno::RuntimeException, std::exception)
|
|
{
|
|
return mxInputStream;
|
|
}
|
|
|
|
void SAL_CALL ShapeContextHandler::setInputStream
|
|
(const uno::Reference< io::XInputStream > & the_value)
|
|
throw (uno::RuntimeException, std::exception)
|
|
{
|
|
mxInputStream = the_value;
|
|
}
|
|
|
|
OUString SAL_CALL ShapeContextHandler::getRelationFragmentPath()
|
|
throw (uno::RuntimeException, std::exception)
|
|
{
|
|
return msRelationFragmentPath;
|
|
}
|
|
|
|
void SAL_CALL ShapeContextHandler::setRelationFragmentPath(const OUString & the_value)
|
|
throw (uno::RuntimeException, std::exception)
|
|
{
|
|
msRelationFragmentPath = the_value;
|
|
}
|
|
|
|
::sal_Int32 SAL_CALL ShapeContextHandler::getStartToken() throw (::com::sun::star::uno::RuntimeException, std::exception)
|
|
{
|
|
return mnStartToken;
|
|
}
|
|
|
|
void SAL_CALL ShapeContextHandler::setStartToken( ::sal_Int32 _starttoken ) throw (::com::sun::star::uno::RuntimeException, std::exception)
|
|
{
|
|
mnStartToken = _starttoken;
|
|
}
|
|
|
|
awt::Point SAL_CALL ShapeContextHandler::getPosition() throw (uno::RuntimeException, std::exception)
|
|
{
|
|
return maPosition;
|
|
}
|
|
|
|
void SAL_CALL ShapeContextHandler::setPosition(const awt::Point& rPosition) throw (uno::RuntimeException, std::exception)
|
|
{
|
|
maPosition = rPosition;
|
|
}
|
|
|
|
OUString ShapeContextHandler::getImplementationName()
|
|
throw (css::uno::RuntimeException, std::exception)
|
|
{
|
|
return ShapeContextHandler_getImplementationName();
|
|
}
|
|
|
|
uno::Sequence< OUString > ShapeContextHandler::getSupportedServiceNames()
|
|
throw (css::uno::RuntimeException, std::exception)
|
|
{
|
|
return ShapeContextHandler_getSupportedServiceNames();
|
|
}
|
|
|
|
::sal_Bool SAL_CALL ShapeContextHandler::supportsService(const OUString & ServiceName)
|
|
throw (css::uno::RuntimeException, std::exception)
|
|
{
|
|
return cppu::supportsService(this, ServiceName);
|
|
}
|
|
|
|
}}
|
|
|
|
/* vim:set shiftwidth=4 softtabstop=4 expandtab: */
|