diff options
author | Miklos Vajna <vmiklos@collabora.co.uk> | 2018-10-30 21:23:51 +0100 |
---|---|---|
committer | Miklos Vajna <vmiklos@collabora.co.uk> | 2018-10-31 09:00:22 +0100 |
commit | f4818faf83fef91099b2fee972ccf3cb25aedd30 (patch) | |
tree | e68408287bdb5d41b60eead3ad49f5c4accc6b98 /oox | |
parent | 42cbd5aa43f52d4de489fe0828bce4c5a324f9a0 (diff) |
oox: remove dead QuickDiagrammingLayout
This would create a com.sun.star.drawing.DiagramShape, and work with
that, but nobody implements such a service.
Change-Id: Iaaed3ace95d86e52ba50e059ab89698197709189
Reviewed-on: https://gerrit.libreoffice.org/62671
Tested-by: Jenkins
Reviewed-by: Miklos Vajna <vmiklos@collabora.co.uk>
Diffstat (limited to 'oox')
-rw-r--r-- | oox/Library_oox.mk | 1 | ||||
-rw-r--r-- | oox/source/ppt/dgmlayout.cxx | 160 |
2 files changed, 0 insertions, 161 deletions
diff --git a/oox/Library_oox.mk b/oox/Library_oox.mk index 66705fdc1611..845d3ba52c01 100644 --- a/oox/Library_oox.mk +++ b/oox/Library_oox.mk @@ -256,7 +256,6 @@ $(eval $(call gb_Library_add_exception_objects,oox,\ oox/source/ppt/commontimenodecontext \ oox/source/ppt/conditioncontext \ oox/source/ppt/customshowlistcontext \ - oox/source/ppt/dgmlayout \ oox/source/ppt/headerfootercontext \ oox/source/ppt/layoutfragmenthandler \ oox/source/ppt/pptfilterhelpers \ diff --git a/oox/source/ppt/dgmlayout.cxx b/oox/source/ppt/dgmlayout.cxx deleted file mode 100644 index 8857bc0da6de..000000000000 --- a/oox/source/ppt/dgmlayout.cxx +++ /dev/null @@ -1,160 +0,0 @@ -/* -*- 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 <basegfx/matrix/b2dhommatrix.hxx> -#include <oox/ppt/dgmlayout.hxx> -#include <oox/drawingml/theme.hxx> -#include <oox/drawingml/themefragmenthandler.hxx> -#include <drawingml/diagram/diagram.hxx> -#include <oox/dump/pptxdumper.hxx> - -#include <com/sun/star/awt/Rectangle.hpp> -#include <com/sun/star/beans/XPropertySet.hpp> -#include <com/sun/star/drawing/XShape.hpp> -#include <com/sun/star/drawing/XMasterPageTarget.hpp> -#include <com/sun/star/uno/XComponentContext.hpp> -#include <com/sun/star/xml/dom/XDocument.hpp> -#include <com/sun/star/xml/sax/XFastSAXSerializable.hpp> -#include <com/sun/star/container/XChild.hpp> - -using namespace ::com::sun::star; -using namespace ::com::sun::star::uno; -using namespace ::com::sun::star::xml::sax; -using namespace oox::core; -using namespace ::oox::drawingml; - -namespace oox { namespace ppt { - -QuickDiagrammingLayout::QuickDiagrammingLayout( const Reference< XComponentContext >& rxContext ) - : XmlFilterBase( rxContext ), - mpThemePtr(new drawingml::Theme()) -{} - -bool QuickDiagrammingLayout::importDocument() -{ - Reference<drawing::XShape> xParentShape(getParentShape(), - UNO_QUERY_THROW); - Reference<drawing::XShapes> xParentShapes(xParentShape, - UNO_QUERY_THROW); - Reference<beans::XPropertySet> xPropSet(xParentShape, - UNO_QUERY_THROW); - - // can we grab the theme from the master page? - Reference<container::XChild> xChild(xParentShape, - UNO_QUERY); - if( xChild.is() ) - { - // TODO: cater for diagram shapes inside groups - Reference<drawing::XMasterPageTarget> xMasterPageTarget(xChild->getParent(), - UNO_QUERY); - if( xMasterPageTarget.is() ) - { - uno::Reference<drawing::XDrawPage> xMasterPage( - xMasterPageTarget->getMasterPage()); - - Reference<beans::XPropertySet> xPropSet2(xMasterPage, - UNO_QUERY_THROW); - Reference<xml::dom::XDocument> xThemeFragment; - xPropSet2->getPropertyValue("PPTTheme") >>= xThemeFragment; - - importFragment( - new ThemeFragmentHandler( - *this, OUString(), *mpThemePtr ), - Reference<xml::sax::XFastSAXSerializable>( - xThemeFragment, - UNO_QUERY_THROW)); - } - } - - Reference<xml::dom::XDocument> xDataModelDom; - Reference<xml::dom::XDocument> xLayoutDom; - Reference<xml::dom::XDocument> xQStyleDom; - Reference<xml::dom::XDocument> xColorStyleDom; - - xPropSet->getPropertyValue("DiagramData") >>= xDataModelDom; - xPropSet->getPropertyValue("DiagramLayout") >>= xLayoutDom; - xPropSet->getPropertyValue("DiagramQStyle") >>= xQStyleDom; - xPropSet->getPropertyValue("DiagramColorStyle") >>= xColorStyleDom; - - oox::drawingml::ShapePtr pShape( - new oox::drawingml::Shape( "com.sun.star.drawing.DiagramShape" ) ); - drawingml::loadDiagram(pShape, - *this, - xDataModelDom, - xLayoutDom, - xQStyleDom, - xColorStyleDom); - - // don't add pShape itself, but only its children - pShape->setXShape(getParentShape()); - - basegfx::B2DHomMatrix aMatrix; - pShape->addChildren( *this, - mpThemePtr.get(), - xParentShapes, - aMatrix ); - - return true; -} - -bool QuickDiagrammingLayout::exportDocument() throw() -{ - return false; -} - -const ::oox::drawingml::Theme* QuickDiagrammingLayout::getCurrentTheme() const -{ - return mpThemePtr.get(); -} - -const oox::drawingml::table::TableStyleListPtr QuickDiagrammingLayout::getTableStyles() -{ - return oox::drawingml::table::TableStyleListPtr(); -} - -::oox::vml::Drawing* QuickDiagrammingLayout::getVmlDrawing() -{ - return nullptr; -} - -::oox::drawingml::chart::ChartConverter* QuickDiagrammingLayout::getChartConverter() -{ - return nullptr; -} - -OUString QuickDiagrammingLayout::getImplementationName() -{ - return OUString( "com.sun.star.comp.Impress.oox.QuickDiagrammingLayout" ); -} - -::oox::ole::VbaProject* QuickDiagrammingLayout::implCreateVbaProject() const -{ - return nullptr; -} - -}} - -extern "C" SAL_DLLPUBLIC_EXPORT uno::XInterface* -com_sun_star_comp_oox_ppt_QuickDiagrammingLayout_get_implementation( - uno::XComponentContext* pCtx, uno::Sequence<uno::Any> const& /*rSeq*/) -{ - return cppu::acquire(new oox::ppt::QuickDiagrammingLayout(pCtx)); -} - -/* vim:set shiftwidth=4 softtabstop=4 expandtab: */ |