Bump version to 6.4-15
[LibreOffice.git] / svx / source / sdr / properties / captionproperties.cxx
blob431f9a39bd1675de4c9db2f65a3b4824cb85c9bc
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 .
20 #include <sal/config.h>
22 #include <sdr/properties/captionproperties.hxx>
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>
30 namespace sdr
32 namespace properties
34 // create a new itemset
35 std::unique_ptr<SfxItemSet> CaptionProperties::CreateObjectSpecificItemSet(SfxItemPool& rPool)
37 return std::make_unique<SfxItemSet>(
38 rPool,
39 svl::Items<
40 // Ranges from SdrAttrObj, SdrCaptionObj:
41 SDRATTR_START, SDRATTR_MISC_LAST,
42 SDRATTR_TEXTDIRECTION, SDRATTR_TEXTDIRECTION,
43 // Range from SdrTextObj:
44 EE_ITEMS_START, EE_ITEMS_END>{});
47 CaptionProperties::CaptionProperties(SdrObject& rObj)
48 : RectangleProperties(rObj)
52 CaptionProperties::CaptionProperties(const CaptionProperties& rProps, SdrObject& rObj)
53 : RectangleProperties(rProps, rObj)
57 CaptionProperties::~CaptionProperties()
61 std::unique_ptr<BaseProperties> CaptionProperties::Clone(SdrObject& rObj) const
63 return std::unique_ptr<BaseProperties>(new CaptionProperties(*this, rObj));
66 void CaptionProperties::ItemSetChanged(const SfxItemSet& rSet)
68 SdrCaptionObj& rObj = static_cast<SdrCaptionObj&>(GetSdrObject());
70 // local changes
71 rObj.ImpRecalcTail();
73 // call parent
74 RectangleProperties::ItemSetChanged(rSet);
77 void CaptionProperties::SetStyleSheet(SfxStyleSheet* pNewStyleSheet, bool bDontRemoveHardAttr)
79 // call parent (always first thing to do, may create the SfxItemSet)
80 RectangleProperties::SetStyleSheet(pNewStyleSheet, bDontRemoveHardAttr);
82 // local changes
83 SdrCaptionObj& rObj = static_cast<SdrCaptionObj&>(GetSdrObject());
84 rObj.ImpRecalcTail();
87 void CaptionProperties::ForceDefaultAttributes()
89 // call parent
90 RectangleProperties::ForceDefaultAttributes();
92 // force ItemSet
93 GetObjectItemSet();
95 // this was set by TextProperties::ForceDefaultAttributes(),
96 // reset to default
97 mpItemSet->ClearItem(XATTR_LINESTYLE);
99 } // end of namespace properties
100 } // end of namespace sdr
102 /* vim:set shiftwidth=4 softtabstop=4 expandtab: */