bump product version to 4.1.6.2
[LibreOffice.git] / sw / inc / frmatr.hxx
blob402005d02b79e71a49b9274f0aa44743c8a1b0bb
1 /* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
2 /*
3 * This file is part of the LibreOffice project.
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/.
9 * This file incorporates work covered by the following license notice:
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 .
19 #ifndef _FRMATR_HXX
20 #define _FRMATR_HXX
22 #include <hintids.hxx> // IDs of attributes before frmitems to make sure
23 #include <format.hxx> // they are available for implementation of the inlines.
25 // Inlines
28 // Implementation of FrameAttribute methods of SwAttrSet.
29 inline const SvxPaperBinItem &SwAttrSet::GetPaperBin(sal_Bool bInP) const
30 { return (const SvxPaperBinItem&)Get( RES_PAPER_BIN,bInP); }
31 inline const SvxLRSpaceItem &SwAttrSet::GetLRSpace(sal_Bool bInP) const
32 { return (const SvxLRSpaceItem&)Get( RES_LR_SPACE,bInP); }
33 inline const SvxULSpaceItem &SwAttrSet::GetULSpace(sal_Bool bInP) const
34 { return (const SvxULSpaceItem&)Get( RES_UL_SPACE,bInP); }
35 inline const SvxPrintItem &SwAttrSet::GetPrint(sal_Bool bInP) const
36 { return (const SvxPrintItem&)Get( RES_PRINT,bInP); }
37 inline const SvxOpaqueItem &SwAttrSet::GetOpaque(sal_Bool bInP) const
38 { return (const SvxOpaqueItem&)Get( RES_OPAQUE,bInP); }
39 inline const SvxProtectItem &SwAttrSet::GetProtect(sal_Bool bInP) const
40 { return (const SvxProtectItem&)Get( RES_PROTECT,bInP); }
41 inline const SvxBoxItem &SwAttrSet::GetBox(sal_Bool bInP) const
42 { return (const SvxBoxItem&)Get( RES_BOX,bInP); }
43 inline const SvxFmtKeepItem &SwAttrSet::GetKeep(sal_Bool bInP) const
44 { return (const SvxFmtKeepItem&)Get( RES_KEEP,bInP); }
45 inline const SvxBrushItem &SwAttrSet::GetBackground(sal_Bool bInP) const
46 { return (const SvxBrushItem&)Get( RES_BACKGROUND,bInP); }
47 inline const XFillStyleItem &SwAttrSet::GetFillStyle(sal_Bool bInP) const
48 { return (const XFillStyleItem&)Get( RES_FILL_STYLE,bInP); }
49 inline const XFillGradientItem &SwAttrSet::GetFillGradient(sal_Bool bInP) const
50 { return (const XFillGradientItem&)Get( RES_FILL_GRADIENT,bInP); }
51 inline const SvxShadowItem &SwAttrSet::GetShadow(sal_Bool bInP) const
52 { return (const SvxShadowItem&)Get( RES_SHADOW,bInP); }
53 inline const SvxFmtBreakItem &SwAttrSet::GetBreak(sal_Bool bInP) const
54 { return (const SvxFmtBreakItem&)Get( RES_BREAK,bInP); }
55 inline const SvxMacroItem &SwAttrSet::GetMacro(sal_Bool bInP) const
56 { return (const SvxMacroItem&)Get( RES_FRMMACRO,bInP); }
57 inline const SvxFrameDirectionItem &SwAttrSet::GetFrmDir(sal_Bool bInP) const
58 { return (const SvxFrameDirectionItem&)Get( RES_FRAMEDIR,bInP); }
61 // Implementation of FrameAttribute methods of SwFmt.
62 inline const SvxPaperBinItem &SwFmt::GetPaperBin(sal_Bool bInP) const
63 { return aSet.GetPaperBin(bInP); }
64 inline const SvxLRSpaceItem &SwFmt::GetLRSpace(sal_Bool bInP) const
65 { return aSet.GetLRSpace(bInP); }
66 inline const SvxULSpaceItem &SwFmt::GetULSpace(sal_Bool bInP) const
67 { return aSet.GetULSpace(bInP); }
68 inline const SvxPrintItem &SwFmt::GetPrint(sal_Bool bInP) const
69 { return aSet.GetPrint(bInP); }
70 inline const SvxOpaqueItem &SwFmt::GetOpaque(sal_Bool bInP) const
71 { return aSet.GetOpaque(bInP); }
72 inline const SvxProtectItem &SwFmt::GetProtect(sal_Bool bInP) const
73 { return aSet.GetProtect(bInP); }
74 inline const SvxBoxItem &SwFmt::GetBox(sal_Bool bInP) const
75 { return aSet.GetBox(bInP); }
76 inline const SvxFmtKeepItem &SwFmt::GetKeep(sal_Bool bInP) const
77 { return aSet.GetKeep(bInP); }
78 inline const SvxBrushItem &SwFmt::GetBackground(sal_Bool bInP) const
79 { return aSet.GetBackground(bInP); }
80 inline const SvxShadowItem &SwFmt::GetShadow(sal_Bool bInP) const
81 { return aSet.GetShadow(bInP); }
82 inline const SvxFmtBreakItem &SwFmt::GetBreak(sal_Bool bInP) const
83 { return aSet.GetBreak(bInP); }
84 inline const SvxMacroItem &SwFmt::GetMacro(sal_Bool bInP) const
85 { return aSet.GetMacro(bInP); }
86 inline const SvxFrameDirectionItem &SwFmt::GetFrmDir(sal_Bool bInP) const
87 { return aSet.GetFrmDir(bInP); }
89 #endif //_FRMATR_HXX
91 /* vim:set shiftwidth=4 softtabstop=4 expandtab: */