Replace workaround of resize to invalidate with an explicit SfxHint
[LibreOffice.git] / sw / inc / fmtsrnd.hxx
blobbb22af09421434392dcd23c255439acd9937e2e6
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 /// Defines the way you want text to wrap around an object. This pool item can appear in a frame
31 /// styles and in the item set of an sw::SpzFrameFormat. It's Format -> Image -> Properties -> Wrap
32 /// on the UI.
33 class SW_DLLPUBLIC SwFormatSurround final : public SfxEnumItem<css::text::WrapTextMode>
35 bool m_bAnchorOnly :1;
36 bool m_bContour :1;
37 bool m_bOutside :1;
38 public:
39 SwFormatSurround( css::text::WrapTextMode eNew = css::text::WrapTextMode_PARALLEL );
41 // "Pure virtual Methods" of SfxPoolItem.
42 virtual bool operator==( const SfxPoolItem& ) const override;
43 virtual SwFormatSurround* Clone( SfxItemPool* pPool = nullptr ) const override;
44 virtual sal_uInt16 GetValueCount() const override;
45 virtual bool GetPresentation( SfxItemPresentation ePres,
46 MapUnit eCoreMetric,
47 MapUnit ePresMetric,
48 OUString &rText,
49 const IntlWrapper& rIntl ) const override;
50 virtual bool QueryValue( css::uno::Any& rVal, sal_uInt8 nMemberId = 0 ) const override;
51 virtual bool PutValue( const css::uno::Any& rVal, sal_uInt8 nMemberId ) override;
53 css::text::WrapTextMode GetSurround() const { return GetValue(); }
54 bool IsAnchorOnly() const { return m_bAnchorOnly; }
55 bool IsContour() const { return m_bContour; }
56 bool IsOutside() const { return m_bOutside; }
57 void SetSurround ( css::text::WrapTextMode eNew ) { SetValue( eNew ); }
58 void SetAnchorOnly( bool bNew ) { m_bAnchorOnly = bNew; }
59 void SetContour( bool bNew ) { m_bContour = bNew; }
60 void SetOutside( bool bNew ) { m_bOutside = bNew; }
62 void dumpAsXml(xmlTextWriterPtr pWriter) const override;
65 inline const SwFormatSurround &SwAttrSet::GetSurround(bool bInP) const
66 { return Get( RES_SURROUND,bInP); }
68 inline const SwFormatSurround &SwFormat::GetSurround(bool bInP) const
69 { return m_aSet.GetSurround(bInP); }
71 #endif
73 /* vim:set shiftwidth=4 softtabstop=4 expandtab: */