bump product version to 7.6.3.2-android
[LibreOffice.git] / svx / source / sdr / properties / connectorproperties.cxx
blob375a98190d1ef02e644a1fd1a570cf3d54cec8ed
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/connectorproperties.hxx>
23 #include <svl/itemset.hxx>
24 #include <svl/style.hxx>
25 #include <svx/svddef.hxx>
26 #include <editeng/eeitem.hxx>
27 #include <svx/svdoedge.hxx>
30 namespace sdr::properties
32 // create a new itemset
33 SfxItemSet ConnectorProperties::CreateObjectSpecificItemSet(SfxItemPool& rPool)
35 return SfxItemSet(
36 rPool,
37 svl::Items<
38 // Ranges from SdrAttrObj, SdrEdgeObj:
39 SDRATTR_START, SDRATTR_SHADOW_LAST,
40 SDRATTR_MISC_FIRST, SDRATTR_EDGE_LAST,
41 SDRATTR_TEXTDIRECTION, SDRATTR_TEXTDIRECTION,
42 SDRATTR_TEXTCOLUMNS_FIRST, SDRATTR_TEXTCOLUMNS_LAST,
43 // Range from SdrTextObj:
44 EE_ITEMS_START, EE_ITEMS_END>);
47 ConnectorProperties::ConnectorProperties(SdrObject& rObj)
48 : TextProperties(rObj)
52 ConnectorProperties::ConnectorProperties(const ConnectorProperties& rProps, SdrObject& rObj)
53 : TextProperties(rProps, rObj)
57 ConnectorProperties::~ConnectorProperties()
61 std::unique_ptr<BaseProperties> ConnectorProperties::Clone(SdrObject& rObj) const
63 return std::unique_ptr<BaseProperties>(new ConnectorProperties(*this, rObj));
66 void ConnectorProperties::ItemSetChanged(o3tl::span< const SfxPoolItem* const > aChangedItems, sal_uInt16 nDeletedWhich)
68 SdrEdgeObj& rObj = static_cast<SdrEdgeObj&>(GetSdrObject());
70 // call parent
71 TextProperties::ItemSetChanged(aChangedItems, nDeletedWhich);
73 // local changes
74 rObj.ImpSetAttrToEdgeInfo();
77 void ConnectorProperties::SetStyleSheet(SfxStyleSheet* pNewStyleSheet, bool bDontRemoveHardAttr,
78 bool bBroadcast)
80 // call parent (always first thing to do, may create the SfxItemSet)
81 TextProperties::SetStyleSheet(pNewStyleSheet, bDontRemoveHardAttr, bBroadcast);
83 // local changes
84 SdrEdgeObj& rObj = static_cast<SdrEdgeObj&>(GetSdrObject());
85 rObj.ImpSetAttrToEdgeInfo();
87 } // end of namespace
89 /* vim:set shiftwidth=4 softtabstop=4 expandtab: */