Bump version to 6.4-15
[LibreOffice.git] / svx / source / sdr / properties / connectorproperties.cxx
blob12629b0014821fd1617bf2240ec6f15a15eb3c83
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
32 namespace properties
34 // create a new itemset
35 std::unique_ptr<SfxItemSet> ConnectorProperties::CreateObjectSpecificItemSet(SfxItemPool& rPool)
37 return std::make_unique<SfxItemSet>(
38 rPool,
39 svl::Items<
40 // Ranges from SdrAttrObj, SdrEdgeObj:
41 SDRATTR_START, SDRATTR_SHADOW_LAST,
42 SDRATTR_MISC_FIRST, SDRATTR_EDGE_LAST,
43 SDRATTR_TEXTDIRECTION, SDRATTR_TEXTDIRECTION,
44 // Range from SdrTextObj:
45 EE_ITEMS_START, EE_ITEMS_END>{});
48 ConnectorProperties::ConnectorProperties(SdrObject& rObj)
49 : TextProperties(rObj)
53 ConnectorProperties::ConnectorProperties(const ConnectorProperties& rProps, SdrObject& rObj)
54 : TextProperties(rProps, rObj)
58 ConnectorProperties::~ConnectorProperties()
62 std::unique_ptr<BaseProperties> ConnectorProperties::Clone(SdrObject& rObj) const
64 return std::unique_ptr<BaseProperties>(new ConnectorProperties(*this, rObj));
67 void ConnectorProperties::ItemSetChanged(const SfxItemSet& rSet)
69 SdrEdgeObj& rObj = static_cast<SdrEdgeObj&>(GetSdrObject());
71 // call parent
72 TextProperties::ItemSetChanged(rSet);
74 // local changes
75 rObj.ImpSetAttrToEdgeInfo();
78 void ConnectorProperties::SetStyleSheet(SfxStyleSheet* pNewStyleSheet, bool bDontRemoveHardAttr)
80 // call parent (always first thing to do, may create the SfxItemSet)
81 TextProperties::SetStyleSheet(pNewStyleSheet, bDontRemoveHardAttr);
83 // local changes
84 SdrEdgeObj& rObj = static_cast<SdrEdgeObj&>(GetSdrObject());
85 rObj.ImpSetAttrToEdgeInfo();
87 } // end of namespace properties
88 } // end of namespace sdr
90 /* vim:set shiftwidth=4 softtabstop=4 expandtab: */