lok: Hide file linking in section
[LibreOffice.git] / sw / inc / fmtornt.hxx
blob24ffdc907e26361a31d67d095e6efbd73ed36fdb
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_FMTORNT_HXX
20 #define INCLUDED_SW_INC_FMTORNT_HXX
22 #include <com/sun/star/text/HoriOrientation.hpp>
23 #include <com/sun/star/text/VertOrientation.hpp>
24 #include <com/sun/star/text/RelOrientation.hpp>
25 #include "swdllapi.h"
26 #include "hintids.hxx"
27 #include "swtypes.hxx"
28 #include "format.hxx"
29 #include <svl/poolitem.hxx>
31 class IntlWrapper;
33 class SW_DLLPUBLIC SwFormatVertOrient: public SfxPoolItem
35 SwTwips m_nYPos; ///< Contains *always* the current RelPos.
36 sal_Int16 m_eOrient;
37 sal_Int16 m_eRelation;
38 public:
39 SwFormatVertOrient( SwTwips nY = 0, sal_Int16 eVert = css::text::VertOrientation::NONE,
40 sal_Int16 eRel = css::text::RelOrientation::PRINT_AREA );
41 SwFormatVertOrient(SwFormatVertOrient const &) = default; // SfxPoolItem copy function dichotomy
43 /// "Pure virtual methods" of SfxPoolItem.
44 virtual bool operator==( const SfxPoolItem& ) const override;
45 virtual SfxPoolItem* Clone( SfxItemPool* pPool = nullptr ) const override;
46 virtual bool GetPresentation( SfxItemPresentation ePres,
47 MapUnit eCoreMetric,
48 MapUnit ePresMetric,
49 OUString &rText,
50 const IntlWrapper& rIntl ) const override;
51 virtual bool QueryValue( css::uno::Any& rVal, sal_uInt8 nMemberId = 0 ) const override;
52 virtual bool PutValue( const css::uno::Any& rVal, sal_uInt8 nMemberId ) override;
54 sal_Int16 GetVertOrient() const { return m_eOrient; }
55 sal_Int16 GetRelationOrient() const { return m_eRelation; }
56 void SetVertOrient( sal_Int16 eNew ) { m_eOrient = eNew; }
57 void SetRelationOrient( sal_Int16 eNew ) { m_eRelation = eNew; }
59 SwTwips GetPos() const { return m_nYPos; }
60 void SetPos( SwTwips nNew ) { m_nYPos = nNew; }
62 void dumpAsXml(xmlTextWriterPtr pWriter) const override;
65 class SW_DLLPUBLIC SwFormatHoriOrient: public SfxPoolItem
67 SwTwips m_nXPos; ///< Contains *always* the current RelPos.
68 sal_Int16 m_eOrient;
69 sal_Int16 m_eRelation;
70 bool m_bPosToggle : 1; ///< Flip position on even pages.
71 public:
72 SwFormatHoriOrient( SwTwips nX = 0, sal_Int16 eHori = css::text::HoriOrientation::NONE,
73 sal_Int16 eRel = css::text::RelOrientation::PRINT_AREA, bool bPos = false );
74 SwFormatHoriOrient(SwFormatHoriOrient const &) = default; // SfxPoolItem copy function dichotomy
76 /// "Pure virtual methods" of SfxPoolItem.
77 virtual bool operator==( const SfxPoolItem& ) const override;
78 virtual SfxPoolItem* Clone( SfxItemPool* pPool = nullptr ) const override;
79 virtual bool GetPresentation( SfxItemPresentation ePres,
80 MapUnit eCoreMetric,
81 MapUnit ePresMetric,
82 OUString &rText,
83 const IntlWrapper& rIntl ) const override;
84 virtual bool QueryValue( css::uno::Any& rVal, sal_uInt8 nMemberId = 0 ) const override;
85 virtual bool PutValue( const css::uno::Any& rVal, sal_uInt8 nMemberId ) override;
87 sal_Int16 GetHoriOrient() const { return m_eOrient; }
88 sal_Int16 GetRelationOrient() const { return m_eRelation; }
89 void SetHoriOrient( sal_Int16 eNew ) { m_eOrient = eNew; }
90 void SetRelationOrient( sal_Int16 eNew ) { m_eRelation = eNew; }
92 SwTwips GetPos() const { return m_nXPos; }
93 void SetPos( SwTwips nNew ) { m_nXPos = nNew; }
95 bool IsPosToggle() const { return m_bPosToggle; }
96 void SetPosToggle( bool bNew ) { m_bPosToggle = bNew; }
98 void dumpAsXml(xmlTextWriterPtr pWriter) const override;
101 inline const SwFormatVertOrient &SwAttrSet::GetVertOrient(bool bInP) const
102 { return Get( RES_VERT_ORIENT,bInP); }
103 inline const SwFormatHoriOrient &SwAttrSet::GetHoriOrient(bool bInP) const
104 { return Get( RES_HORI_ORIENT,bInP); }
106 inline const SwFormatVertOrient &SwFormat::GetVertOrient(bool bInP) const
107 { return m_aSet.GetVertOrient(bInP); }
108 inline const SwFormatHoriOrient &SwFormat::GetHoriOrient(bool bInP) const
109 { return m_aSet.GetHoriOrient(bInP); }
111 #endif
113 /* vim:set shiftwidth=4 softtabstop=4 expandtab: */