LCOV - code coverage report
Current view: top level - libreoffice/svx/source/sdr/properties - properties.cxx (source / functions) Hit Total Coverage
Test: libreoffice_filtered.info Lines: 45 66 68.2 %
Date: 2012-12-17 Functions: 11 17 64.7 %
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/properties.hxx>
      21             : #include <svx/sdr/properties/itemsettools.hxx>
      22             : #include <svl/itemset.hxx>
      23             : #include <svx/svdogrp.hxx>
      24             : #include <svx/svditer.hxx>
      25             : #include <svx/xfillit0.hxx>
      26             : 
      27             : //////////////////////////////////////////////////////////////////////////////
      28             : 
      29             : namespace sdr
      30             : {
      31             :     namespace properties
      32             :     {
      33       11736 :         BaseProperties::BaseProperties(SdrObject& rObj)
      34       11736 :         :   mrObject(rObj)
      35             :         {
      36       11736 :         }
      37             : 
      38           0 :         BaseProperties::BaseProperties(const BaseProperties& /*rProps*/, SdrObject& rObj)
      39           0 :         :   mrObject(rObj)
      40             :         {
      41           0 :         }
      42             : 
      43       11562 :         BaseProperties::~BaseProperties()
      44             :         {
      45       11562 :         }
      46             : 
      47      141550 :         const SfxItemSet& BaseProperties::GetMergedItemSet() const
      48             :         {
      49             :             // default implementation falls back to GetObjectItemSet()
      50      141550 :             return GetObjectItemSet();
      51             :         }
      52             : 
      53       19392 :         void BaseProperties::SetMergedItemSet(const SfxItemSet& rSet, sal_Bool bClearAllItems)
      54             :         {
      55             :             // clear items if requested
      56       19392 :             if(bClearAllItems)
      57             :             {
      58           0 :                 ClearObjectItem();
      59             :             }
      60             : 
      61             :             // default implementation falls back to SetObjectItemSet()
      62       19392 :             SetObjectItemSet(rSet);
      63       19392 :         }
      64             : 
      65       20250 :         void BaseProperties::SetMergedItem(const SfxPoolItem& rItem)
      66             :         {
      67             :             // default implementation falls back to SetObjectItem()
      68       20250 :             SetObjectItem(rItem);
      69       20250 :         }
      70             : 
      71         212 :         void BaseProperties::ClearMergedItem(const sal_uInt16 nWhich)
      72             :         {
      73             :             // default implementation falls back to ClearObjectItem()
      74         212 :             ClearObjectItem(nWhich);
      75         212 :         }
      76             : 
      77           0 :         void BaseProperties::Scale(const Fraction& /*rScale*/)
      78             :         {
      79             :             // default implementation does nothing; overload where
      80             :             // an ItemSet is implemented.
      81           0 :         }
      82             : 
      83           0 :         void BaseProperties::MoveToItemPool(SfxItemPool* /*pSrcPool*/, SfxItemPool* /*pDestPool*/, SdrModel* /*pNewModel*/)
      84             :         {
      85             :             // Move properties to a new ItemPool. Default implementation does nothing.
      86             :             // Overload where an ItemSet is implemented.
      87           0 :         }
      88             : 
      89        2510 :         void BaseProperties::SetModel(SdrModel* /*pOldModel*/, SdrModel* /*pNewModel*/)
      90             :         {
      91             :             // Set new model. Default implementation does nothing.
      92             :             // Overload where an ItemSet is implemented.
      93        2510 :         }
      94             : 
      95           0 :         void BaseProperties::ForceStyleToHardAttributes()
      96             :         {
      97             :             // force all attributes which come from styles to hard attributes
      98             :             // to be able to live without the style. Default implementation does nothing.
      99             :             // Overload where an ItemSet is implemented.
     100           0 :         }
     101             : 
     102       15378 :         void BaseProperties::SetMergedItemSetAndBroadcast(const SfxItemSet& rSet, sal_Bool bClearAllItems)
     103             :         {
     104       15378 :             ItemChangeBroadcaster aC(GetSdrObject());
     105             : 
     106       15378 :             if(bClearAllItems)
     107             :             {
     108           0 :                 ClearObjectItem();
     109             :             }
     110             : 
     111       15378 :             SetMergedItemSet(rSet);
     112       15378 :             BroadcastItemChange(aC);
     113       15378 :         }
     114             : 
     115       21822 :         const SfxPoolItem& BaseProperties::GetItem(const sal_uInt16 nWhich) const
     116             :         {
     117       21822 :             return GetObjectItemSet().Get(nWhich);
     118             :         }
     119             : 
     120       15378 :         void BaseProperties::BroadcastItemChange(const ItemChangeBroadcaster& rChange)
     121             :         {
     122       15378 :             const sal_uInt32 nCount(rChange.GetRectangleCount());
     123             : 
     124             :             // #110094#-14 Reduce to do only second change
     125             :             //// invalidate all remembered rectangles
     126             :             //for(sal_uInt32 a(0); a < nCount; a++)
     127             :             //{
     128             :             //  GetSdrObject().BroadcastObjectChange(rChange.GetRectangle(a));
     129             :             //}
     130             : 
     131             :             // invalidate all new rectangles
     132       15378 :             if(GetSdrObject().ISA(SdrObjGroup))
     133             :             {
     134           0 :                 SdrObjListIter aIter((SdrObjGroup&)GetSdrObject(), IM_DEEPNOGROUPS);
     135             : 
     136           0 :                 while(aIter.IsMore())
     137             :                 {
     138           0 :                     SdrObject* pObj = aIter.Next();
     139             :                     // This is done with ItemSetChanged
     140             :                     // pObj->SetChanged();
     141           0 :                     pObj->BroadcastObjectChange();
     142           0 :                 }
     143             :             }
     144             :             else
     145             :             {
     146             :                 // This is done with ItemSetChanged
     147             :                 // GetSdrObject().SetChanged();
     148       15378 :                 GetSdrObject().BroadcastObjectChange();
     149             :             }
     150             : 
     151             :             // also send the user calls
     152       30756 :             for(sal_uInt32 a(0L); a < nCount; a++)
     153             :             {
     154       15378 :                 GetSdrObject().SendUserCall(SDRUSERCALL_CHGATTR, rChange.GetRectangle(a));
     155             :             }
     156       15378 :         }
     157             : 
     158           0 :         sal_uInt32 BaseProperties::getVersion() const
     159             :         {
     160           0 :             return 0;
     161             :         }
     162             : 
     163        8012 :         void CleanupFillProperties( SfxItemSet& rItemSet )
     164             :         {
     165        8012 :             const bool bFillBitmap = rItemSet.GetItemState(XATTR_FILLBITMAP, sal_False) == SFX_ITEM_SET;
     166        8012 :             const bool bFillGradient = rItemSet.GetItemState(XATTR_FILLGRADIENT, sal_False) == SFX_ITEM_SET;
     167        8012 :             const bool bFillHatch = rItemSet.GetItemState(XATTR_FILLHATCH, sal_False) == SFX_ITEM_SET;
     168        8012 :             if( bFillBitmap || bFillGradient || bFillHatch )
     169             :             {
     170          24 :                 const XFillStyleItem* pFillStyleItem = dynamic_cast< const XFillStyleItem* >( rItemSet.GetItem(XATTR_FILLSTYLE) );
     171          24 :                 if( pFillStyleItem )
     172             :                 {
     173          24 :                     if( bFillBitmap && (pFillStyleItem->GetValue() != XFILL_BITMAP) )
     174             :                     {
     175           0 :                         rItemSet.ClearItem( XATTR_FILLBITMAP );
     176             :                     }
     177             : 
     178          24 :                     if( bFillGradient && (pFillStyleItem->GetValue() != XFILL_GRADIENT) )
     179             :                     {
     180           0 :                         rItemSet.ClearItem( XATTR_FILLGRADIENT );
     181             :                     }
     182             : 
     183          24 :                     if( bFillHatch && (pFillStyleItem->GetValue() != XFILL_HATCH) )
     184             :                     {
     185           0 :                         rItemSet.ClearItem( XATTR_FILLHATCH );
     186             :                     }
     187             :                 }
     188             :             }
     189        8012 :         }
     190             : 
     191             :     } // end of namespace properties
     192             : } // end of namespace sdr
     193             : 
     194             : /* vim:set shiftwidth=4 softtabstop=4 expandtab: */

Generated by: LCOV version 1.10