/src/libreoffice/sw/inc/fmtsrnd.hxx
Line | Count | Source |
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 | | |
28 | | /// Defines the way you want text to wrap around an object. This pool item can appear in a frame |
29 | | /// styles and in the item set of an sw::SpzFrameFormat. It's Format -> Image -> Properties -> Wrap |
30 | | /// on the UI. |
31 | | class SW_DLLPUBLIC SwFormatSurround final : public SfxEnumItem<css::text::WrapTextMode> |
32 | | { |
33 | | bool m_bAnchorOnly :1; |
34 | | bool m_bContour :1; |
35 | | bool m_bOutside :1; |
36 | | public: |
37 | | DECLARE_ITEM_TYPE_FUNCTION(SwFormatSurround) |
38 | | SwFormatSurround( css::text::WrapTextMode eNew = css::text::WrapTextMode_PARALLEL ); |
39 | | |
40 | | // "Pure virtual Methods" of SfxPoolItem. |
41 | | virtual bool operator==( const SfxPoolItem& ) const override; |
42 | | virtual SwFormatSurround* Clone( SfxItemPool* pPool = nullptr ) 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 | 1.08M | css::text::WrapTextMode GetSurround() const { return GetValue(); } |
52 | 5.45k | bool IsAnchorOnly() const { return m_bAnchorOnly; } |
53 | 190k | bool IsContour() const { return m_bContour; } |
54 | 0 | bool IsOutside() const { return m_bOutside; } |
55 | 0 | void SetSurround ( css::text::WrapTextMode eNew ) { SetValue( eNew ); } |
56 | 3.22k | void SetAnchorOnly( bool bNew ) { m_bAnchorOnly = bNew; } |
57 | 23.3k | void SetContour( bool bNew ) { m_bContour = bNew; } |
58 | 19.8k | void SetOutside( bool bNew ) { m_bOutside = bNew; } |
59 | | |
60 | | void dumpAsXml(xmlTextWriterPtr pWriter) const override; |
61 | | }; |
62 | | |
63 | | inline const SwFormatSurround &SwAttrSet::GetSurround(bool bInP) const |
64 | 1.25M | { return Get( RES_SURROUND,bInP); } |
65 | | |
66 | | inline const SwFormatSurround &SwFormat::GetSurround(bool bInP) const |
67 | 1.25M | { return m_aSet.GetSurround(bInP); } |
68 | | |
69 | | #endif |
70 | | |
71 | | /* vim:set shiftwidth=4 softtabstop=4 expandtab: */ |