LibreOffice Module sw (master) 1
fmtsrnd.hxx
Go to the documentation of this file.
1/* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
2/*
3 * This file is part of the LibreOffice project.
4 *
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/.
8 *
9 * This file incorporates work covered by the following license notice:
10 *
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 .
18 */
19#ifndef INCLUDED_SW_INC_FMTSRND_HXX
20#define INCLUDED_SW_INC_FMTSRND_HXX
21
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>
27
28class IntlWrapper;
29
30// SwFormatSurround: How document content under the frame shall behave.
31class SW_DLLPUBLIC SwFormatSurround final : public SfxEnumItem<css::text::WrapTextMode>
32{
34 bool m_bContour :1;
35 bool m_bOutside :1;
36public:
37 SwFormatSurround( css::text::WrapTextMode eNew = css::text::WrapTextMode_PARALLEL );
38
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;
50
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; }
59
60 void dumpAsXml(xmlTextWriterPtr pWriter) const override;
61};
62
63inline const SwFormatSurround &SwAttrSet::GetSurround(bool bInP) const
64 { return Get( RES_SURROUND,bInP); }
65
66inline const SwFormatSurround &SwFormat::GetSurround(bool bInP) const
67 { return m_aSet.GetSurround(bInP); }
68
69#endif
70
71/* vim:set shiftwidth=4 softtabstop=4 expandtab: */
virtual sal_uInt16 GetValueCount() const=0
virtual bool PutValue(const css::uno::Any &rVal, sal_uInt8) override
virtual bool QueryValue(css::uno::Any &rVal, sal_uInt8=0) const override
virtual bool GetPresentation(SfxItemPresentation, MapUnit, MapUnit, OUString &rText, const IntlWrapper &) const override
EnumT GetValue() const
void SetValue(EnumT nTheValue)
virtual bool operator==(SfxPoolItem const &other) const override
const SfxPoolItem & Get(sal_uInt16 nWhich, bool bSrchInParent=true) const
virtual void dumpAsXml(xmlTextWriterPtr pWriter) const
virtual SfxPoolItem * Clone(SfxItemPool *pPool=nullptr) const=0
const SwFormatSurround & GetSurround(bool=true) const
Definition: fmtsrnd.hxx:63
bool IsAnchorOnly() const
Definition: fmtsrnd.hxx:52
void SetSurround(css::text::WrapTextMode eNew)
Definition: fmtsrnd.hxx:55
bool IsOutside() const
Definition: fmtsrnd.hxx:54
bool IsContour() const
Definition: fmtsrnd.hxx:53
void SetAnchorOnly(bool bNew)
Definition: fmtsrnd.hxx:56
void SetOutside(bool bNew)
Definition: fmtsrnd.hxx:58
void SetContour(bool bNew)
Definition: fmtsrnd.hxx:57
css::text::WrapTextMode GetSurround() const
Definition: fmtsrnd.hxx:51
bool m_bAnchorOnly
Definition: fmtsrnd.hxx:33
const SwFormatSurround & GetSurround(bool=true) const
Definition: fmtsrnd.hxx:66
SwAttrSet m_aSet
Definition: format.hxx:51
struct _xmlTextWriter * xmlTextWriterPtr
constexpr TypedWhichId< SwFormatSurround > RES_SURROUND(107)
MapUnit
SfxItemPresentation
#define SW_DLLPUBLIC
Definition: swdllapi.h:28
unsigned char sal_uInt8