summaryrefslogtreecommitdiffstats
path: root/sw/inc/frmatr.hxx
diff options
context:
space:
mode:
authorDaniel Baumann <daniel.baumann@progress-linux.org>2024-04-27 16:51:28 +0000
committerDaniel Baumann <daniel.baumann@progress-linux.org>2024-04-27 16:51:28 +0000
commit940b4d1848e8c70ab7642901a68594e8016caffc (patch)
treeeb72f344ee6c3d9b80a7ecc079ea79e9fba8676d /sw/inc/frmatr.hxx
parentInitial commit. (diff)
downloadlibreoffice-940b4d1848e8c70ab7642901a68594e8016caffc.tar.xz
libreoffice-940b4d1848e8c70ab7642901a68594e8016caffc.zip
Adding upstream version 1:7.0.4.upstream/1%7.0.4upstream
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to 'sw/inc/frmatr.hxx')
-rw-r--r--sw/inc/frmatr.hxx101
1 files changed, 101 insertions, 0 deletions
diff --git a/sw/inc/frmatr.hxx b/sw/inc/frmatr.hxx
new file mode 100644
index 000000000..51dda4f4a
--- /dev/null
+++ b/sw/inc/frmatr.hxx
@@ -0,0 +1,101 @@
+/* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
+/*
+ * This file is part of the LibreOffice project.
+ *
+ * This Source Code Form is subject to the terms of the Mozilla Public
+ * License, v. 2.0. If a copy of the MPL was not distributed with this
+ * file, You can obtain one at http://mozilla.org/MPL/2.0/.
+ *
+ * This file incorporates work covered by the following license notice:
+ *
+ * Licensed to the Apache Software Foundation (ASF) under one or more
+ * contributor license agreements. See the NOTICE file distributed
+ * with this work for additional information regarding copyright
+ * ownership. The ASF licenses this file to you under the Apache
+ * License, Version 2.0 (the "License"); you may not use this file
+ * except in compliance with the License. You may obtain a copy of
+ * the License at http://www.apache.org/licenses/LICENSE-2.0 .
+ */
+#ifndef INCLUDED_SW_INC_FRMATR_HXX
+#define INCLUDED_SW_INC_FRMATR_HXX
+
+#include "hintids.hxx"
+#include "format.hxx"
+#include <editeng/pbinitem.hxx>
+#include <editeng/lrspitem.hxx>
+#include <editeng/ulspitem.hxx>
+#include <editeng/prntitem.hxx>
+#include <editeng/opaqitem.hxx>
+#include <editeng/protitem.hxx>
+#include <editeng/boxitem.hxx>
+#include <editeng/keepitem.hxx>
+#include <editeng/brushitem.hxx>
+#include <editeng/shaditem.hxx>
+#include <editeng/formatbreakitem.hxx>
+#include <editeng/frmdiritem.hxx>
+#include <svl/macitem.hxx>
+#include <svx/sdtaitm.hxx>
+
+// Inlines
+
+// Implementation of FrameAttribute methods of SwAttrSet.
+inline const SvxPaperBinItem &SwAttrSet::GetPaperBin(bool bInP) const
+ { return Get( RES_PAPER_BIN,bInP); }
+inline const SvxLRSpaceItem &SwAttrSet::GetLRSpace(bool bInP) const
+ { return Get( RES_LR_SPACE,bInP); }
+inline const SvxULSpaceItem &SwAttrSet::GetULSpace(bool bInP) const
+ { return Get( RES_UL_SPACE,bInP); }
+inline const SvxPrintItem &SwAttrSet::GetPrint(bool bInP) const
+ { return Get( RES_PRINT,bInP); }
+inline const SvxOpaqueItem &SwAttrSet::GetOpaque(bool bInP) const
+ { return Get( RES_OPAQUE,bInP); }
+inline const SvxProtectItem &SwAttrSet::GetProtect(bool bInP) const
+ { return Get( RES_PROTECT,bInP); }
+inline const SvxBoxItem &SwAttrSet::GetBox(bool bInP) const
+ { return Get( RES_BOX,bInP); }
+inline const SvxFormatKeepItem &SwAttrSet::GetKeep(bool bInP) const
+ { return Get( RES_KEEP,bInP); }
+inline const SvxBrushItem &SwAttrSet::GetBackground(bool bInP) const
+ { return Get( RES_BACKGROUND,bInP); }
+inline const SvxShadowItem &SwAttrSet::GetShadow(bool bInP) const
+ { return Get( RES_SHADOW,bInP); }
+inline const SvxFormatBreakItem &SwAttrSet::GetBreak(bool bInP) const
+ { return Get( RES_BREAK,bInP); }
+inline const SvxMacroItem &SwAttrSet::GetMacro(bool bInP) const
+ { return Get( RES_FRMMACRO,bInP); }
+inline const SvxFrameDirectionItem &SwAttrSet::GetFrameDir(bool bInP) const
+ { return Get( RES_FRAMEDIR,bInP); }
+inline const SdrTextVertAdjustItem &SwAttrSet::GetTextVertAdjust(bool bInP) const
+ { return Get( RES_TEXT_VERT_ADJUST,bInP); }
+
+// Implementation of FrameAttribute methods of SwFormat.
+inline const SvxPaperBinItem &SwFormat::GetPaperBin(bool bInP) const
+ { return m_aSet.GetPaperBin(bInP); }
+inline const SvxLRSpaceItem &SwFormat::GetLRSpace(bool bInP) const
+ { return m_aSet.GetLRSpace(bInP); }
+inline const SvxULSpaceItem &SwFormat::GetULSpace(bool bInP) const
+ { return m_aSet.GetULSpace(bInP); }
+inline const SvxPrintItem &SwFormat::GetPrint(bool bInP) const
+ { return m_aSet.GetPrint(bInP); }
+inline const SvxOpaqueItem &SwFormat::GetOpaque(bool bInP) const
+ { return m_aSet.GetOpaque(bInP); }
+inline const SvxProtectItem &SwFormat::GetProtect(bool bInP) const
+ { return m_aSet.GetProtect(bInP); }
+inline const SvxBoxItem &SwFormat::GetBox(bool bInP) const
+ { return m_aSet.GetBox(bInP); }
+inline const SvxFormatKeepItem &SwFormat::GetKeep(bool bInP) const
+ { return m_aSet.GetKeep(bInP); }
+inline const SvxShadowItem &SwFormat::GetShadow(bool bInP) const
+ { return m_aSet.GetShadow(bInP); }
+inline const SvxFormatBreakItem &SwFormat::GetBreak(bool bInP) const
+ { return m_aSet.GetBreak(bInP); }
+inline const SvxMacroItem &SwFormat::GetMacro(bool bInP) const
+ { return m_aSet.GetMacro(bInP); }
+inline const SvxFrameDirectionItem &SwFormat::GetFrameDir(bool bInP) const
+ { return m_aSet.GetFrameDir(bInP); }
+inline const SdrTextVertAdjustItem &SwFormat::GetTextVertAdjust(bool bInP) const
+ { return m_aSet.GetTextVertAdjust(bInP); }
+
+#endif // INCLUDED_SW_INC_FRMATR_HXX
+
+/* vim:set shiftwidth=4 softtabstop=4 expandtab: */