LibreOffice Module svx (master) 1
captionproperties.cxx
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
20#include <sal/config.h>
21
23#include <svl/itemset.hxx>
24#include <svl/style.hxx>
25#include <svx/svddef.hxx>
26#include <editeng/eeitem.hxx>
27#include <svx/svdocapt.hxx>
28
29
30namespace sdr::properties
31{
32 // create a new itemset
34 {
35 return SfxItemSet(
36 rPool,
38 // Ranges from SdrAttrObj, SdrCaptionObj:
42 // Range from SdrTextObj:
44 }
45
48 {
49 }
50
52 : RectangleProperties(rProps, rObj)
53 {
54 }
55
57 {
58 }
59
60 std::unique_ptr<BaseProperties> CaptionProperties::Clone(SdrObject& rObj) const
61 {
62 return std::unique_ptr<BaseProperties>(new CaptionProperties(*this, rObj));
63 }
64
66 {
67 SdrCaptionObj& rObj = static_cast<SdrCaptionObj&>(GetSdrObject());
68
69 // local changes
70 rObj.ImpRecalcTail();
71
72 // call parent
73 RectangleProperties::ItemSetChanged(aChangedItems, nDeletedWhich);
74 }
75
76 void CaptionProperties::SetStyleSheet(SfxStyleSheet* pNewStyleSheet, bool bDontRemoveHardAttr,
77 bool bBroadcast)
78 {
79 // call parent (always first thing to do, may create the SfxItemSet)
80 RectangleProperties::SetStyleSheet(pNewStyleSheet, bDontRemoveHardAttr, bBroadcast);
81
82 // local changes
83 SdrCaptionObj& rObj = static_cast<SdrCaptionObj&>(GetSdrObject());
84 rObj.ImpRecalcTail();
85 }
86
88 {
89 // call parent
91
92 // force ItemSet
94
95 // this was set by TextProperties::ForceDefaultAttributes(),
96 // reset to default
97 if (static_cast<SdrCaptionObj&>(GetSdrObject()).GetSpecialTextBoxShadow())
98 {
99 mxItemSet->ClearItem(XATTR_FILLCOLOR);
100 mxItemSet->ClearItem(XATTR_FILLSTYLE);
101 }
102 mxItemSet->ClearItem(XATTR_LINESTYLE);
103 }
104} // end of namespace
105
106/* vim:set shiftwidth=4 softtabstop=4 expandtab: */
SVX_DLLPRIVATE void ImpRecalcTail()
Definition: svdocapt.cxx:407
Abstract DrawObject.
Definition: svdobj.hxx:260
virtual const SfxItemSet & GetObjectItemSet() const override
const SdrObject & GetSdrObject() const
Definition: properties.cxx:43
virtual void ForceDefaultAttributes() override
virtual void ItemSetChanged(o3tl::span< const SfxPoolItem *const > aChangedItems, sal_uInt16 nDeletedWhich) override
virtual SfxItemSet CreateObjectSpecificItemSet(SfxItemPool &rPool) override
virtual void SetStyleSheet(SfxStyleSheet *pNewStyleSheet, bool bDontRemoveHardAttr, bool bBroadcast) override
virtual std::unique_ptr< BaseProperties > Clone(SdrObject &rObj) const override
std::optional< SfxItemSet > mxItemSet
virtual void SetStyleSheet(SfxStyleSheet *pNewStyleSheet, bool bDontRemoveHardAttr, bool bBroadcast) override
virtual void ItemSetChanged(o3tl::span< const SfxPoolItem *const > aChangedItems, sal_uInt16 nDeletedWhich) override
virtual void ForceDefaultAttributes() override
constexpr sal_uInt16 EE_ITEMS_END(EE_FEATURE_END)
constexpr sal_uInt16 EE_ITEMS_START(OWN_ATTR_VALUE_END+1)
static constexpr auto Items
constexpr sal_uInt16 SDRATTR_START(XATTR_START)
constexpr sal_uInt16 SDRATTR_TEXTCOLUMNS_FIRST(SDRATTR_SOFTEDGE_LAST+1)
constexpr sal_uInt16 SDRATTR_MISC_LAST(SDRATTR_TEXT_CLIPVERTOVERFLOW)
constexpr sal_uInt16 SDRATTR_TEXTCOLUMNS_LAST(SDRATTR_TEXTCOLUMNS_SPACING)
constexpr TypedWhichId< SvxWritingModeItem > SDRATTR_TEXTDIRECTION(SDRATTR_NOTPERSIST_FIRST+34)
constexpr TypedWhichId< XFillColorItem > XATTR_FILLCOLOR(XATTR_FILL_FIRST+1)
constexpr TypedWhichId< XLineStyleItem > XATTR_LINESTYLE(XATTR_LINE_FIRST)
constexpr TypedWhichId< XFillStyleItem > XATTR_FILLSTYLE(XATTR_FILL_FIRST)