LCOV - code coverage report
Current view: top level - svx/source/sdr/properties - captionproperties.cxx (source / functions) Hit Total Coverage
Test: libreoffice_filtered.info Lines: 22 27 81.5 %
Date: 2012-08-25 Functions: 7 9 77.8 %
Legend: Lines: hit not hit | Branches: + taken - not taken # not executed Branches: 2 6 33.3 %

           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/captionproperties.hxx>
      21                 :            : #include <svl/itemset.hxx>
      22                 :            : #include <svl/style.hxx>
      23                 :            : #include <svx/svddef.hxx>
      24                 :            : #include <editeng/eeitem.hxx>
      25                 :            : #include <svx/svdocapt.hxx>
      26                 :            : 
      27                 :            : //////////////////////////////////////////////////////////////////////////////
      28                 :            : 
      29                 :            : namespace sdr
      30                 :            : {
      31                 :            :     namespace properties
      32                 :            :     {
      33                 :            :         // create a new itemset
      34                 :         20 :         SfxItemSet& CaptionProperties::CreateObjectSpecificItemSet(SfxItemPool& rPool)
      35                 :            :         {
      36                 :            :             return *(new SfxItemSet(rPool,
      37                 :            : 
      38                 :            :                 // range from SdrAttrObj
      39                 :            :                 SDRATTR_START, SDRATTR_SHADOW_LAST,
      40                 :            :                 SDRATTR_MISC_FIRST, SDRATTR_MISC_LAST,
      41                 :            :                 SDRATTR_TEXTDIRECTION, SDRATTR_TEXTDIRECTION,
      42                 :            : 
      43                 :            :                 // range from SdrCaptionObj
      44                 :            :                 SDRATTR_CAPTION_FIRST, SDRATTR_CAPTION_LAST,
      45                 :            : 
      46                 :            :                 // range from SdrTextObj
      47                 :            :                 EE_ITEMS_START, EE_ITEMS_END,
      48                 :            : 
      49                 :            :                 // end
      50         [ +  - ]:         20 :                 0, 0));
      51                 :            :         }
      52                 :            : 
      53                 :         20 :         CaptionProperties::CaptionProperties(SdrObject& rObj)
      54                 :         20 :         :   RectangleProperties(rObj)
      55                 :            :         {
      56                 :         20 :         }
      57                 :            : 
      58                 :          0 :         CaptionProperties::CaptionProperties(const CaptionProperties& rProps, SdrObject& rObj)
      59                 :          0 :         :   RectangleProperties(rProps, rObj)
      60                 :            :         {
      61                 :          0 :         }
      62                 :            : 
      63                 :         20 :         CaptionProperties::~CaptionProperties()
      64                 :            :         {
      65         [ -  + ]:         40 :         }
      66                 :            : 
      67                 :          0 :         BaseProperties& CaptionProperties::Clone(SdrObject& rObj) const
      68                 :            :         {
      69         [ #  # ]:          0 :             return *(new CaptionProperties(*this, rObj));
      70                 :            :         }
      71                 :            : 
      72                 :         82 :         void CaptionProperties::ItemSetChanged(const SfxItemSet& rSet)
      73                 :            :         {
      74                 :         82 :             SdrCaptionObj& rObj = (SdrCaptionObj&)GetSdrObject();
      75                 :            : 
      76                 :            :             // local changes
      77                 :         82 :             rObj.ImpRecalcTail();
      78                 :            : 
      79                 :            :             // call parent
      80                 :         82 :             RectangleProperties::ItemSetChanged(rSet);
      81                 :         82 :         }
      82                 :            : 
      83                 :         20 :         void CaptionProperties::SetStyleSheet(SfxStyleSheet* pNewStyleSheet, sal_Bool bDontRemoveHardAttr)
      84                 :            :         {
      85                 :         20 :             SdrCaptionObj& rObj = (SdrCaptionObj&)GetSdrObject();
      86                 :            : 
      87                 :            :             // call parent
      88                 :         20 :             RectangleProperties::SetStyleSheet(pNewStyleSheet, bDontRemoveHardAttr);
      89                 :            : 
      90                 :            :             // local changes
      91                 :         20 :             rObj.ImpRecalcTail();
      92                 :         20 :         }
      93                 :            : 
      94                 :         20 :         void CaptionProperties::ForceDefaultAttributes()
      95                 :            :         {
      96                 :            :             // call parent
      97                 :         20 :             RectangleProperties::ForceDefaultAttributes();
      98                 :            : 
      99                 :            :             // force ItemSet
     100                 :         20 :             GetObjectItemSet();
     101                 :            : 
     102                 :            :             // this was set by TextProperties::ForceDefaultAttributes(),
     103                 :            :             // retet to default
     104                 :         20 :             mpItemSet->ClearItem(XATTR_LINESTYLE);
     105                 :         20 :         }
     106                 :            :     } // end of namespace properties
     107                 :            : } // end of namespace sdr
     108                 :            : 
     109                 :            : /* vim:set shiftwidth=4 softtabstop=4 expandtab: */

Generated by: LCOV version 1.10