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 "ItemConverter.hxx"
21 : #include "macros.hxx"
22 : #include <com/sun/star/lang/XComponent.hpp>
23 : #include <svl/itemprop.hxx>
24 : #include <svl/itemiter.hxx>
25 : #include <svl/whiter.hxx>
26 : #include <svx/svxids.hrc>
27 :
28 : using namespace ::com::sun::star;
29 :
30 : namespace chart { namespace wrapper {
31 :
32 0 : ItemConverter::ItemConverter(
33 : const uno::Reference< beans::XPropertySet > & rPropertySet,
34 : SfxItemPool& rItemPool ) :
35 : m_xPropertySet( rPropertySet ),
36 : m_xPropertySetInfo( NULL ),
37 : m_rItemPool( rItemPool ),
38 0 : m_bIsValid( true )
39 : {
40 0 : resetPropertySet( m_xPropertySet );
41 0 : }
42 :
43 0 : ItemConverter::~ItemConverter()
44 : {
45 0 : stopAllComponentListening();
46 0 : }
47 :
48 0 : void ItemConverter::resetPropertySet(
49 : const uno::Reference< beans::XPropertySet > & xPropSet )
50 : {
51 0 : if( xPropSet.is())
52 : {
53 0 : stopAllComponentListening();
54 0 : m_xPropertySet = xPropSet;
55 0 : m_xPropertySetInfo = m_xPropertySet->getPropertySetInfo();
56 :
57 0 : uno::Reference< lang::XComponent > xComp( m_xPropertySet, uno::UNO_QUERY );
58 0 : if( xComp.is())
59 : {
60 : // method of base class ::utl::OEventListenerAdapter
61 0 : startComponentListening( xComp );
62 0 : }
63 : }
64 0 : }
65 :
66 0 : SfxItemSet ItemConverter::CreateEmptyItemSet() const
67 : {
68 0 : return SfxItemSet( GetItemPool(), GetWhichPairs() );
69 : }
70 :
71 0 : void ItemConverter::_disposing( const lang::EventObject& rSource )
72 : {
73 0 : if( rSource.Source == m_xPropertySet )
74 : {
75 0 : m_bIsValid = false;
76 : }
77 0 : }
78 :
79 0 : void ItemConverter::FillItemSet( SfxItemSet & rOutItemSet ) const
80 : {
81 0 : const sal_uInt16 * pRanges = rOutItemSet.GetRanges();
82 0 : tPropertyNameWithMemberId aProperty;
83 0 : SfxItemPool & rPool = GetItemPool();
84 :
85 : assert(pRanges != NULL);
86 : OSL_ASSERT( m_xPropertySetInfo.is());
87 : OSL_ASSERT( m_xPropertySet.is());
88 :
89 0 : while( (*pRanges) != 0)
90 : {
91 0 : sal_uInt16 nBeg = (*pRanges);
92 0 : ++pRanges;
93 0 : sal_uInt16 nEnd = (*pRanges);
94 0 : ++pRanges;
95 :
96 : OSL_ASSERT( nBeg <= nEnd );
97 0 : for( sal_uInt16 nWhich = nBeg; nWhich <= nEnd; ++nWhich )
98 : {
99 0 : if( GetItemProperty( nWhich, aProperty ))
100 : {
101 : // put the Property into the itemset
102 0 : SfxPoolItem * pItem = rPool.GetDefaultItem( nWhich ).Clone();
103 :
104 0 : if( pItem )
105 : {
106 : try
107 : {
108 0 : if( ! pItem->PutValue( m_xPropertySet->getPropertyValue( aProperty.first ),
109 : aProperty.second // nMemberId
110 0 : ))
111 : {
112 0 : delete pItem;
113 : }
114 : else
115 : {
116 0 : rOutItemSet.Put( *pItem, nWhich );
117 0 : delete pItem;
118 : }
119 : }
120 0 : catch( const beans::UnknownPropertyException &ex )
121 : {
122 0 : delete pItem;
123 : (void)ex;
124 : OSL_FAIL(
125 : OUStringToOString(
126 : ex.Message +
127 : " - unknown Property: " + aProperty.first,
128 : RTL_TEXTENCODING_ASCII_US ).getStr());
129 : }
130 0 : catch( const uno::Exception &ex )
131 : {
132 : ASSERT_EXCEPTION( ex );
133 : }
134 : }
135 : }
136 : else
137 : {
138 : try
139 : {
140 0 : FillSpecialItem( nWhich, rOutItemSet );
141 : }
142 0 : catch( const uno::Exception &ex )
143 : {
144 : ASSERT_EXCEPTION( ex );
145 : }
146 : }
147 : }
148 0 : }
149 0 : }
150 :
151 0 : void ItemConverter::FillSpecialItem(
152 : sal_uInt16 /*nWhichId*/, SfxItemSet & /*rOutItemSet*/ ) const
153 : throw (uno::Exception, std::exception)
154 : {
155 : OSL_FAIL( "ItemConverter: Unhandled special item found!" );
156 0 : }
157 :
158 0 : bool ItemConverter::ApplySpecialItem(
159 : sal_uInt16 /*nWhichId*/, const SfxItemSet & /*rItemSet*/ )
160 : throw( uno::Exception )
161 : {
162 : OSL_FAIL( "ItemConverter: Unhandled special item found!" );
163 0 : return false;
164 : }
165 :
166 0 : bool ItemConverter::ApplyItemSet( const SfxItemSet & rItemSet )
167 : {
168 : OSL_ASSERT( m_xPropertySet.is());
169 :
170 0 : bool bItemsChanged = false;
171 0 : SfxItemIter aIter( rItemSet );
172 0 : const SfxPoolItem * pItem = aIter.FirstItem();
173 0 : tPropertyNameWithMemberId aProperty;
174 0 : uno::Any aValue;
175 :
176 0 : while( pItem )
177 : {
178 0 : if( rItemSet.GetItemState( pItem->Which(), false ) == SfxItemState::SET )
179 : {
180 0 : if( GetItemProperty( pItem->Which(), aProperty ))
181 : {
182 0 : pItem->QueryValue( aValue, aProperty.second /* nMemberId */ );
183 :
184 : try
185 : {
186 0 : if( aValue != m_xPropertySet->getPropertyValue( aProperty.first ))
187 : {
188 0 : m_xPropertySet->setPropertyValue( aProperty.first, aValue );
189 0 : bItemsChanged = true;
190 : }
191 : }
192 0 : catch( const beans::UnknownPropertyException &ex )
193 : {
194 : (void)ex;
195 : OSL_FAIL(
196 : OUStringToOString(
197 : ex.Message +
198 : " - unknown Property: " + aProperty.first,
199 : RTL_TEXTENCODING_ASCII_US).getStr());
200 : }
201 0 : catch( const uno::Exception &ex )
202 : {
203 : (void)ex;
204 : OSL_FAIL( OUStringToOString(
205 : ex.Message, RTL_TEXTENCODING_ASCII_US ).getStr());
206 : }
207 : }
208 : else
209 : {
210 0 : bItemsChanged = ApplySpecialItem( pItem->Which(), rItemSet ) || bItemsChanged;
211 : }
212 : }
213 0 : pItem = aIter.NextItem();
214 : }
215 :
216 0 : return bItemsChanged;
217 : }
218 :
219 0 : void ItemConverter::InvalidateUnequalItems( SfxItemSet &rDestSet, const SfxItemSet &rSourceSet )
220 : {
221 0 : SfxWhichIter aIter (rSourceSet);
222 0 : sal_uInt16 nWhich = aIter.FirstWhich ();
223 0 : const SfxPoolItem *pPoolItem = NULL;
224 :
225 0 : while (nWhich)
226 : {
227 0 : if ((rSourceSet.GetItemState(nWhich, true, &pPoolItem) == SfxItemState::SET) &&
228 0 : (rDestSet.GetItemState(nWhich, true, &pPoolItem) == SfxItemState::SET))
229 : {
230 0 : if (rSourceSet.Get(nWhich) != rDestSet.Get(nWhich))
231 : {
232 0 : if( SID_CHAR_DLG_PREVIEW_STRING != nWhich )
233 : {
234 0 : rDestSet.InvalidateItem(nWhich);
235 : }
236 : }
237 : }
238 0 : else if( rSourceSet.GetItemState(nWhich, true, &pPoolItem) == SfxItemState::DONTCARE )
239 0 : rDestSet.InvalidateItem(nWhich);
240 :
241 0 : nWhich = aIter.NextWhich ();
242 0 : }
243 0 : }
244 :
245 : }}
246 :
247 : /* vim:set shiftwidth=4 softtabstop=4 expandtab: */
|