tdf#130857 qt weld: Implement QtInstanceWidget::strip_mnemonic
[LibreOffice.git] / svx / source / sdr / properties / circleproperties.cxx
blob217b9e7b257ee078b42f8b6046e8456ab70335ae
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/circleproperties.hxx>
23 #include <svl/itemset.hxx>
24 #include <svl/style.hxx>
25 #include <svx/svddef.hxx>
26 #include <editeng/eeitem.hxx>
27 #include <svx/svdocirc.hxx>
28 #include <sxcikitm.hxx>
29 #include <svx/sxciaitm.hxx>
32 namespace sdr::properties
34 // create a new itemset
35 SfxItemSet CircleProperties::CreateObjectSpecificItemSet(SfxItemPool& rPool)
37 return SfxItemSet(
38 rPool,
39 svl::Items<
40 // Ranges from SdrAttrObj, SdrCircObj
41 SDRATTR_START, SDRATTR_SHADOW_LAST,
42 SDRATTR_MISC_FIRST, SDRATTR_MISC_LAST,
43 SDRATTR_CIRC_FIRST, SDRATTR_CIRC_LAST,
44 SDRATTR_TEXTDIRECTION, SDRATTR_TEXTDIRECTION,
45 SDRATTR_TEXTCOLUMNS_FIRST, SDRATTR_TEXTCOLUMNS_LAST,
46 // Range from SdrTextObj:
47 EE_ITEMS_START, EE_ITEMS_END>);
50 CircleProperties::CircleProperties(SdrObject& rObj)
51 : RectangleProperties(rObj)
55 CircleProperties::CircleProperties(const CircleProperties& rProps, SdrObject& rObj)
56 : RectangleProperties(rProps, rObj)
60 CircleProperties::~CircleProperties()
64 std::unique_ptr<BaseProperties> CircleProperties::Clone(SdrObject& rObj) const
66 return std::unique_ptr<BaseProperties>(new CircleProperties(*this, rObj));
69 void CircleProperties::ItemSetChanged(std::span< const SfxPoolItem* const > aChangedItems, sal_uInt16 nDeletedWhich, bool bAdjustTextFrameWidthAndHeight)
71 SdrCircObj& rObj = static_cast<SdrCircObj&>(GetSdrObject());
73 // call parent
74 RectangleProperties::ItemSetChanged(aChangedItems, nDeletedWhich, bAdjustTextFrameWidthAndHeight);
76 // local changes
77 rObj.ImpSetAttrToCircInfo();
80 void CircleProperties::SetStyleSheet(SfxStyleSheet* pNewStyleSheet, bool bDontRemoveHardAttr,
81 bool bBroadcast, bool bAdjustTextFrameWidthAndHeight)
83 // call parent (always first thing to do, may create the SfxItemSet)
84 RectangleProperties::SetStyleSheet(pNewStyleSheet, bDontRemoveHardAttr, bBroadcast, bAdjustTextFrameWidthAndHeight);
86 // local changes
87 SdrCircObj& rObj = static_cast<SdrCircObj&>(GetSdrObject());
88 rObj.SetXPolyDirty();
90 // local changes
91 rObj.ImpSetAttrToCircInfo();
94 void CircleProperties::ForceDefaultAttributes()
96 SdrCircObj& rObj = static_cast<SdrCircObj&>(GetSdrObject());
97 SdrCircKind eKind = rObj.GetCircleKind();
99 if(eKind != SdrCircKind::Full)
101 moItemSet->Put(SdrCircKindItem(eKind));
103 if(rObj.GetStartAngle())
105 moItemSet->Put(makeSdrCircStartAngleItem(rObj.GetStartAngle()));
108 if(rObj.GetEndAngle() != 36000_deg100)
110 moItemSet->Put(makeSdrCircEndAngleItem(rObj.GetEndAngle()));
114 // call parent after SetObjectItem(SdrCircKindItem())
115 // because ForceDefaultAttr() will call
116 // ImpSetAttrToCircInfo() which needs a correct
117 // SdrCircKindItem
118 RectangleProperties::ForceDefaultAttributes();
120 } // end of namespace
122 /* vim:set shiftwidth=4 softtabstop=4 expandtab: */