/* -*- 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 using namespace com::sun::star; #include #include #include #include #include #include #include #include #include #include "address.hxx" #include "scfobj.hxx" #include "document.hxx" #include "drwlayer.hxx" #include "chartarr.hxx" void Sc10InsertObject::InsertChart( ScDocument* pDoc, SCTAB nDestTab, const Rectangle& rRect, SCTAB nSrcTab, sal_uInt16 nX1, sal_uInt16 nY1, sal_uInt16 nX2, sal_uInt16 nY2 ) { // if Chart is not installed, SCH_MOD cannot be used! if ( !SvtModuleOptions().IsChart() ) return; OUString aName; uno::Reference < embed::XEmbeddedObject > xObj = pDoc->GetDocumentShell()-> GetEmbeddedObjectContainer().CreateEmbeddedObject( SvGlobalName( SO3_SCH_CLASSID ).GetByteSequence(), aName ); if ( xObj.is() ) { SdrOle2Obj* pSdrOle2Obj = new SdrOle2Obj( ::svt::EmbeddedObjectRef( xObj, embed::Aspects::MSOLE_CONTENT ), aName, rRect ); ScDrawLayer* pModel = pDoc->GetDrawLayer(); if (!pModel) { pDoc->InitDrawLayer(); pModel = pDoc->GetDrawLayer(); OSL_ENSURE(pModel,"Draw Layer ?"); } SdrPage* pPage = pModel->GetPage(static_cast(nDestTab)); OSL_ENSURE(pPage,"Page ?"); pPage->InsertObject(pSdrOle2Obj); pSdrOle2Obj->SetLogicRect(rRect); // only after InsertObject !!! awt::Size aSz; aSz.Width = rRect.GetSize().Width(); aSz.Height = rRect.GetSize().Height(); xObj->setVisualAreaSize( embed::Aspects::MSOLE_CONTENT, aSz ); // #i121334# This call will change the chart's default background fill from white to transparent. // Add here again if this is wanted (see task description for details) // ChartHelper::AdaptDefaultsForChart( xObj ); // Cannot set source of chart here yet as formulas are not calculated yet. // Thus push into ChartCollection; the data is set in Sc10Import dtor. ScChartCollection* pColl = pDoc->GetChartCollection(); pColl->push_back( new ScChartArray( pDoc, nSrcTab, static_cast(nX1), static_cast(nY1), static_cast(nX2), static_cast(nY2), aName ) ); } } /* vim:set shiftwidth=4 softtabstop=4 expandtab: */