fdo#74697 Add Bluez 5 support for impress remote.
[LibreOffice.git] / sw / inc / fmtornt.hxx
blobf86eddb77e5136c7a64db557ee0256f929d1f33f
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 _FMTORNT_HXX
20 #define _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>
32 class IntlWrapper;
34 class SW_DLLPUBLIC SwFmtVertOrient: public SfxPoolItem
36 SwTwips nYPos; ///< Contains *always* the current RelPos.
37 sal_Int16 eOrient;
38 sal_Int16 eRelation;
39 public:
40 TYPEINFO();
41 SwFmtVertOrient( SwTwips nY = 0, sal_Int16 eVert = com::sun::star::text::VertOrientation::NONE,
42 sal_Int16 eRel = com::sun::star::text::RelOrientation::PRINT_AREA );
43 inline SwFmtVertOrient &operator=( const SwFmtVertOrient &rCpy );
45 /// "Pure virtual methods" of SfxPoolItem.
46 virtual int operator==( const SfxPoolItem& ) const;
47 virtual SfxPoolItem* Clone( SfxItemPool* pPool = 0 ) const;
48 virtual SfxItemPresentation GetPresentation( SfxItemPresentation ePres,
49 SfxMapUnit eCoreMetric,
50 SfxMapUnit ePresMetric,
51 OUString &rText,
52 const IntlWrapper* pIntl = 0 ) const;
53 virtual bool QueryValue( com::sun::star::uno::Any& rVal, sal_uInt8 nMemberId = 0 ) const;
54 virtual bool PutValue( const com::sun::star::uno::Any& rVal, sal_uInt8 nMemberId = 0 );
56 SvStream& Store(SvStream &rStream, sal_uInt16 itemVersion) const;
57 SfxPoolItem* Create(SvStream &rStream, sal_uInt16 itemVersion) const;
59 sal_Int16 GetVertOrient() const { return eOrient; }
60 sal_Int16 GetRelationOrient() const { return eRelation; }
61 void SetVertOrient( sal_Int16 eNew ) { eOrient = eNew; }
62 void SetRelationOrient( sal_Int16 eNew ) { eRelation = eNew; }
64 SwTwips GetPos() const { return nYPos; }
65 void SetPos( SwTwips nNew ) { nYPos = nNew; }
69 class SW_DLLPUBLIC SwFmtHoriOrient: public SfxPoolItem
71 SwTwips nXPos; ///< Contains *always* the current RelPos.
72 sal_Int16 eOrient;
73 sal_Int16 eRelation;
74 sal_Bool bPosToggle : 1; ///< Flip position on even pages.
75 public:
76 TYPEINFO();
77 SwFmtHoriOrient( SwTwips nX = 0, sal_Int16 eHori = com::sun::star::text::HoriOrientation::NONE,
78 sal_Int16 eRel = com::sun::star::text::RelOrientation::PRINT_AREA, sal_Bool bPos = sal_False );
79 inline SwFmtHoriOrient &operator=( const SwFmtHoriOrient &rCpy );
81 /// "Pure virtual methods" of SfxPoolItem.
82 virtual int operator==( const SfxPoolItem& ) const;
83 virtual SfxPoolItem* Clone( SfxItemPool* pPool = 0 ) const;
84 virtual SfxItemPresentation GetPresentation( SfxItemPresentation ePres,
85 SfxMapUnit eCoreMetric,
86 SfxMapUnit ePresMetric,
87 OUString &rText,
88 const IntlWrapper* pIntl = 0 ) const;
89 virtual bool QueryValue( com::sun::star::uno::Any& rVal, sal_uInt8 nMemberId = 0 ) const;
90 virtual bool PutValue( const com::sun::star::uno::Any& rVal, sal_uInt8 nMemberId = 0 );
92 sal_Int16 GetHoriOrient() const { return eOrient; }
93 sal_Int16 GetRelationOrient() const { return eRelation; }
94 void SetHoriOrient( sal_Int16 eNew ) { eOrient = eNew; }
95 void SetRelationOrient( sal_Int16 eNew ) { eRelation = eNew; }
97 SwTwips GetPos() const { return nXPos; }
98 void SetPos( SwTwips nNew ) { nXPos = nNew; }
100 sal_Bool IsPosToggle() const { return bPosToggle; }
101 void SetPosToggle( sal_Bool bNew ) { bPosToggle = bNew; }
104 inline SwFmtVertOrient &SwFmtVertOrient::operator=( const SwFmtVertOrient &rCpy )
106 nYPos = rCpy.GetPos();
107 eOrient = rCpy.GetVertOrient();
108 eRelation = rCpy.GetRelationOrient();
109 return *this;
111 inline SwFmtHoriOrient &SwFmtHoriOrient::operator=( const SwFmtHoriOrient &rCpy )
113 nXPos = rCpy.GetPos();
114 eOrient = rCpy.GetHoriOrient();
115 eRelation = rCpy.GetRelationOrient();
116 bPosToggle = rCpy.IsPosToggle();
117 return *this;
120 inline const SwFmtVertOrient &SwAttrSet::GetVertOrient(sal_Bool bInP) const
121 { return (const SwFmtVertOrient&)Get( RES_VERT_ORIENT,bInP); }
122 inline const SwFmtHoriOrient &SwAttrSet::GetHoriOrient(sal_Bool bInP) const
123 { return (const SwFmtHoriOrient&)Get( RES_HORI_ORIENT,bInP); }
125 inline const SwFmtVertOrient &SwFmt::GetVertOrient(sal_Bool bInP) const
126 { return aSet.GetVertOrient(bInP); }
127 inline const SwFmtHoriOrient &SwFmt::GetHoriOrient(sal_Bool bInP) const
128 { return aSet.GetHoriOrient(bInP); }
130 #endif
132 /* vim:set shiftwidth=4 softtabstop=4 expandtab: */