LCOV - code coverage report
Current view: top level - svx/source/sdr/properties - defaultproperties.cxx (source / functions) Hit Total Coverage
Test: commit 10e77ab3ff6f4314137acd6e2702a6e5c1ce1fae Lines: 74 92 80.4 %
Date: 2014-11-03 Functions: 14 22 63.6 %
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 <svx/sdr/properties/defaultproperties.hxx>
      21             : #include <sdr/properties/itemsettools.hxx>
      22             : #include <svl/itemset.hxx>
      23             : #include <svl/whiter.hxx>
      24             : 
      25             : #include <vector>
      26             : #include <svx/svdobj.hxx>
      27             : #include <svx/svddef.hxx>
      28             : #include <svx/svdpool.hxx>
      29             : #include <editeng/eeitem.hxx>
      30             : 
      31             : 
      32             : 
      33             : namespace sdr
      34             : {
      35             :     namespace properties
      36             :     {
      37           0 :         SfxItemSet& DefaultProperties::CreateObjectSpecificItemSet(SfxItemPool& rPool)
      38             :         {
      39             :             // Basic implementation; Basic object has NO attributes
      40           0 :             return *(new SfxItemSet(rPool));
      41             :         }
      42             : 
      43       87180 :         DefaultProperties::DefaultProperties(SdrObject& rObj)
      44             :         :   BaseProperties(rObj),
      45       87180 :             mpItemSet(0L)
      46             :         {
      47       87180 :         }
      48             : 
      49        1340 :         DefaultProperties::DefaultProperties(const DefaultProperties& rProps, SdrObject& rObj)
      50             :         :   BaseProperties(rObj),
      51        1340 :             mpItemSet(0L)
      52             :         {
      53        1340 :             if(rProps.mpItemSet)
      54             :             {
      55        1282 :                 mpItemSet = rProps.mpItemSet->Clone(true);
      56             : 
      57             :                 // do not keep parent info, this may be changed by later construrtors.
      58             :                 // This class just copies the ItemSet, ignore parent.
      59        1282 :                 if(mpItemSet && mpItemSet->GetParent())
      60             :                 {
      61           4 :                     mpItemSet->SetParent(0L);
      62             :                 }
      63             :             }
      64        1340 :         }
      65             : 
      66           0 :         BaseProperties& DefaultProperties::Clone(SdrObject& rObj) const
      67             :         {
      68           0 :             return *(new DefaultProperties(*this, rObj));
      69             :         }
      70             : 
      71      173620 :         DefaultProperties::~DefaultProperties()
      72             :         {
      73       86810 :             if(mpItemSet)
      74             :             {
      75       64262 :                 delete mpItemSet;
      76       64262 :                 mpItemSet = 0L;
      77             :             }
      78       86810 :         }
      79             : 
      80     7077361 :         const SfxItemSet& DefaultProperties::GetObjectItemSet() const
      81             :         {
      82     7077361 :             if(!mpItemSet)
      83             :             {
      84       64061 :                 ((DefaultProperties*)this)->mpItemSet = &(((DefaultProperties*)this)->CreateObjectSpecificItemSet(GetSdrObject().GetObjectItemPool()));
      85       64061 :                 ((DefaultProperties*)this)->ForceDefaultAttributes();
      86             :             }
      87             : 
      88             :             assert(mpItemSet && "Could not create an SfxItemSet(!)");
      89             : 
      90     7077361 :             return *mpItemSet;
      91             :         }
      92             : 
      93       50785 :         void DefaultProperties::SetObjectItem(const SfxPoolItem& rItem)
      94             :         {
      95       50785 :             const sal_uInt16 nWhichID(rItem.Which());
      96             : 
      97       50785 :             if(AllowItemChange(nWhichID, &rItem))
      98             :             {
      99       50785 :                 ItemChange(nWhichID, &rItem);
     100       50785 :                 PostItemChange(nWhichID);
     101             : 
     102       50785 :                 SfxItemSet aSet(GetSdrObject().GetObjectItemPool(), nWhichID, nWhichID);
     103       50785 :                 aSet.Put(rItem);
     104       50785 :                 ItemSetChanged(aSet);
     105             :             }
     106       50785 :         }
     107             : 
     108      136399 :         void DefaultProperties::SetObjectItemDirect(const SfxPoolItem& rItem)
     109             :         {
     110      136399 :             const sal_uInt16 nWhichID(rItem.Which());
     111             : 
     112      136399 :             if(AllowItemChange(nWhichID, &rItem))
     113             :             {
     114      136399 :                 ItemChange(nWhichID, &rItem);
     115             :             }
     116      136399 :         }
     117             : 
     118        3272 :         void DefaultProperties::ClearObjectItem(const sal_uInt16 nWhich)
     119             :         {
     120        3272 :             if(AllowItemChange(nWhich))
     121             :             {
     122        3272 :                 ItemChange(nWhich);
     123        3272 :                 PostItemChange(nWhich);
     124             : 
     125        3272 :                 if(nWhich)
     126             :                 {
     127           0 :                     SfxItemSet aSet(GetSdrObject().GetObjectItemPool(), nWhich, nWhich, 0, 0);
     128           0 :                     ItemSetChanged(aSet);
     129             :                 }
     130             :             }
     131        3272 :         }
     132             : 
     133       33948 :         void DefaultProperties::ClearObjectItemDirect(const sal_uInt16 nWhich)
     134             :         {
     135       33948 :             if(AllowItemChange(nWhich))
     136             :             {
     137       33292 :                 ItemChange(nWhich);
     138             :             }
     139       33948 :         }
     140             : 
     141      200780 :         void DefaultProperties::SetObjectItemSet(const SfxItemSet& rSet)
     142             :         {
     143      200780 :             SfxWhichIter aWhichIter(rSet);
     144      200780 :             sal_uInt16 nWhich(aWhichIter.FirstWhich());
     145             :             const SfxPoolItem *pPoolItem;
     146      401560 :             std::vector< sal_uInt16 > aPostItemChangeList;
     147      200780 :             bool bDidChange(false);
     148      401560 :             SfxItemSet aSet(GetSdrObject().GetObjectItemPool(), SDRATTR_START, EE_ITEMS_END);
     149             : 
     150             :             // give a hint to STL_Vector
     151      200780 :             aPostItemChangeList.reserve(rSet.Count());
     152             : 
     153    11560485 :             while(nWhich)
     154             :             {
     155    11158925 :                 if(SfxItemState::SET == rSet.GetItemState(nWhich, false, &pPoolItem))
     156             :                 {
     157     1292071 :                     if(AllowItemChange(nWhich, pPoolItem))
     158             :                     {
     159     1292071 :                         bDidChange = true;
     160     1292071 :                         ItemChange(nWhich, pPoolItem);
     161     1292071 :                         aPostItemChangeList.push_back( nWhich );
     162     1292071 :                         aSet.Put(*pPoolItem);
     163             :                     }
     164             :                 }
     165             : 
     166    11158925 :                 nWhich = aWhichIter.NextWhich();
     167             :             }
     168             : 
     169      200780 :             if(bDidChange)
     170             :             {
     171     1492809 :                 for (std::vector< sal_uInt16 >::const_iterator aIter(aPostItemChangeList.begin()), aEnd(aPostItemChangeList.end()); aIter != aEnd; ++aIter)
     172             :                 {
     173     1292071 :                     PostItemChange(*aIter);
     174             :                 }
     175             : 
     176      200738 :                 ItemSetChanged(aSet);
     177      200780 :             }
     178      200780 :         }
     179             : 
     180           0 :         void DefaultProperties::ItemSetChanged(const SfxItemSet& /*rSet*/)
     181             :         {
     182           0 :         }
     183             : 
     184     1515819 :         bool DefaultProperties::AllowItemChange(const sal_uInt16 /*nWhich*/, const SfxPoolItem* /*pNewItem*/) const
     185             :         {
     186     1515819 :             return true;
     187             :         }
     188             : 
     189           0 :         void DefaultProperties::ItemChange(const sal_uInt16 /*nWhich*/, const SfxPoolItem* /*pNewItem*/)
     190             :         {
     191           0 :         }
     192             : 
     193     1346128 :         void DefaultProperties::PostItemChange(const sal_uInt16 nWhich )
     194             :         {
     195     1346128 :             if( (nWhich == XATTR_FILLSTYLE) && (mpItemSet != NULL) )
     196       50220 :                 CleanupFillProperties(*mpItemSet);
     197     1346128 :         }
     198             : 
     199           0 :         void DefaultProperties::SetStyleSheet(SfxStyleSheet* /*pNewStyleSheet*/, bool /*bDontRemoveHardAttr*/)
     200             :         {
     201             :             // no StyleSheet in DefaultProperties
     202           0 :         }
     203             : 
     204           0 :         SfxStyleSheet* DefaultProperties::GetStyleSheet() const
     205             :         {
     206             :             // no StyleSheet in DefaultProperties
     207           0 :             return 0L;
     208             :         }
     209             : 
     210        5504 :         void DefaultProperties::ForceDefaultAttributes()
     211             :         {
     212        5504 :         }
     213             : 
     214           0 :         void DefaultProperties::Scale(const Fraction& rScale)
     215             :         {
     216           0 :             if(mpItemSet)
     217             :             {
     218           0 :                 ScaleItemSet(*mpItemSet, rScale);
     219             :             }
     220           0 :         }
     221             :     } // end of namespace properties
     222         651 : } // end of namespace sdr
     223             : 
     224             : /* vim:set shiftwidth=4 softtabstop=4 expandtab: */

Generated by: LCOV version 1.10