LCOV - code coverage report
Current view: top level - svx/source/sdr/properties - defaultproperties.cxx (source / functions) Hit Total Coverage
Test: commit c8344322a7af75b84dd3ca8f78b05543a976dfd5 Lines: 73 91 80.2 %
Date: 2015-06-13 12:38:46 Functions: 12 20 60.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 <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      109057 :         DefaultProperties::DefaultProperties(SdrObject& rObj)
      44             :         :   BaseProperties(rObj),
      45      109057 :             mpItemSet(0L)
      46             :         {
      47      109057 :         }
      48             : 
      49         734 :         DefaultProperties::DefaultProperties(const DefaultProperties& rProps, SdrObject& rObj)
      50             :         :   BaseProperties(rObj),
      51         734 :             mpItemSet(0L)
      52             :         {
      53         734 :             if(rProps.mpItemSet)
      54             :             {
      55         705 :                 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         705 :                 if(mpItemSet && mpItemSet->GetParent())
      60             :                 {
      61           4 :                     mpItemSet->SetParent(0L);
      62             :                 }
      63             :             }
      64         734 :         }
      65             : 
      66           0 :         BaseProperties& DefaultProperties::Clone(SdrObject& rObj) const
      67             :         {
      68           0 :             return *(new DefaultProperties(*this, rObj));
      69             :         }
      70             : 
      71      217276 :         DefaultProperties::~DefaultProperties()
      72             :         {
      73      108638 :             if(mpItemSet)
      74             :             {
      75       73801 :                 delete mpItemSet;
      76       73801 :                 mpItemSet = 0L;
      77             :             }
      78      108638 :         }
      79             : 
      80     8520022 :         const SfxItemSet& DefaultProperties::GetObjectItemSet() const
      81             :         {
      82     8520022 :             if(!mpItemSet)
      83             :             {
      84       73873 :                 const_cast<DefaultProperties*>(this)->mpItemSet = const_cast<DefaultProperties*>(this)->CreateObjectSpecificItemSet(GetSdrObject().GetObjectItemPool());
      85       73873 :                 const_cast<DefaultProperties*>(this)->ForceDefaultAttributes();
      86             :             }
      87             : 
      88             :             assert(mpItemSet && "Could not create an SfxItemSet(!)");
      89             : 
      90     8520022 :             return *mpItemSet;
      91             :         }
      92             : 
      93       56220 :         void DefaultProperties::SetObjectItem(const SfxPoolItem& rItem)
      94             :         {
      95       56220 :             const sal_uInt16 nWhichID(rItem.Which());
      96             : 
      97       56220 :             if(AllowItemChange(nWhichID, &rItem))
      98             :             {
      99       56220 :                 ItemChange(nWhichID, &rItem);
     100       56220 :                 PostItemChange(nWhichID);
     101             : 
     102       56220 :                 SfxItemSet aSet(GetSdrObject().GetObjectItemPool(), nWhichID, nWhichID);
     103       56220 :                 aSet.Put(rItem);
     104       56220 :                 ItemSetChanged(aSet);
     105             :             }
     106       56220 :         }
     107             : 
     108      154671 :         void DefaultProperties::SetObjectItemDirect(const SfxPoolItem& rItem)
     109             :         {
     110      154671 :             const sal_uInt16 nWhichID(rItem.Which());
     111             : 
     112      154671 :             if(AllowItemChange(nWhichID, &rItem))
     113             :             {
     114      154671 :                 ItemChange(nWhichID, &rItem);
     115             :             }
     116      154671 :         }
     117             : 
     118        2126 :         void DefaultProperties::ClearObjectItem(const sal_uInt16 nWhich)
     119             :         {
     120        2126 :             if(AllowItemChange(nWhich))
     121             :             {
     122        2126 :                 ItemChange(nWhich);
     123        2126 :                 PostItemChange(nWhich);
     124             : 
     125        2126 :                 if(nWhich)
     126             :                 {
     127           0 :                     SfxItemSet aSet(GetSdrObject().GetObjectItemPool(), nWhich, nWhich, 0, 0);
     128           0 :                     ItemSetChanged(aSet);
     129             :                 }
     130             :             }
     131        2126 :         }
     132             : 
     133       23805 :         void DefaultProperties::ClearObjectItemDirect(const sal_uInt16 nWhich)
     134             :         {
     135       23805 :             if(AllowItemChange(nWhich))
     136             :             {
     137       23345 :                 ItemChange(nWhich);
     138             :             }
     139       23805 :         }
     140             : 
     141      210975 :         void DefaultProperties::SetObjectItemSet(const SfxItemSet& rSet)
     142             :         {
     143      210975 :             SfxWhichIter aWhichIter(rSet);
     144      210975 :             sal_uInt16 nWhich(aWhichIter.FirstWhich());
     145             :             const SfxPoolItem *pPoolItem;
     146      421950 :             std::vector< sal_uInt16 > aPostItemChangeList;
     147      210975 :             bool bDidChange(false);
     148      421950 :             SfxItemSet aSet(GetSdrObject().GetObjectItemPool(), SDRATTR_START, EE_ITEMS_END);
     149             : 
     150             :             // give a hint to STL_Vector
     151      210975 :             aPostItemChangeList.reserve(rSet.Count());
     152             : 
     153    11533019 :             while(nWhich)
     154             :             {
     155    11111069 :                 if(SfxItemState::SET == rSet.GetItemState(nWhich, false, &pPoolItem))
     156             :                 {
     157     1614301 :                     if(AllowItemChange(nWhich, pPoolItem))
     158             :                     {
     159     1614301 :                         bDidChange = true;
     160     1614301 :                         ItemChange(nWhich, pPoolItem);
     161     1614301 :                         aPostItemChangeList.push_back( nWhich );
     162     1614301 :                         aSet.Put(*pPoolItem);
     163             :                     }
     164             :                 }
     165             : 
     166    11111069 :                 nWhich = aWhichIter.NextWhich();
     167             :             }
     168             : 
     169      210975 :             if(bDidChange)
     170             :             {
     171     1825255 :                 for (std::vector< sal_uInt16 >::const_iterator aIter(aPostItemChangeList.begin()), aEnd(aPostItemChangeList.end()); aIter != aEnd; ++aIter)
     172             :                 {
     173     1614301 :                     PostItemChange(*aIter);
     174             :                 }
     175             : 
     176      210954 :                 ItemSetChanged(aSet);
     177      210975 :             }
     178      210975 :         }
     179             : 
     180           0 :         void DefaultProperties::ItemSetChanged(const SfxItemSet& /*rSet*/)
     181             :         {
     182           0 :         }
     183             : 
     184     1850663 :         bool DefaultProperties::AllowItemChange(const sal_uInt16 /*nWhich*/, const SfxPoolItem* /*pNewItem*/) const
     185             :         {
     186     1850663 :             return true;
     187             :         }
     188             : 
     189           0 :         void DefaultProperties::ItemChange(const sal_uInt16 /*nWhich*/, const SfxPoolItem* /*pNewItem*/)
     190             :         {
     191           0 :         }
     192             : 
     193     1672647 :         void DefaultProperties::PostItemChange(const sal_uInt16 nWhich )
     194             :         {
     195     1672647 :             if( (nWhich == XATTR_FILLSTYLE) && (mpItemSet != NULL) )
     196       58591 :                 CleanupFillProperties(*mpItemSet);
     197     1672647 :         }
     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        6167 :         void DefaultProperties::ForceDefaultAttributes()
     211             :         {
     212        6167 :         }
     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             : } // end of namespace sdr
     223             : 
     224             : /* vim:set shiftwidth=4 softtabstop=4 expandtab: */

Generated by: LCOV version 1.11