Bump version to 6.4-15
[LibreOffice.git] / svx / source / sdr / properties / measureproperties.cxx
blob845a744249ee11c78f5725b006935ee32bdc8883
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/measureproperties.hxx>
23 #include <svl/itemset.hxx>
24 #include <svl/style.hxx>
25 #include <svx/svddef.hxx>
26 #include <editeng/eeitem.hxx>
27 #include <svx/svdomeas.hxx>
28 #include <svx/xlineit0.hxx>
29 #include <svx/xlnstit.hxx>
30 #include <svx/xlnstwit.hxx>
31 #include <svx/xlnedit.hxx>
32 #include <svx/xlnedwit.hxx>
33 #include <svx/sdynitm.hxx>
34 #include <basegfx/point/b2dpoint.hxx>
35 #include <basegfx/polygon/b2dpolygon.hxx>
38 namespace sdr
40 namespace properties
42 // create a new itemset
43 std::unique_ptr<SfxItemSet> MeasureProperties::CreateObjectSpecificItemSet(SfxItemPool& rPool)
45 return std::make_unique<SfxItemSet>(
46 rPool,
47 svl::Items<
48 // Ranges from SdrAttrObj, SdrMeasureObj:
49 SDRATTR_START, SDRATTR_SHADOW_LAST,
50 SDRATTR_MISC_FIRST, SDRATTR_MISC_LAST,
51 SDRATTR_MEASURE_FIRST, SDRATTR_MEASURE_LAST,
52 SDRATTR_TEXTDIRECTION, SDRATTR_TEXTDIRECTION,
53 // Range from SdrTextObj:
54 EE_ITEMS_START, EE_ITEMS_END>{});
57 MeasureProperties::MeasureProperties(SdrObject& rObj)
58 : TextProperties(rObj)
62 MeasureProperties::MeasureProperties(const MeasureProperties& rProps, SdrObject& rObj)
63 : TextProperties(rProps, rObj)
67 MeasureProperties::~MeasureProperties()
71 std::unique_ptr<BaseProperties> MeasureProperties::Clone(SdrObject& rObj) const
73 return std::unique_ptr<BaseProperties>(new MeasureProperties(*this, rObj));
76 void MeasureProperties::ItemSetChanged(const SfxItemSet& rSet)
78 SdrMeasureObj& rObj = static_cast<SdrMeasureObj&>(GetSdrObject());
80 // call parent
81 TextProperties::ItemSetChanged(rSet);
83 // local changes
84 rObj.SetTextDirty();
87 void MeasureProperties::SetStyleSheet(SfxStyleSheet* pNewStyleSheet, bool bDontRemoveHardAttr)
89 // call parent (always first thing to do, may create the SfxItemSet)
90 TextProperties::SetStyleSheet(pNewStyleSheet, bDontRemoveHardAttr);
92 // local changes
93 // get access to dimension line object
94 SdrMeasureObj& rObj = static_cast<SdrMeasureObj&>(GetSdrObject());
96 // mark dimension line text as changed (dirty) in the dimension line object
97 rObj.SetTextDirty();
99 // tdf#98525 ask the dimension line object to redraw the changed text
100 rObj.UndirtyText();
103 void MeasureProperties::ForceDefaultAttributes()
105 // call parent
106 TextProperties::ForceDefaultAttributes();
108 // force ItemSet
109 GetObjectItemSet();
111 //#71958# by default, the show units Bool-Item is set as hard
112 // attribute to sal_True to avoid confusion when copying SdrMeasureObj's
113 // from one application to another
114 mpItemSet->Put(SdrYesNoItem(SDRATTR_MEASURESHOWUNIT, true));
116 basegfx::B2DPolygon aNewPolygon;
117 aNewPolygon.append(basegfx::B2DPoint(100.0, 0.0));
118 aNewPolygon.append(basegfx::B2DPoint(200.0, 400.0));
119 aNewPolygon.append(basegfx::B2DPoint(0.0, 400.0));
120 aNewPolygon.setClosed(true);
122 mpItemSet->Put(XLineStartItem(OUString(), basegfx::B2DPolyPolygon(aNewPolygon)));
123 mpItemSet->Put(XLineStartWidthItem(200));
124 mpItemSet->Put(XLineEndItem(OUString(), basegfx::B2DPolyPolygon(aNewPolygon)));
125 mpItemSet->Put(XLineEndWidthItem(200));
126 mpItemSet->Put(XLineStyleItem(css::drawing::LineStyle_SOLID));
128 } // end of namespace properties
129 } // end of namespace sdr
131 /* vim:set shiftwidth=4 softtabstop=4 expandtab: */