From f4818faf83fef91099b2fee972ccf3cb25aedd30 Mon Sep 17 00:00:00 2001 From: Miklos Vajna Date: Tue, 30 Oct 2018 21:23:51 +0100 Subject: 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 --- oox/Library_oox.mk | 1 - oox/source/ppt/dgmlayout.cxx | 160 ------------------------------------------- 2 files changed, 161 deletions(-) delete mode 100644 oox/source/ppt/dgmlayout.cxx (limited to 'oox') 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 -#include -#include -#include -#include -#include - -#include -#include -#include -#include -#include -#include -#include -#include - -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 xParentShape(getParentShape(), - UNO_QUERY_THROW); - Reference xParentShapes(xParentShape, - UNO_QUERY_THROW); - Reference xPropSet(xParentShape, - UNO_QUERY_THROW); - - // can we grab the theme from the master page? - Reference xChild(xParentShape, - UNO_QUERY); - if( xChild.is() ) - { - // TODO: cater for diagram shapes inside groups - Reference xMasterPageTarget(xChild->getParent(), - UNO_QUERY); - if( xMasterPageTarget.is() ) - { - uno::Reference xMasterPage( - xMasterPageTarget->getMasterPage()); - - Reference xPropSet2(xMasterPage, - UNO_QUERY_THROW); - Reference xThemeFragment; - xPropSet2->getPropertyValue("PPTTheme") >>= xThemeFragment; - - importFragment( - new ThemeFragmentHandler( - *this, OUString(), *mpThemePtr ), - Reference( - xThemeFragment, - UNO_QUERY_THROW)); - } - } - - Reference xDataModelDom; - Reference xLayoutDom; - Reference xQStyleDom; - Reference 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 const& /*rSeq*/) -{ - return cppu::acquire(new oox::ppt::QuickDiagrammingLayout(pCtx)); -} - -/* vim:set shiftwidth=4 softtabstop=4 expandtab: */ -- cgit