LCOV - code coverage report
Current view: top level - libreoffice/sw/inc - frmatr.hxx (source / functions) Hit Total Coverage
Test: libreoffice_filtered.info Lines: 46 52 88.5 %
Date: 2012-12-27 Functions: 23 26 88.5 %
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             : #ifndef _FRMATR_HXX
      20             : #define _FRMATR_HXX
      21             : 
      22             : #include <hintids.hxx> // IDs of attributes before frmitems to make sure
      23             : #include <format.hxx>  // they are available for implementation of the inlines.
      24             : 
      25             : // Inlines
      26             : 
      27             : 
      28             : // Implementation of FrameAttribute methods of SwAttrSet.
      29           8 : inline const SvxPaperBinItem &SwAttrSet::GetPaperBin(sal_Bool bInP) const
      30           8 :     { return (const SvxPaperBinItem&)Get( RES_PAPER_BIN,bInP); }
      31       17905 : inline const SvxLRSpaceItem &SwAttrSet::GetLRSpace(sal_Bool bInP) const
      32       17905 :     { return (const SvxLRSpaceItem&)Get( RES_LR_SPACE,bInP); }
      33        4775 : inline const SvxULSpaceItem &SwAttrSet::GetULSpace(sal_Bool bInP) const
      34        4775 :     { return (const SvxULSpaceItem&)Get( RES_UL_SPACE,bInP); }
      35         642 : inline const SvxPrintItem &SwAttrSet::GetPrint(sal_Bool bInP) const
      36         642 :     { return (const SvxPrintItem&)Get( RES_PRINT,bInP); }
      37         193 : inline const SvxOpaqueItem &SwAttrSet::GetOpaque(sal_Bool bInP) const
      38         193 :     { return (const SvxOpaqueItem&)Get( RES_OPAQUE,bInP); }
      39        2183 : inline const SvxProtectItem &SwAttrSet::GetProtect(sal_Bool bInP) const
      40        2183 :     { return (const SvxProtectItem&)Get( RES_PROTECT,bInP); }
      41        6795 : inline const SvxBoxItem &SwAttrSet::GetBox(sal_Bool bInP) const
      42        6795 :     { return (const SvxBoxItem&)Get( RES_BOX,bInP); }
      43        2274 : inline const SvxFmtKeepItem &SwAttrSet::GetKeep(sal_Bool bInP) const
      44        2274 :     { return (const SvxFmtKeepItem&)Get( RES_KEEP,bInP); }
      45        8583 : inline const SvxBrushItem &SwAttrSet::GetBackground(sal_Bool bInP) const
      46        8583 :     { return (const SvxBrushItem&)Get( RES_BACKGROUND,bInP); }
      47        2551 : inline const SvxShadowItem &SwAttrSet::GetShadow(sal_Bool bInP) const
      48        2551 :     { return (const SvxShadowItem&)Get( RES_SHADOW,bInP); }
      49        1698 : inline const SvxFmtBreakItem &SwAttrSet::GetBreak(sal_Bool bInP) const
      50        1698 :     { return (const SvxFmtBreakItem&)Get( RES_BREAK,bInP); }
      51           0 : inline const SvxMacroItem &SwAttrSet::GetMacro(sal_Bool bInP) const
      52           0 :     { return (const SvxMacroItem&)Get( RES_FRMMACRO,bInP); }
      53        1526 : inline const SvxFrameDirectionItem &SwAttrSet::GetFrmDir(sal_Bool bInP) const
      54        1526 :     { return (const SvxFrameDirectionItem&)Get( RES_FRAMEDIR,bInP); }
      55             : 
      56             : 
      57             : // Implementation of FrameAttribute methods of SwFmt.
      58           8 : inline const SvxPaperBinItem &SwFmt::GetPaperBin(sal_Bool bInP) const
      59           8 :     { return aSet.GetPaperBin(bInP); }
      60        1803 : inline const SvxLRSpaceItem &SwFmt::GetLRSpace(sal_Bool bInP) const
      61        1803 :     { return aSet.GetLRSpace(bInP); }
      62        1558 : inline const SvxULSpaceItem &SwFmt::GetULSpace(sal_Bool bInP) const
      63        1558 :     { return aSet.GetULSpace(bInP); }
      64         642 : inline const SvxPrintItem &SwFmt::GetPrint(sal_Bool bInP) const
      65         642 :     { return aSet.GetPrint(bInP); }
      66         193 : inline const SvxOpaqueItem &SwFmt::GetOpaque(sal_Bool bInP) const
      67         193 :     { return aSet.GetOpaque(bInP); }
      68        2183 : inline const SvxProtectItem &SwFmt::GetProtect(sal_Bool bInP) const
      69        2183 :     { return aSet.GetProtect(bInP); }
      70         397 : inline const SvxBoxItem &SwFmt::GetBox(sal_Bool bInP) const
      71         397 :     { return aSet.GetBox(bInP); }
      72           0 : inline const SvxFmtKeepItem &SwFmt::GetKeep(sal_Bool bInP) const
      73           0 :     { return aSet.GetKeep(bInP); }
      74        1332 : inline const SvxBrushItem &SwFmt::GetBackground(sal_Bool bInP) const
      75        1332 :     { return aSet.GetBackground(bInP); }
      76           9 : inline const SvxShadowItem &SwFmt::GetShadow(sal_Bool bInP) const
      77           9 :     { return aSet.GetShadow(bInP); }
      78           5 : inline const SvxFmtBreakItem &SwFmt::GetBreak(sal_Bool bInP) const
      79           5 :     { return aSet.GetBreak(bInP); }
      80           0 : inline const SvxMacroItem &SwFmt::GetMacro(sal_Bool bInP) const
      81           0 :     { return aSet.GetMacro(bInP); }
      82         198 : inline const SvxFrameDirectionItem  &SwFmt::GetFrmDir(sal_Bool bInP) const
      83         198 :     { return aSet.GetFrmDir(bInP); }
      84             : 
      85             : #endif //_FRMATR_HXX
      86             : 
      87             : /* vim:set shiftwidth=4 softtabstop=4 expandtab: */

Generated by: LCOV version 1.10