Line data Source code
1 : /* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
2 : /*
3 : * This file is part of the LibreOffice project.
4 : *
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/.
8 : *
9 : * This file incorporates work covered by the following license notice:
10 : *
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 .
18 : */
19 :
20 : #include <svx/sdr/properties/defaultproperties.hxx>
21 : #include <svx/sdr/properties/itemsettools.hxx>
22 : #include <svl/itemset.hxx>
23 : #include <svl/whiter.hxx>
24 :
25 : #include <vector>
26 : #include <svx/svdobj.hxx>
27 : #include <svx/svddef.hxx>
28 : #include <svx/svdpool.hxx>
29 : #include <editeng/eeitem.hxx>
30 :
31 : //////////////////////////////////////////////////////////////////////////////
32 :
33 : namespace sdr
34 : {
35 : namespace properties
36 : {
37 0 : SfxItemSet& DefaultProperties::CreateObjectSpecificItemSet(SfxItemPool& rPool)
38 : {
39 : // Basic implementation; Basic object has NO attributes
40 0 : return *(new SfxItemSet(rPool));
41 : }
42 :
43 5849 : DefaultProperties::DefaultProperties(SdrObject& rObj)
44 : : BaseProperties(rObj),
45 5849 : mpItemSet(0L)
46 : {
47 5849 : }
48 :
49 4 : DefaultProperties::DefaultProperties(const DefaultProperties& rProps, SdrObject& rObj)
50 : : BaseProperties(rObj),
51 4 : mpItemSet(0L)
52 : {
53 4 : if(rProps.mpItemSet)
54 : {
55 4 : mpItemSet = rProps.mpItemSet->Clone(sal_True);
56 :
57 : // do not keep parent info, this may be changed by later construrtors.
58 : // This class just copies the ItemSet, ignore parent.
59 4 : if(mpItemSet && mpItemSet->GetParent())
60 : {
61 0 : mpItemSet->SetParent(0L);
62 : }
63 : }
64 4 : }
65 :
66 0 : BaseProperties& DefaultProperties::Clone(SdrObject& rObj) const
67 : {
68 0 : return *(new DefaultProperties(*this, rObj));
69 : }
70 :
71 11540 : DefaultProperties::~DefaultProperties()
72 : {
73 5770 : if(mpItemSet)
74 : {
75 4515 : delete mpItemSet;
76 4515 : mpItemSet = 0L;
77 : }
78 5770 : }
79 :
80 409194 : const SfxItemSet& DefaultProperties::GetObjectItemSet() const
81 : {
82 409194 : if(!mpItemSet)
83 : {
84 4591 : ((DefaultProperties*)this)->mpItemSet = &(((DefaultProperties*)this)->CreateObjectSpecificItemSet(*GetSdrObject().GetObjectItemPool()));
85 4591 : ((DefaultProperties*)this)->ForceDefaultAttributes();
86 : }
87 :
88 : DBG_ASSERT(mpItemSet, "Could not create an SfxItemSet(!)");
89 :
90 409194 : return *mpItemSet;
91 : }
92 :
93 10379 : void DefaultProperties::SetObjectItem(const SfxPoolItem& rItem)
94 : {
95 10379 : const sal_uInt16 nWhichID(rItem.Which());
96 :
97 10379 : if(AllowItemChange(nWhichID, &rItem))
98 : {
99 10379 : ItemChange(nWhichID, &rItem);
100 10379 : PostItemChange(nWhichID);
101 :
102 10379 : SfxItemSet aSet(*GetSdrObject().GetObjectItemPool(), nWhichID, nWhichID);
103 10379 : aSet.Put(rItem);
104 10379 : ItemSetChanged(aSet);
105 : }
106 10379 : }
107 :
108 6127 : void DefaultProperties::SetObjectItemDirect(const SfxPoolItem& rItem)
109 : {
110 6127 : const sal_uInt16 nWhichID(rItem.Which());
111 :
112 6127 : if(AllowItemChange(nWhichID, &rItem))
113 : {
114 6127 : ItemChange(nWhichID, &rItem);
115 : }
116 6127 : }
117 :
118 41 : void DefaultProperties::ClearObjectItem(const sal_uInt16 nWhich)
119 : {
120 41 : if(AllowItemChange(nWhich))
121 : {
122 41 : ItemChange(nWhich);
123 41 : PostItemChange(nWhich);
124 :
125 41 : if(nWhich)
126 : {
127 0 : SfxItemSet aSet(*GetSdrObject().GetObjectItemPool(), nWhich, nWhich, 0, 0);
128 0 : ItemSetChanged(aSet);
129 : }
130 : }
131 41 : }
132 :
133 12710 : void DefaultProperties::ClearObjectItemDirect(const sal_uInt16 nWhich)
134 : {
135 12710 : if(AllowItemChange(nWhich))
136 : {
137 12462 : ItemChange(nWhich);
138 : }
139 12710 : }
140 :
141 9690 : void DefaultProperties::SetObjectItemSet(const SfxItemSet& rSet)
142 : {
143 9690 : SfxWhichIter aWhichIter(rSet);
144 9690 : sal_uInt16 nWhich(aWhichIter.FirstWhich());
145 : const SfxPoolItem *pPoolItem;
146 9690 : std::vector< sal_uInt16 > aPostItemChangeList;
147 9690 : sal_Bool bDidChange(sal_False);
148 9690 : SfxItemSet aSet(*GetSdrObject().GetObjectItemPool(), SDRATTR_START, EE_ITEMS_END);
149 :
150 : // give a hint to STL_Vector
151 9690 : aPostItemChangeList.reserve(rSet.Count());
152 :
153 906045 : while(nWhich)
154 : {
155 886665 : if(SFX_ITEM_SET == rSet.GetItemState(nWhich, sal_False, &pPoolItem))
156 : {
157 79804 : if(AllowItemChange(nWhich, pPoolItem))
158 : {
159 79804 : bDidChange = sal_True;
160 79804 : ItemChange(nWhich, pPoolItem);
161 79804 : aPostItemChangeList.push_back( nWhich );
162 79804 : aSet.Put(*pPoolItem);
163 : }
164 : }
165 :
166 886665 : nWhich = aWhichIter.NextWhich();
167 : }
168 :
169 9690 : if(bDidChange)
170 : {
171 9687 : std::vector< sal_uInt16 >::iterator aIter = aPostItemChangeList.begin();
172 9687 : const std::vector< sal_uInt16 >::iterator aEnd = aPostItemChangeList.end();
173 :
174 99178 : while(aIter != aEnd)
175 : {
176 79804 : PostItemChange(*aIter);
177 79804 : ++aIter;
178 : }
179 :
180 9687 : ItemSetChanged(aSet);
181 9690 : }
182 9690 : }
183 :
184 0 : void DefaultProperties::ItemSetChanged(const SfxItemSet& /*rSet*/)
185 : {
186 0 : }
187 :
188 108813 : sal_Bool DefaultProperties::AllowItemChange(const sal_uInt16 /*nWhich*/, const SfxPoolItem* /*pNewItem*/) const
189 : {
190 108813 : return sal_True;
191 : }
192 :
193 0 : void DefaultProperties::ItemChange(const sal_uInt16 /*nWhich*/, const SfxPoolItem* /*pNewItem*/)
194 : {
195 0 : }
196 :
197 90224 : void DefaultProperties::PostItemChange(const sal_uInt16 nWhich )
198 : {
199 90224 : if( (nWhich == XATTR_FILLSTYLE) && (mpItemSet != NULL) )
200 4000 : CleanupFillProperties(*mpItemSet);
201 90224 : }
202 :
203 0 : void DefaultProperties::SetStyleSheet(SfxStyleSheet* /*pNewStyleSheet*/, sal_Bool /*bDontRemoveHardAttr*/)
204 : {
205 : // no StyleSheet in DefaultProperties
206 0 : }
207 :
208 0 : SfxStyleSheet* DefaultProperties::GetStyleSheet() const
209 : {
210 : // no StyleSheet in DefaultProperties
211 0 : return 0L;
212 : }
213 :
214 0 : void DefaultProperties::ForceDefaultAttributes()
215 : {
216 0 : }
217 :
218 0 : void DefaultProperties::Scale(const Fraction& rScale)
219 : {
220 0 : if(mpItemSet)
221 : {
222 0 : ScaleItemSet(*mpItemSet, rScale);
223 : }
224 0 : }
225 : } // end of namespace properties
226 : } // end of namespace sdr
227 :
228 : /* vim:set shiftwidth=4 softtabstop=4 expandtab: */
|