lok: avoid expensive fetching of a property.
[LibreOffice.git] / sw / inc / fmtsrnd.hxx
blobe672d84f06ebe387ce60cf9faa326293407d9d8e
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_FMTSRND_HXX
20 #define INCLUDED_SW_INC_FMTSRND_HXX
22 #include "swdllapi.h"
23 #include <com/sun/star/text/WrapTextMode.hpp>
24 #include "hintids.hxx"
25 #include "format.hxx"
26 #include <svl/eitem.hxx>
28 class IntlWrapper;
30 // SwFormatSurround: How document content under the frame shall behave.
31 class SW_DLLPUBLIC SwFormatSurround: public SfxEnumItem<css::text::WrapTextMode>
33 bool m_bAnchorOnly :1;
34 bool m_bContour :1;
35 bool m_bOutside :1;
36 public:
37 SwFormatSurround( css::text::WrapTextMode eNew = css::text::WrapTextMode_PARALLEL );
39 // "Pure virtual Methods" of SfxPoolItem.
40 virtual bool operator==( const SfxPoolItem& ) const override;
41 virtual SwFormatSurround* Clone( SfxItemPool* pPool = nullptr ) const override;
42 virtual sal_uInt16 GetValueCount() const override;
43 virtual bool GetPresentation( SfxItemPresentation ePres,
44 MapUnit eCoreMetric,
45 MapUnit ePresMetric,
46 OUString &rText,
47 const IntlWrapper& rIntl ) const override;
48 virtual bool QueryValue( css::uno::Any& rVal, sal_uInt8 nMemberId = 0 ) const override;
49 virtual bool PutValue( const css::uno::Any& rVal, sal_uInt8 nMemberId ) override;
51 css::text::WrapTextMode GetSurround() const { return GetValue(); }
52 bool IsAnchorOnly() const { return m_bAnchorOnly; }
53 bool IsContour() const { return m_bContour; }
54 bool IsOutside() const { return m_bOutside; }
55 void SetSurround ( css::text::WrapTextMode eNew ) { SetValue( eNew ); }
56 void SetAnchorOnly( bool bNew ) { m_bAnchorOnly = bNew; }
57 void SetContour( bool bNew ) { m_bContour = bNew; }
58 void SetOutside( bool bNew ) { m_bOutside = bNew; }
60 void dumpAsXml(xmlTextWriterPtr pWriter) const override;
63 inline const SwFormatSurround &SwAttrSet::GetSurround(bool bInP) const
64 { return Get( RES_SURROUND,bInP); }
66 inline const SwFormatSurround &SwFormat::GetSurround(bool bInP) const
67 { return m_aSet.GetSurround(bInP); }
69 #endif
71 /* vim:set shiftwidth=4 softtabstop=4 expandtab: */