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 <algorithm>
21 :
22 : #include <com/sun/star/lang/DisposedException.hpp>
23 : #include <osl/mutex.hxx>
24 : #include <vcl/svapp.hxx>
25 : #include <svx/svdpage.hxx>
26 : #include <comphelper/extract.hxx>
27 : #include <cppuhelper/supportsservice.hxx>
28 :
29 : #include "createunocustomshow.hxx"
30 : #include "unohelp.hxx"
31 : #include "unomodel.hxx"
32 : #include "drawdoc.hxx"
33 : #include "unocpres.hxx"
34 : #include "cusshow.hxx"
35 : #include "unopage.hxx"
36 : #include "customshowlist.hxx"
37 :
38 : using namespace ::com::sun::star;
39 :
40 0 : uno::Reference< uno::XInterface > createUnoCustomShow( SdCustomShow* pShow )
41 : {
42 0 : return (cppu::OWeakObject*)new SdXCustomPresentation( pShow, NULL );
43 : }
44 :
45 6 : SdXCustomPresentation::SdXCustomPresentation() throw()
46 : : mpSdCustomShow(NULL), mpModel(NULL),
47 : aDisposeListeners( aDisposeContainerMutex ),
48 6 : bDisposing( false )
49 : {
50 6 : }
51 :
52 0 : SdXCustomPresentation::SdXCustomPresentation( SdCustomShow* pShow, SdXImpressDocument* pMyModel) throw()
53 : : mpSdCustomShow(pShow), mpModel(pMyModel),
54 : aDisposeListeners( aDisposeContainerMutex ),
55 0 : bDisposing( false )
56 : {
57 0 : }
58 :
59 12 : SdXCustomPresentation::~SdXCustomPresentation() throw()
60 : {
61 12 : }
62 :
63 24 : UNO3_GETIMPLEMENTATION_IMPL( SdXCustomPresentation );
64 :
65 : // XServiceInfo
66 0 : OUString SAL_CALL SdXCustomPresentation::getImplementationName()
67 : throw(uno::RuntimeException, std::exception)
68 : {
69 0 : return OUString( "SdXCustomPresentation" ) ;
70 : }
71 :
72 0 : sal_Bool SAL_CALL SdXCustomPresentation::supportsService( const OUString& ServiceName )
73 : throw(uno::RuntimeException, std::exception)
74 : {
75 0 : return cppu::supportsService( this, ServiceName );
76 : }
77 :
78 0 : uno::Sequence< OUString > SAL_CALL SdXCustomPresentation::getSupportedServiceNames()
79 : throw(uno::RuntimeException, std::exception)
80 : {
81 0 : OUString aSN( "com.sun.star.presentation.CustomPresentation" );
82 0 : uno::Sequence< OUString > aSeq( &aSN, 1 );
83 0 : return aSeq;
84 : }
85 :
86 : // XIndexContainer
87 10 : void SAL_CALL SdXCustomPresentation::insertByIndex( sal_Int32 Index, const uno::Any& Element )
88 : throw(lang::IllegalArgumentException, lang::IndexOutOfBoundsException, lang::WrappedTargetException, uno::RuntimeException, std::exception)
89 : {
90 10 : SolarMutexGuard aGuard;
91 :
92 10 : if( bDisposing )
93 0 : throw lang::DisposedException();
94 :
95 10 : if( Index < 0 || Index > (sal_Int32)( mpSdCustomShow ? mpSdCustomShow->PagesVector().size() : 0 ) )
96 0 : throw lang::IndexOutOfBoundsException();
97 :
98 20 : uno::Reference< drawing::XDrawPage > xPage;
99 10 : Element >>= xPage;
100 :
101 10 : if(!xPage.is())
102 4 : throw lang::IllegalArgumentException();
103 :
104 6 : SdDrawPage* pPage = SdDrawPage::getImplementation( xPage );
105 :
106 6 : if(pPage)
107 : {
108 6 : if( NULL == mpModel )
109 2 : mpModel = pPage->GetModel();
110 :
111 6 : if( NULL != mpModel && NULL == mpSdCustomShow && mpModel->GetDoc() )
112 0 : mpSdCustomShow = new SdCustomShow( mpModel->GetDoc() );
113 :
114 18 : mpSdCustomShow->PagesVector().insert(mpSdCustomShow->PagesVector().begin() + Index,
115 24 : (SdPage*) pPage->GetSdrPage());
116 : }
117 :
118 6 : if( mpModel )
119 16 : mpModel->SetModified();
120 6 : }
121 :
122 12 : void SAL_CALL SdXCustomPresentation::removeByIndex( sal_Int32 Index )
123 : throw(lang::IndexOutOfBoundsException, lang::WrappedTargetException, uno::RuntimeException, std::exception)
124 : {
125 12 : SolarMutexGuard aGuard;
126 :
127 12 : if( bDisposing )
128 0 : throw lang::DisposedException();
129 :
130 12 : if(mpSdCustomShow)
131 : {
132 12 : uno::Reference< drawing::XDrawPage > xPage;
133 12 : getByIndex( Index ) >>= xPage;
134 :
135 6 : if( xPage.is() )
136 : {
137 6 : SvxDrawPage* pPage = SvxDrawPage::getImplementation( xPage );
138 6 : if(pPage)
139 : {
140 : SdCustomShow::PageVec::iterator it = std::find(
141 6 : mpSdCustomShow->PagesVector().begin(),
142 6 : mpSdCustomShow->PagesVector().end(),
143 18 : pPage->GetSdrPage());
144 6 : if (it != mpSdCustomShow->PagesVector().end())
145 6 : mpSdCustomShow->PagesVector().erase(it);
146 : }
147 12 : }
148 : }
149 :
150 6 : if( mpModel )
151 12 : mpModel->SetModified();
152 6 : }
153 :
154 : // XIndexReplace
155 8 : void SAL_CALL SdXCustomPresentation::replaceByIndex( sal_Int32 Index, const uno::Any& Element )
156 : throw(lang::IllegalArgumentException, lang::IndexOutOfBoundsException, lang::WrappedTargetException, uno::RuntimeException, std::exception)
157 : {
158 8 : removeByIndex( Index );
159 4 : insertByIndex( Index, Element );
160 2 : }
161 :
162 : // XElementAccess
163 2 : uno::Type SAL_CALL SdXCustomPresentation::getElementType()
164 : throw(uno::RuntimeException, std::exception)
165 : {
166 2 : return cppu::UnoType<drawing::XDrawPage>::get();
167 : }
168 :
169 2 : sal_Bool SAL_CALL SdXCustomPresentation::hasElements()
170 : throw(uno::RuntimeException, std::exception)
171 : {
172 2 : SolarMutexGuard aGuard;
173 :
174 2 : if( bDisposing )
175 0 : throw lang::DisposedException();
176 :
177 2 : return getCount() > 0;
178 : }
179 :
180 : // XIndexAccess
181 8 : sal_Int32 SAL_CALL SdXCustomPresentation::getCount()
182 : throw(uno::RuntimeException, std::exception)
183 : {
184 8 : SolarMutexGuard aGuard;
185 8 : if( bDisposing )
186 0 : throw lang::DisposedException();
187 :
188 8 : return mpSdCustomShow ? mpSdCustomShow->PagesVector().size() : 0;
189 : }
190 :
191 26 : uno::Any SAL_CALL SdXCustomPresentation::getByIndex( sal_Int32 Index )
192 : throw(lang::IndexOutOfBoundsException, lang::WrappedTargetException, uno::RuntimeException, std::exception)
193 : {
194 26 : SolarMutexGuard aGuard;
195 :
196 26 : if( bDisposing )
197 0 : throw lang::DisposedException();
198 :
199 26 : if( Index < 0 || Index >= (sal_Int32)mpSdCustomShow->PagesVector().size() )
200 8 : throw lang::IndexOutOfBoundsException();
201 :
202 18 : uno::Any aAny;
203 18 : if(mpSdCustomShow )
204 : {
205 18 : SdrPage* pPage = (SdrPage*)mpSdCustomShow->PagesVector()[Index];
206 :
207 18 : if( pPage )
208 : {
209 18 : uno::Reference< drawing::XDrawPage > xRef( pPage->getUnoPage(), uno::UNO_QUERY );
210 18 : aAny <<= xRef;
211 : }
212 : }
213 :
214 26 : return aAny;
215 : }
216 :
217 : // XNamed
218 6 : OUString SAL_CALL SdXCustomPresentation::getName()
219 : throw(uno::RuntimeException, std::exception)
220 : {
221 6 : SolarMutexGuard aGuard;
222 :
223 6 : if( bDisposing )
224 0 : throw lang::DisposedException();
225 :
226 6 : if(mpSdCustomShow)
227 6 : return mpSdCustomShow->GetName();
228 :
229 0 : return OUString();
230 : }
231 :
232 4 : void SAL_CALL SdXCustomPresentation::setName( const OUString& aName )
233 : throw(uno::RuntimeException, std::exception)
234 : {
235 4 : SolarMutexGuard aGuard;
236 :
237 4 : if( bDisposing )
238 0 : throw lang::DisposedException();
239 :
240 4 : if(mpSdCustomShow)
241 4 : mpSdCustomShow->SetName( aName );
242 4 : }
243 :
244 : // XComponent
245 6 : void SAL_CALL SdXCustomPresentation::dispose() throw(uno::RuntimeException, std::exception)
246 : {
247 6 : SolarMutexGuard aGuard;
248 :
249 6 : if( bDisposing )
250 6 : return; // catched a recursion
251 :
252 6 : bDisposing = true;
253 :
254 12 : uno::Reference< uno::XInterface > xSource( (cppu::OWeakObject*)this );
255 :
256 12 : lang::EventObject aEvt;
257 6 : aEvt.Source = xSource;
258 6 : aDisposeListeners.disposeAndClear(aEvt);
259 :
260 12 : mpSdCustomShow = NULL;
261 : }
262 :
263 0 : void SAL_CALL SdXCustomPresentation::addEventListener( const uno::Reference< lang::XEventListener >& xListener )
264 : throw(uno::RuntimeException, std::exception)
265 : {
266 0 : if( bDisposing )
267 0 : throw lang::DisposedException();
268 :
269 0 : aDisposeListeners.addInterface(xListener);
270 0 : }
271 :
272 0 : void SAL_CALL SdXCustomPresentation::removeEventListener( const uno::Reference< lang::XEventListener >& aListener ) throw(uno::RuntimeException, std::exception)
273 : {
274 0 : if( !bDisposing )
275 0 : aDisposeListeners.removeInterface(aListener);
276 0 : }
277 :
278 : /*===========================================================================*
279 : * class SdXCustomPresentationAccess : public XCustomPresentationAccess, *
280 : * public UsrObject *
281 : *===========================================================================*/
282 :
283 42 : SdXCustomPresentationAccess::SdXCustomPresentationAccess(SdXImpressDocument& rMyModel) throw()
284 42 : : mrModel(rMyModel)
285 : {
286 42 : }
287 :
288 84 : SdXCustomPresentationAccess::~SdXCustomPresentationAccess() throw()
289 : {
290 84 : }
291 :
292 : // XServiceInfo
293 0 : OUString SAL_CALL SdXCustomPresentationAccess::getImplementationName()
294 : throw(uno::RuntimeException, std::exception)
295 : {
296 0 : return OUString( "SdXCustomPresentationAccess" );
297 : }
298 :
299 0 : sal_Bool SAL_CALL SdXCustomPresentationAccess::supportsService( const OUString& ServiceName )
300 : throw(uno::RuntimeException, std::exception)
301 : {
302 0 : return cppu::supportsService( this, ServiceName );
303 : }
304 :
305 0 : uno::Sequence< OUString > SAL_CALL SdXCustomPresentationAccess::getSupportedServiceNames()
306 : throw(uno::RuntimeException, std::exception)
307 : {
308 0 : const OUString aNS( "com.sun.star.presentation.CustomPresentationAccess" );
309 0 : uno::Sequence< OUString > aSeq( &aNS, 1 );
310 0 : return aSeq;
311 : }
312 :
313 : // XSingleServiceFactory
314 6 : uno::Reference< uno::XInterface > SAL_CALL SdXCustomPresentationAccess::createInstance()
315 : throw(uno::Exception, uno::RuntimeException, std::exception)
316 : {
317 6 : uno::Reference< uno::XInterface > xRef( (::cppu::OWeakObject*)new SdXCustomPresentation() );
318 6 : return xRef;
319 : }
320 :
321 0 : uno::Reference< uno::XInterface > SAL_CALL SdXCustomPresentationAccess::createInstanceWithArguments( const uno::Sequence< uno::Any >& )
322 : throw(uno::Exception, uno::RuntimeException, std::exception)
323 : {
324 0 : return createInstance();
325 : }
326 :
327 : // XNameContainer
328 6 : void SAL_CALL SdXCustomPresentationAccess::insertByName( const OUString& aName, const uno::Any& aElement )
329 : throw(lang::IllegalArgumentException, container::ElementExistException, lang::WrappedTargetException, uno::RuntimeException, std::exception)
330 : {
331 6 : SolarMutexGuard aGuard;
332 :
333 : // get the documents custom show list
334 6 : SdCustomShowList* pList = 0;
335 6 : if(mrModel.GetDoc())
336 6 : pList = mrModel.GetDoc()->GetCustomShowList(true);
337 :
338 : // no list, no cookies
339 6 : if( NULL == pList)
340 0 : throw uno::RuntimeException();
341 :
342 : // do we have an container::XIndexContainer?
343 6 : SdXCustomPresentation* pXShow = NULL;
344 :
345 12 : uno::Reference< container::XIndexContainer > xContainer;
346 6 : if( (aElement >>= xContainer) && xContainer.is() )
347 6 : pXShow = SdXCustomPresentation::getImplementation(xContainer);
348 :
349 6 : if( NULL == pXShow )
350 0 : throw lang::IllegalArgumentException();
351 :
352 : // get the internal custom show from the api wrapper
353 6 : SdCustomShow* pShow = pXShow->GetSdCustomShow();
354 6 : if( NULL == pShow )
355 : {
356 6 : pShow = new SdCustomShow( mrModel.GetDoc(), xContainer );
357 6 : pXShow->SetSdCustomShow( pShow );
358 : }
359 : else
360 : {
361 0 : if( NULL == pXShow->GetModel() || *pXShow->GetModel() != mrModel )
362 0 : throw lang::IllegalArgumentException();
363 : }
364 :
365 : // give it a name
366 6 : pShow->SetName( aName);
367 :
368 : // check if this or another customshow with the same name already exists
369 8 : for( SdCustomShow* pCompare = pList->First();
370 : pCompare;
371 : pCompare = pList->Next() )
372 : {
373 2 : if( pCompare == pShow || pCompare->GetName() == pShow->GetName() )
374 0 : throw container::ElementExistException();
375 : }
376 :
377 6 : pList->push_back(pShow);
378 :
379 12 : mrModel.SetModified();
380 6 : }
381 :
382 0 : void SAL_CALL SdXCustomPresentationAccess::removeByName( const OUString& Name )
383 : throw(container::NoSuchElementException, lang::WrappedTargetException, uno::RuntimeException, std::exception)
384 : {
385 0 : SolarMutexGuard aGuard;
386 :
387 0 : SdCustomShow* pShow = getSdCustomShow(Name);
388 :
389 0 : SdCustomShowList* pList = GetCustomShowList();
390 0 : if(pList && pShow)
391 0 : delete pList->Remove( pShow );
392 : else
393 0 : throw container::NoSuchElementException();
394 :
395 0 : mrModel.SetModified();
396 0 : }
397 :
398 : // XNameReplace
399 0 : void SAL_CALL SdXCustomPresentationAccess::replaceByName( const OUString& aName, const uno::Any& aElement )
400 : throw(lang::IllegalArgumentException, container::NoSuchElementException, lang::WrappedTargetException, uno::RuntimeException, std::exception)
401 : {
402 0 : removeByName( aName );
403 0 : insertByName( aName, aElement );
404 0 : }
405 :
406 : // XNameAccess
407 0 : uno::Any SAL_CALL SdXCustomPresentationAccess::getByName( const OUString& aName )
408 : throw(container::NoSuchElementException, lang::WrappedTargetException, uno::RuntimeException, std::exception)
409 : {
410 0 : SolarMutexGuard aGuard;
411 :
412 0 : uno::Any aAny;
413 :
414 0 : SdCustomShow* pShow = getSdCustomShow(aName);
415 0 : if(pShow)
416 : {
417 0 : uno::Reference< container::XIndexContainer > xRef( pShow->getUnoCustomShow(), uno::UNO_QUERY );
418 0 : aAny <<= xRef;
419 : }
420 : else
421 : {
422 0 : throw container::NoSuchElementException();
423 : }
424 :
425 0 : return aAny;
426 : }
427 :
428 6 : uno::Sequence< OUString > SAL_CALL SdXCustomPresentationAccess::getElementNames()
429 : throw(uno::RuntimeException, std::exception)
430 : {
431 6 : SolarMutexGuard aGuard;
432 :
433 6 : SdCustomShowList* pList = GetCustomShowList();
434 6 : const sal_uInt32 nCount = pList ? pList->size() : 0;
435 :
436 6 : uno::Sequence< OUString > aSequence( nCount );
437 6 : OUString* pStringList = aSequence.getArray();
438 :
439 6 : sal_uInt32 nIdx = 0;
440 12 : while( nIdx < nCount )
441 : {
442 0 : const SdCustomShow* pShow = (*pList)[nIdx];
443 0 : pStringList[nIdx] = pShow->GetName();
444 0 : nIdx++;
445 : }
446 :
447 6 : return aSequence;
448 : }
449 :
450 0 : sal_Bool SAL_CALL SdXCustomPresentationAccess::hasByName( const OUString& aName )
451 : throw(uno::RuntimeException, std::exception)
452 : {
453 0 : SolarMutexGuard aGuard;
454 0 : return getSdCustomShow(aName) != NULL;
455 : }
456 :
457 : // XElementAccess
458 0 : uno::Type SAL_CALL SdXCustomPresentationAccess::getElementType()
459 : throw(uno::RuntimeException, std::exception)
460 : {
461 0 : return cppu::UnoType<container::XIndexContainer>::get();
462 : }
463 :
464 0 : sal_Bool SAL_CALL SdXCustomPresentationAccess::hasElements()
465 : throw(uno::RuntimeException, std::exception)
466 : {
467 0 : SolarMutexGuard aGuard;
468 :
469 0 : SdCustomShowList* pList = GetCustomShowList();
470 0 : return pList && !pList->empty();
471 : }
472 :
473 0 : SdCustomShow * SdXCustomPresentationAccess::getSdCustomShow( const OUString& Name ) const throw()
474 : {
475 0 : sal_uInt32 nIdx = 0;
476 :
477 0 : SdCustomShowList* pList = GetCustomShowList();
478 0 : const sal_uInt32 nCount = pList ? pList->size() : 0;
479 :
480 0 : const OUString aName( Name );
481 :
482 0 : while( nIdx < nCount )
483 : {
484 0 : SdCustomShow* pShow = (*pList)[nIdx];
485 0 : if( pShow->GetName() == aName )
486 0 : return pShow;
487 0 : nIdx++;
488 : }
489 0 : return NULL;
490 114 : }
491 :
492 : /* vim:set shiftwidth=4 softtabstop=4 expandtab: */
|