1 /* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
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
)
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(const SfxItemSet
& rSet
)
71 SdrCircObj
& rObj
= static_cast<SdrCircObj
&>(GetSdrObject());
74 RectangleProperties::ItemSetChanged(rSet
);
77 rObj
.ImpSetAttrToCircInfo();
80 void CircleProperties::SetStyleSheet(SfxStyleSheet
* pNewStyleSheet
, bool bDontRemoveHardAttr
)
82 // call parent (always first thing to do, may create the SfxItemSet)
83 RectangleProperties::SetStyleSheet(pNewStyleSheet
, bDontRemoveHardAttr
);
86 SdrCircObj
& rObj
= static_cast<SdrCircObj
&>(GetSdrObject());
90 rObj
.ImpSetAttrToCircInfo();
93 void CircleProperties::ForceDefaultAttributes()
95 SdrCircObj
& rObj
= static_cast<SdrCircObj
&>(GetSdrObject());
96 SdrCircKind eKind
= rObj
.GetCircleKind();
98 if(eKind
!= SdrCircKind::Full
)
103 mxItemSet
->Put(SdrCircKindItem(eKind
));
105 if(rObj
.GetStartAngle())
107 mxItemSet
->Put(makeSdrCircStartAngleItem(rObj
.GetStartAngle()));
110 if(rObj
.GetEndAngle() != 36000_deg100
)
112 mxItemSet
->Put(makeSdrCircEndAngleItem(rObj
.GetEndAngle()));
116 // call parent after SetObjectItem(SdrCircKindItem())
117 // because ForceDefaultAttr() will call
118 // ImpSetAttrToCircInfo() which needs a correct
120 RectangleProperties::ForceDefaultAttributes();
122 } // end of namespace
124 /* vim:set shiftwidth=4 softtabstop=4 expandtab: */