LCOV - code coverage report
Current view: top level - sc/source/filter/starcalc - scfobj.cxx (source / functions) Hit Total Coverage
Test: commit 0e63ca4fde4e446f346e35849c756a30ca294aab Lines: 0 21 0.0 %
Date: 2014-04-11 Functions: 0 1 0.0 %
Legend: Lines: hit not hit

          Line data    Source code
       1             : /* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
       2             : /*
       3             :  * This file is part of the LibreOffice project.
       4             :  *
       5             :  * This Source Code Form is subject to the terms of the Mozilla Public
       6             :  * License, v. 2.0. If a copy of the MPL was not distributed with this
       7             :  * file, You can obtain one at http://mozilla.org/MPL/2.0/.
       8             :  *
       9             :  * This file incorporates work covered by the following license notice:
      10             :  *
      11             :  *   Licensed to the Apache Software Foundation (ASF) under one or more
      12             :  *   contributor license agreements. See the NOTICE file distributed
      13             :  *   with this work for additional information regarding copyright
      14             :  *   ownership. The ASF licenses this file to you under the Apache
      15             :  *   License, Version 2.0 (the "License"); you may not use this file
      16             :  *   except in compliance with the License. You may obtain a copy of
      17             :  *   the License at http://www.apache.org/licenses/LICENSE-2.0 .
      18             :  */
      19             : 
      20             : #include <com/sun/star/embed/XEmbeddedObject.hpp>
      21             : #include <com/sun/star/embed/XVisualObject.hpp>
      22             : #include <com/sun/star/embed/Aspects.hpp>
      23             : 
      24             : 
      25             : using namespace com::sun::star;
      26             : 
      27             : #include <unotools/moduleoptions.hxx>
      28             : #include <svx/charthelper.hxx>
      29             : #include <svx/svdoole2.hxx>
      30             : #include <svx/svdpage.hxx>
      31             : #include <sfx2/objsh.hxx>
      32             : #include <sot/storage.hxx>
      33             : #include <sfx2/app.hxx>
      34             : #include <comphelper/classids.hxx>
      35             : #include "address.hxx"
      36             : 
      37             : #include "scfobj.hxx"
      38             : #include "document.hxx"
      39             : #include "drwlayer.hxx"
      40             : #include "chartarr.hxx"
      41             : 
      42             : 
      43             : // STATIC DATA -----------------------------------------------------------
      44             : 
      45             : 
      46           0 : void Sc10InsertObject::InsertChart( ScDocument* pDoc, SCTAB nDestTab, const Rectangle& rRect,
      47             :                                 SCTAB nSrcTab, sal_uInt16 nX1, sal_uInt16 nY1, sal_uInt16 nX2, sal_uInt16 nY2 )
      48             : {
      49             :     //  wenn Chart nicht installiert ist, darf nicht auf SCH_MOD zugegriffen werden!
      50           0 :     if ( !SvtModuleOptions().IsChart() )
      51           0 :         return;
      52             : 
      53           0 :     OUString aName;
      54             :     uno::Reference < embed::XEmbeddedObject > xObj = pDoc->GetDocumentShell()->
      55           0 :             GetEmbeddedObjectContainer().CreateEmbeddedObject( SvGlobalName( SO3_SCH_CLASSID ).GetByteSequence(), aName );
      56           0 :     if ( xObj.is() )
      57             :     {
      58           0 :         SdrOle2Obj* pSdrOle2Obj = new SdrOle2Obj( ::svt::EmbeddedObjectRef( xObj, embed::Aspects::MSOLE_CONTENT ), aName, rRect );
      59             : 
      60           0 :         ScDrawLayer* pModel = pDoc->GetDrawLayer();
      61           0 :         if (!pModel)
      62             :         {
      63           0 :             pDoc->InitDrawLayer();
      64           0 :             pModel = pDoc->GetDrawLayer();
      65             :             OSL_ENSURE(pModel,"Draw Layer ?");
      66             :         }
      67             : 
      68           0 :         SdrPage* pPage = pModel->GetPage(static_cast<sal_uInt16>(nDestTab));
      69             :         OSL_ENSURE(pPage,"Page ?");
      70           0 :         pPage->InsertObject(pSdrOle2Obj);
      71             : 
      72           0 :         pSdrOle2Obj->SetLogicRect(rRect);               // erst nach InsertObject !!!
      73           0 :         awt::Size aSz;
      74           0 :         aSz.Width = rRect.GetSize().Width();
      75           0 :         aSz.Height = rRect.GetSize().Height();
      76           0 :         xObj->setVisualAreaSize( embed::Aspects::MSOLE_CONTENT, aSz );
      77             : 
      78             :         // #i121334# This call will change the chart's default background fill from white to transparent.
      79             :         // Add here again if this is wanted (see task description for details)
      80             :         // ChartHelper::AdaptDefaultsForChart( xObj );
      81             : 
      82             :             // hier kann das Chart noch nicht mit Daten gefuettert werden,
      83             :             // weil die Formeln noch nicht berechnet sind.
      84             :             // Deshalb in die ChartCollection, die Daten werden dann im
      85             :             // Sc10Import dtor geholt.
      86             : 
      87           0 :         ScChartCollection* pColl = pDoc->GetChartCollection();
      88           0 :         pColl->push_back( new ScChartArray( pDoc, nSrcTab, static_cast<SCCOL>(nX1), static_cast<SCROW>(nY1), static_cast<SCCOL>(nX2), static_cast<SCROW>(nY2), aName ) );
      89           0 :     }
      90             : }
      91             : 
      92             : /* vim:set shiftwidth=4 softtabstop=4 expandtab: */

Generated by: LCOV version 1.10