LCOV - code coverage report
Current view: top level - svx/source/sdr/properties - e3dcompoundproperties.cxx (source / functions) Hit Total Coverage
Test: libreoffice_filtered.info Lines: 42 52 80.8 %
Date: 2012-08-25 Functions: 7 9 77.8 %
Legend: Lines: hit not hit | Branches: + taken - not taken # not executed Branches: 24 49 49.0 %

           Branch data     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 <svx/sdr/properties/e3dcompoundproperties.hxx>
      21                 :            : #include <svl/itemset.hxx>
      22                 :            : #include <svx/obj3d.hxx>
      23                 :            : #include <svx/scene3d.hxx>
      24                 :            : 
      25                 :            : //////////////////////////////////////////////////////////////////////////////
      26                 :            : 
      27                 :            : namespace sdr
      28                 :            : {
      29                 :            :     namespace properties
      30                 :            :     {
      31                 :       1939 :         E3dCompoundProperties::E3dCompoundProperties(SdrObject& rObj)
      32                 :       1939 :         :   E3dProperties(rObj)
      33                 :            :         {
      34                 :       1939 :         }
      35                 :            : 
      36                 :          0 :         E3dCompoundProperties::E3dCompoundProperties(const E3dCompoundProperties& rProps, SdrObject& rObj)
      37                 :          0 :         :   E3dProperties(rProps, rObj)
      38                 :            :         {
      39                 :          0 :         }
      40                 :            : 
      41                 :       1939 :         E3dCompoundProperties::~E3dCompoundProperties()
      42                 :            :         {
      43         [ -  + ]:       2377 :         }
      44                 :            : 
      45                 :          0 :         BaseProperties& E3dCompoundProperties::Clone(SdrObject& rObj) const
      46                 :            :         {
      47         [ #  # ]:          0 :             return *(new E3dCompoundProperties(*this, rObj));
      48                 :            :         }
      49                 :            : 
      50                 :     122353 :         const SfxItemSet& E3dCompoundProperties::GetObjectItemSet() const
      51                 :            :         {
      52                 :            :             //DBG_ASSERT(sal_False, "E3dCompoundProperties::GetObjectItemSet() maybe the wrong call (!)");
      53                 :     122353 :             return E3dProperties::GetObjectItemSet();
      54                 :            :         }
      55                 :            : 
      56                 :      25369 :         const SfxItemSet& E3dCompoundProperties::GetMergedItemSet() const
      57                 :            :         {
      58                 :            :             // include Items of scene this object belongs to
      59                 :      25369 :             E3dCompoundObject& rObj = (E3dCompoundObject&)GetSdrObject();
      60                 :      25369 :             E3dScene* pScene = rObj.GetScene();
      61                 :            : 
      62         [ +  - ]:      25369 :             if(pScene)
      63                 :            :             {
      64                 :            :                 // force ItemSet
      65         [ +  - ]:      25369 :                 GetObjectItemSet();
      66                 :            : 
      67                 :            :                 // add filtered scene properties (SDRATTR_3DSCENE_) to local itemset
      68         [ +  - ]:      25369 :                 SfxItemSet aSet(*mpItemSet->GetPool(), SDRATTR_3DSCENE_FIRST, SDRATTR_3DSCENE_LAST);
      69 [ +  - ][ +  - ]:      25369 :                 aSet.Put(pScene->GetProperties().GetObjectItemSet());
                 [ +  - ]
      70 [ +  - ][ +  - ]:      25369 :                 mpItemSet->Put(aSet);
      71                 :            :             }
      72                 :            : 
      73                 :            :             // call parent
      74                 :      25369 :             return E3dProperties::GetMergedItemSet();
      75                 :            :         }
      76                 :            : 
      77                 :       4424 :         void E3dCompoundProperties::SetMergedItemSet(const SfxItemSet& rSet, sal_Bool bClearAllItems)
      78                 :            :         {
      79                 :            :             // Set scene specific items at scene
      80                 :       4424 :             E3dCompoundObject& rObj = (E3dCompoundObject&)GetSdrObject();
      81                 :       4424 :             E3dScene* pScene = rObj.GetScene();
      82                 :            : 
      83         [ +  - ]:       4424 :             if(pScene)
      84                 :            :             {
      85                 :            :                 // force ItemSet
      86         [ +  - ]:       4424 :                 GetObjectItemSet();
      87                 :            : 
      88                 :            :                 // Generate filtered scene properties (SDRATTR_3DSCENE_) itemset
      89         [ +  - ]:       4424 :                 SfxItemSet aSet(*mpItemSet->GetPool(), SDRATTR_3DSCENE_FIRST, SDRATTR_3DSCENE_LAST);
      90         [ +  - ]:       4424 :                 aSet.Put(rSet);
      91                 :            : 
      92         [ -  + ]:       4424 :                 if(bClearAllItems)
      93                 :            :                 {
      94 [ #  # ][ #  # ]:          0 :                     pScene->GetProperties().ClearObjectItem();
      95                 :            :                 }
      96                 :            : 
      97         [ +  + ]:       4424 :                 if(aSet.Count())
      98                 :            :                 {
      99 [ +  - ][ +  - ]:        474 :                     pScene->GetProperties().SetObjectItemSet(aSet);
     100         [ +  - ]:       4424 :                 }
     101                 :            :             }
     102                 :            : 
     103                 :            :             // call parent. This will set items on local object, too.
     104                 :       4424 :             E3dProperties::SetMergedItemSet(rSet, bClearAllItems);
     105                 :       4424 :         }
     106                 :            : 
     107                 :      28689 :         void E3dCompoundProperties::PostItemChange(const sal_uInt16 nWhich)
     108                 :            :         {
     109                 :            :             // call parent
     110                 :      28689 :             E3dProperties::PostItemChange(nWhich);
     111                 :            : 
     112                 :            :             // handle value change
     113                 :      28689 :             E3dCompoundObject& rObj = (E3dCompoundObject&)GetSdrObject();
     114                 :            : 
     115   [ -  +  +  -  :      28689 :             switch(nWhich)
                +  +  + ]
     116                 :            :             {
     117                 :            :                 // #i28528#
     118                 :            :                 // Added extra Item (Bool) for chart2 to be able to show reduced line geometry
     119                 :            :                 case SDRATTR_3DOBJ_REDUCED_LINE_GEOMETRY:
     120                 :            :                 {
     121                 :          0 :                     rObj.ActionChanged();
     122                 :          0 :                     break;
     123                 :            :                 }
     124                 :            :                 case SDRATTR_3DOBJ_DOUBLE_SIDED:
     125                 :            :                 {
     126                 :        876 :                     rObj.ActionChanged();
     127                 :        876 :                     break;
     128                 :            :                 }
     129                 :            :                 case SDRATTR_3DOBJ_NORMALS_KIND:
     130                 :            :                 {
     131                 :        876 :                     rObj.ActionChanged();
     132                 :        876 :                     break;
     133                 :            :                 }
     134                 :            :                 case SDRATTR_3DOBJ_NORMALS_INVERT:
     135                 :            :                 {
     136                 :          0 :                     rObj.ActionChanged();
     137                 :          0 :                     break;
     138                 :            :                 }
     139                 :            :                 case SDRATTR_3DOBJ_TEXTURE_PROJ_X:
     140                 :            :                 {
     141                 :         36 :                     rObj.ActionChanged();
     142                 :         36 :                     break;
     143                 :            :                 }
     144                 :            :                 case SDRATTR_3DOBJ_TEXTURE_PROJ_Y:
     145                 :            :                 {
     146                 :         36 :                     rObj.ActionChanged();
     147                 :         36 :                     break;
     148                 :            :                 }
     149                 :            :             }
     150                 :      28689 :         }
     151                 :            :     } // end of namespace properties
     152                 :            : } // end of namespace sdr
     153                 :            : 
     154                 :            : /* vim:set shiftwidth=4 softtabstop=4 expandtab: */

Generated by: LCOV version 1.10