summaryrefslogtreecommitdiff
path: root/writerfilter
diff options
context:
space:
mode:
authorMichael Stahl <mstahl@redhat.com>2015-12-19 23:29:17 +0100
committerMichael Stahl <mstahl@redhat.com>2015-12-20 00:56:06 +0100
commit9d0d41f0f3c5215770bc7246a089d54a7244df55 (patch)
treeeaba3086120ff72a2d2d896d5daa4120e32cae8c /writerfilter
parent17662cd7d4e5a201ba85f8236d2f71f544b7931e (diff)
move saveInteropProperties from writerfilter to oox
Change-Id: I4f9769ad496198d2d002775dee4ee0a2f08d6f3b
Diffstat (limited to 'writerfilter')
-rw-r--r--writerfilter/source/dmapper/OLEHandler.cxx44
-rw-r--r--writerfilter/source/dmapper/OLEHandler.hxx5
2 files changed, 5 insertions, 44 deletions
diff --git a/writerfilter/source/dmapper/OLEHandler.cxx b/writerfilter/source/dmapper/OLEHandler.cxx
index d282c7b5bfde..0fe095504c63 100644
--- a/writerfilter/source/dmapper/OLEHandler.cxx
+++ b/writerfilter/source/dmapper/OLEHandler.cxx
@@ -22,6 +22,7 @@
#include "GraphicHelpers.hxx"
#include <editeng/unoprnms.hxx>
+#include <oox/ole/oleobjecthelper.hxx>
#include <ooxml/resourceids.hxx>
#include <rtl/ustring.hxx>
#include <osl/diagnose.h>
@@ -179,43 +180,6 @@ void OLEHandler::lcl_sprm(Sprm & rSprm)
}
}
-
-void OLEHandler::saveInteropProperties(uno::Reference<text::XTextDocument> const& xTextDocument, const OUString& sObjectName, const OUString& sOldObjectName)
-{
- static const char sEmbeddingsPropName[] = "EmbeddedObjects";
-
- // get interop grab bag from document
- uno::Reference< beans::XPropertySet > xDocProps( xTextDocument, uno::UNO_QUERY );
- comphelper::SequenceAsHashMap aGrabBag(xDocProps->getPropertyValue(UNO_NAME_MISC_OBJ_INTEROPGRABBAG));
-
- // get EmbeddedObjects property inside grab bag
- comphelper::SequenceAsHashMap objectsList;
- if (aGrabBag.find(sEmbeddingsPropName) != aGrabBag.end())
- objectsList << aGrabBag[sEmbeddingsPropName];
-
- uno::Sequence< beans::PropertyValue > aGrabBagAttribute(2);
- aGrabBagAttribute[0].Name = "ProgID";
- aGrabBagAttribute[0].Value = uno::Any( m_sProgId );
- aGrabBagAttribute[1].Name = "DrawAspect";
- aGrabBagAttribute[1].Value = uno::Any( m_sDrawAspect );
-
- // If we got an "old name", erase that first.
- if (!sOldObjectName.isEmpty())
- {
- comphelper::SequenceAsHashMap::iterator it = objectsList.find(sOldObjectName);
- if (it != objectsList.end())
- objectsList.erase(it);
- }
-
- objectsList[sObjectName] = uno::Any( aGrabBagAttribute );
-
- // put objects list back into the grab bag
- aGrabBag[sEmbeddingsPropName] = uno::Any(objectsList.getAsConstPropertyValueList());
-
- // put grab bag back into the document
- xDocProps->setPropertyValue(UNO_NAME_MISC_OBJ_INTEROPGRABBAG, uno::Any(aGrabBag.getAsConstPropertyValueList()));
-}
-
void OLEHandler::importStream(uno::Reference<uno::XComponentContext> xComponentContext, uno::Reference<text::XTextDocument> xTextDocument, uno::Reference<text::XTextContent> xOLE)
{
OUString aFilterService;
@@ -248,7 +212,9 @@ void OLEHandler::importStream(uno::Reference<uno::XComponentContext> xComponentC
// Now that the data is imported, update the (typically) changed stream name.
uno::Reference<beans::XPropertySet> xPropertySet(xOLE, uno::UNO_QUERY);
- saveInteropProperties(xTextDocument, xPropertySet->getPropertyValue("StreamName").get<OUString>(), m_aURL);
+ ::oox::ole::SaveInteropProperties(xTextDocument,
+ xPropertySet->getPropertyValue("StreamName").get<OUString>(), &m_aURL,
+ m_sProgId, m_sDrawAspect);
}
OUString OLEHandler::getCLSID(uno::Reference<uno::XComponentContext> xComponentContext) const
@@ -305,7 +271,7 @@ OUString OLEHandler::copyOLEOStream(
}
}
- saveInteropProperties( xTextDocument, aURL );
+ ::oox::ole::SaveInteropProperties(xTextDocument, aURL, nullptr, m_sProgId, m_sDrawAspect);
static const char sProtocol[] = "vnd.sun.star.EmbeddedObject:";
OUString aPersistName( xEmbeddedResolver->resolveEmbeddedObjectURL( aURL ) );
diff --git a/writerfilter/source/dmapper/OLEHandler.hxx b/writerfilter/source/dmapper/OLEHandler.hxx
index 8e2cb1357aa2..8d6fbd6ac91b 100644
--- a/writerfilter/source/dmapper/OLEHandler.hxx
+++ b/writerfilter/source/dmapper/OLEHandler.hxx
@@ -76,11 +76,6 @@ class OLEHandler : public LoggedProperties
virtual void lcl_attribute(Id Name, Value & val) override;
virtual void lcl_sprm(Sprm & sprm) override;
- // Interoperability
- void saveInteropProperties(css::uno::Reference<css::text::XTextDocument> const& xTextDocument,
- const OUString& sObjectName,
- const OUString& sOldObjectName = OUString());
-
public:
OLEHandler(DomainMapper& rDomainMapper);
virtual ~OLEHandler();