Cleanup restoring last position
[LibreOffice.git] / sw / inc / frmatr.hxx
blob51dda4f4a5d07358d741272dc970b4ec9dd0177d
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 INCLUDED_SW_INC_FRMATR_HXX
20 #define INCLUDED_SW_INC_FRMATR_HXX
22 #include "hintids.hxx"
23 #include "format.hxx"
24 #include <editeng/pbinitem.hxx>
25 #include <editeng/lrspitem.hxx>
26 #include <editeng/ulspitem.hxx>
27 #include <editeng/prntitem.hxx>
28 #include <editeng/opaqitem.hxx>
29 #include <editeng/protitem.hxx>
30 #include <editeng/boxitem.hxx>
31 #include <editeng/keepitem.hxx>
32 #include <editeng/brushitem.hxx>
33 #include <editeng/shaditem.hxx>
34 #include <editeng/formatbreakitem.hxx>
35 #include <editeng/frmdiritem.hxx>
36 #include <svl/macitem.hxx>
37 #include <svx/sdtaitm.hxx>
39 // Inlines
41 // Implementation of FrameAttribute methods of SwAttrSet.
42 inline const SvxPaperBinItem &SwAttrSet::GetPaperBin(bool bInP) const
43 { return Get( RES_PAPER_BIN,bInP); }
44 inline const SvxLRSpaceItem &SwAttrSet::GetLRSpace(bool bInP) const
45 { return Get( RES_LR_SPACE,bInP); }
46 inline const SvxULSpaceItem &SwAttrSet::GetULSpace(bool bInP) const
47 { return Get( RES_UL_SPACE,bInP); }
48 inline const SvxPrintItem &SwAttrSet::GetPrint(bool bInP) const
49 { return Get( RES_PRINT,bInP); }
50 inline const SvxOpaqueItem &SwAttrSet::GetOpaque(bool bInP) const
51 { return Get( RES_OPAQUE,bInP); }
52 inline const SvxProtectItem &SwAttrSet::GetProtect(bool bInP) const
53 { return Get( RES_PROTECT,bInP); }
54 inline const SvxBoxItem &SwAttrSet::GetBox(bool bInP) const
55 { return Get( RES_BOX,bInP); }
56 inline const SvxFormatKeepItem &SwAttrSet::GetKeep(bool bInP) const
57 { return Get( RES_KEEP,bInP); }
58 inline const SvxBrushItem &SwAttrSet::GetBackground(bool bInP) const
59 { return Get( RES_BACKGROUND,bInP); }
60 inline const SvxShadowItem &SwAttrSet::GetShadow(bool bInP) const
61 { return Get( RES_SHADOW,bInP); }
62 inline const SvxFormatBreakItem &SwAttrSet::GetBreak(bool bInP) const
63 { return Get( RES_BREAK,bInP); }
64 inline const SvxMacroItem &SwAttrSet::GetMacro(bool bInP) const
65 { return Get( RES_FRMMACRO,bInP); }
66 inline const SvxFrameDirectionItem &SwAttrSet::GetFrameDir(bool bInP) const
67 { return Get( RES_FRAMEDIR,bInP); }
68 inline const SdrTextVertAdjustItem &SwAttrSet::GetTextVertAdjust(bool bInP) const
69 { return Get( RES_TEXT_VERT_ADJUST,bInP); }
71 // Implementation of FrameAttribute methods of SwFormat.
72 inline const SvxPaperBinItem &SwFormat::GetPaperBin(bool bInP) const
73 { return m_aSet.GetPaperBin(bInP); }
74 inline const SvxLRSpaceItem &SwFormat::GetLRSpace(bool bInP) const
75 { return m_aSet.GetLRSpace(bInP); }
76 inline const SvxULSpaceItem &SwFormat::GetULSpace(bool bInP) const
77 { return m_aSet.GetULSpace(bInP); }
78 inline const SvxPrintItem &SwFormat::GetPrint(bool bInP) const
79 { return m_aSet.GetPrint(bInP); }
80 inline const SvxOpaqueItem &SwFormat::GetOpaque(bool bInP) const
81 { return m_aSet.GetOpaque(bInP); }
82 inline const SvxProtectItem &SwFormat::GetProtect(bool bInP) const
83 { return m_aSet.GetProtect(bInP); }
84 inline const SvxBoxItem &SwFormat::GetBox(bool bInP) const
85 { return m_aSet.GetBox(bInP); }
86 inline const SvxFormatKeepItem &SwFormat::GetKeep(bool bInP) const
87 { return m_aSet.GetKeep(bInP); }
88 inline const SvxShadowItem &SwFormat::GetShadow(bool bInP) const
89 { return m_aSet.GetShadow(bInP); }
90 inline const SvxFormatBreakItem &SwFormat::GetBreak(bool bInP) const
91 { return m_aSet.GetBreak(bInP); }
92 inline const SvxMacroItem &SwFormat::GetMacro(bool bInP) const
93 { return m_aSet.GetMacro(bInP); }
94 inline const SvxFrameDirectionItem &SwFormat::GetFrameDir(bool bInP) const
95 { return m_aSet.GetFrameDir(bInP); }
96 inline const SdrTextVertAdjustItem &SwFormat::GetTextVertAdjust(bool bInP) const
97 { return m_aSet.GetTextVertAdjust(bInP); }
99 #endif // INCLUDED_SW_INC_FRMATR_HXX
101 /* vim:set shiftwidth=4 softtabstop=4 expandtab: */