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 <com/sun/star/presentation/EffectPresetClass.hpp>
21 : #include <com/sun/star/animations/XAnimationNodeSupplier.hpp>
22 : #include <com/sun/star/animations/ParallelTimeContainer.hpp>
23 : #include <com/sun/star/view/XSelectionSupplier.hpp>
24 : #include <com/sun/star/drawing/XDrawView.hpp>
25 : #include <com/sun/star/drawing/XShape.hpp>
26 : #include <com/sun/star/beans/XPropertySet.hpp>
27 : #include <com/sun/star/presentation/EffectNodeType.hpp>
28 : #include <com/sun/star/presentation/EffectCommands.hpp>
29 : #include <com/sun/star/animations/AnimationTransformType.hpp>
30 : #include <com/sun/star/text/XTextRangeCompare.hpp>
31 : #include <com/sun/star/container/XEnumerationAccess.hpp>
32 : #include <com/sun/star/container/XIndexAccess.hpp>
33 : #include <com/sun/star/presentation/ParagraphTarget.hpp>
34 : #include <com/sun/star/text/XText.hpp>
35 : #include <com/sun/star/awt/XWindow.hpp>
36 : #include <com/sun/star/drawing/LineStyle.hpp>
37 : #include <com/sun/star/drawing/FillStyle.hpp>
38 : #include <comphelper/processfactory.hxx>
39 : #include <sfx2/dispatch.hxx>
40 : #include "STLPropertySet.hxx"
41 : #include "CustomAnimationPane.hxx"
42 : #include "CustomAnimationDialog.hxx"
43 : #include "CustomAnimationCreateDialog.hxx"
44 : #include "CustomAnimation.hrc"
45 : #include "CustomAnimationList.hxx"
46 : #include "createcustomanimationpanel.hxx"
47 : #include <vcl/lstbox.hxx>
48 : #include <vcl/fixed.hxx>
49 :
50 : #include <vcl/button.hxx>
51 : #include <vcl/combobox.hxx>
52 : #include <vcl/scrbar.hxx>
53 :
54 : #include <comphelper/sequence.hxx>
55 : #include <sfx2/frame.hxx>
56 : #include <sfx2/sidebar/Theme.hxx>
57 :
58 : #include <svx/unoapi.hxx>
59 : #include <svx/svxids.hrc>
60 : #include <DrawDocShell.hxx>
61 : #include <ViewShellBase.hxx>
62 : #include "DrawViewShell.hxx"
63 : #include "DrawController.hxx"
64 : #include "sdresid.hxx"
65 : #include "drawview.hxx"
66 : #include "slideshow.hxx"
67 : #include "undoanim.hxx"
68 : #include "optsitem.hxx"
69 : #include "sddll.hxx"
70 : #include "framework/FrameworkHelper.hxx"
71 :
72 : #include "EventMultiplexer.hxx"
73 :
74 : #include "glob.hrc"
75 : #include "sdpage.hxx"
76 : #include "drawdoc.hxx"
77 : #include "app.hrc"
78 :
79 : #include <algorithm>
80 :
81 : #include <basegfx/polygon/b2dpolypolygontools.hxx>
82 : #include <basegfx/matrix/b2dhommatrix.hxx>
83 : #include <basegfx/range/b2drange.hxx>
84 : #include <boost/scoped_ptr.hpp>
85 :
86 : using namespace ::com::sun::star;
87 : using namespace ::com::sun::star::animations;
88 : using namespace ::com::sun::star::presentation;
89 : using namespace ::com::sun::star::text;
90 :
91 : using namespace ::com::sun::star::uno;
92 : using namespace ::com::sun::star::drawing;
93 : using ::com::sun::star::view::XSelectionSupplier;
94 : using ::com::sun::star::view::XSelectionChangeListener;
95 : using ::com::sun::star::frame::XController;
96 : using ::com::sun::star::frame::XModel;
97 : using ::com::sun::star::beans::XPropertySet;
98 : using ::com::sun::star::beans::XPropertyChangeListener;
99 : using ::com::sun::star::container::XIndexAccess;
100 : using ::com::sun::star::container::XEnumerationAccess;
101 : using ::com::sun::star::container::XEnumeration;
102 : using ::com::sun::star::text::XText;
103 : using ::sd::framework::FrameworkHelper;
104 :
105 : namespace sd {
106 :
107 0 : void fillDurationComboBox( ListBox* pBox )
108 : {
109 : static const double gdVerySlow = 5.0;
110 : static const double gdSlow = 3.0;
111 : static const double gdNormal = 2.0;
112 : static const double gdFast = 1.0;
113 : static const double gdVeryFast = 0.5;
114 :
115 0 : OUString aVerySlow( SD_RESSTR( STR_CUSTOMANIMATION_DURATION_VERY_SLOW ) );
116 0 : pBox->SetEntryData( pBox->InsertEntry( aVerySlow ), (void*)&gdVerySlow );
117 :
118 0 : OUString aSlow( SD_RESSTR( STR_CUSTOMANIMATION_DURATION_SLOW ) );
119 0 : pBox->SetEntryData( pBox->InsertEntry( aSlow ), (void*)&gdSlow );
120 :
121 0 : OUString aNormal( SD_RESSTR( STR_CUSTOMANIMATION_DURATION_NORMAL ) );
122 0 : pBox->SetEntryData( pBox->InsertEntry( aNormal ), (void*)&gdNormal );
123 :
124 0 : OUString aFast( SD_RESSTR( STR_CUSTOMANIMATION_DURATION_FAST ) );
125 0 : pBox->SetEntryData( pBox->InsertEntry( aFast ), (void*)&gdFast );
126 :
127 0 : OUString aVeryFast( SD_RESSTR( STR_CUSTOMANIMATION_DURATION_VERY_FAST ) );
128 0 : pBox->SetEntryData( pBox->InsertEntry( aVeryFast ), (void*)&gdVeryFast );
129 0 : }
130 :
131 0 : void fillRepeatComboBox( ListBox* pBox )
132 : {
133 0 : OUString aNone( SD_RESSTR( STR_CUSTOMANIMATION_REPEAT_NONE ) );
134 0 : pBox->SetEntryData( pBox->InsertEntry( aNone ), (void*)((sal_Int32)0) );
135 :
136 0 : pBox->SetEntryData( pBox->InsertEntry( OUString::number( 2 ) ), (void*)((sal_Int32)1) );
137 0 : pBox->SetEntryData( pBox->InsertEntry( OUString::number( 3 ) ), (void*)((sal_Int32)3) );
138 0 : pBox->SetEntryData( pBox->InsertEntry( OUString::number( 4 ) ), (void*)((sal_Int32)4) );
139 0 : pBox->SetEntryData( pBox->InsertEntry( OUString::number( 5 ) ), (void*)((sal_Int32)5) );
140 0 : pBox->SetEntryData( pBox->InsertEntry( OUString::number( 10 ) ), (void*)((sal_Int32)10) );
141 :
142 0 : OUString aUntilClick( SD_RESSTR( STR_CUSTOMANIMATION_REPEAT_UNTIL_NEXT_CLICK ) );
143 0 : pBox->SetEntryData( pBox->InsertEntry( aUntilClick ), (void*)((sal_Int32)-1) );
144 :
145 0 : OUString aEndOfSlide( SD_RESSTR( STR_CUSTOMANIMATION_REPEAT_UNTIL_END_OF_SLIDE ) );
146 0 : pBox->SetEntryData( pBox->InsertEntry( aEndOfSlide ), (void*)((sal_Int32)-2) );
147 0 : }
148 :
149 0 : CustomAnimationPane::CustomAnimationPane( Window* pParent, ViewShellBase& rBase,
150 : const css::uno::Reference<css::frame::XFrame>& rxFrame,
151 : const Size& rMinSize )
152 : : PanelLayout( pParent, "CustomAnimationsPanel", "modules/simpress/ui/customanimationspanel.ui", rxFrame ),
153 : mrBase( rBase ),
154 : mpCustomAnimationPresets(NULL),
155 : mnPropertyType( nPropertyTypeNone ),
156 : maMinSize( rMinSize ),
157 0 : mxModel( rBase.GetDocShell()->GetDoc()->getUnoModel(), UNO_QUERY ),
158 0 : maLateInitTimer()
159 : {
160 : // load resources
161 0 : get(mpPBAddEffect, "add_effect");
162 0 : get(mpPBChangeEffect, "change_effect");
163 0 : get(mpPBRemoveEffect, "remove_effect");
164 :
165 0 : get(mpFTEffect, "effect_label");
166 :
167 0 : get(mpFTStart, "start_effect");
168 0 : get(mpLBStart, "start_effect_list");
169 0 : get(mpFTProperty, "effect_property");
170 0 : get(mpPlaceholderBox, "placeholder");
171 0 : get(mpLBProperty, "effect_property_list");
172 0 : get(mpPBPropertyMore, "more_properties");
173 :
174 0 : get(mpFTSpeed, "effect_speed");
175 0 : get(mpCBSpeed, "effect_speed_list");
176 :
177 0 : get(mpCustomAnimationList, "custom_animation_list");
178 0 : mpCustomAnimationList->setController( dynamic_cast<ICustomAnimationListController*> ( this ) );
179 0 : mpCustomAnimationList->set_width_request(mpCustomAnimationList->approximate_char_width() * 16);
180 0 : mpCustomAnimationList->set_height_request(mpCustomAnimationList->GetTextHeight() * 16);
181 :
182 0 : get(mpPBMoveUp, "move_up");
183 0 : get(mpPBMoveDown, "move_down");
184 0 : get(mpPBPlay, "play");
185 0 : get(mpCBAutoPreview,"auto_preview");
186 :
187 0 : maStrProperty = mpFTProperty->GetText();
188 :
189 0 : fillDurationComboBox( mpCBSpeed );
190 :
191 0 : mpPBAddEffect->SetClickHdl( LINK( this, CustomAnimationPane, implControlHdl ) );
192 0 : mpPBChangeEffect->SetClickHdl( LINK( this, CustomAnimationPane, implControlHdl ) );
193 0 : mpPBRemoveEffect->SetClickHdl( LINK( this, CustomAnimationPane, implControlHdl ) );
194 0 : mpLBStart->SetSelectHdl( LINK( this, CustomAnimationPane, implControlHdl ) );
195 0 : mpCBSpeed->SetSelectHdl( LINK( this, CustomAnimationPane, implControlHdl ) );
196 0 : mpPBPropertyMore->SetClickHdl( LINK( this, CustomAnimationPane, implControlHdl ) );
197 0 : mpPBMoveUp->SetClickHdl( LINK( this, CustomAnimationPane, implControlHdl ) );
198 0 : mpPBMoveDown->SetClickHdl( LINK( this, CustomAnimationPane, implControlHdl ) );
199 0 : mpPBPlay->SetClickHdl( LINK( this, CustomAnimationPane, implControlHdl ) );
200 0 : mpCBAutoPreview->SetClickHdl( LINK( this, CustomAnimationPane, implControlHdl ) );
201 :
202 0 : maStrModify = mpFTEffect->GetText();
203 :
204 : // get current controller and initialize listeners
205 : try
206 : {
207 0 : mxView = Reference< XDrawView >::query(mrBase.GetController());
208 0 : addListener();
209 : }
210 0 : catch( Exception& )
211 : {
212 : OSL_FAIL( "sd::CustomAnimationPane::CustomAnimationPane(), Exception caught!" );
213 : }
214 :
215 : // get current page and update custom animation list
216 0 : onChangeCurrentPage();
217 :
218 : // Wait a short time before the presets list is created. This gives the
219 : // system time to paint the control.
220 0 : maLateInitTimer.SetTimeout(100);
221 0 : maLateInitTimer.SetTimeoutHdl(LINK(this, CustomAnimationPane, lateInitCallback));
222 0 : maLateInitTimer.Start();
223 :
224 0 : UpdateLook();
225 0 : }
226 :
227 0 : CustomAnimationPane::~CustomAnimationPane()
228 : {
229 0 : maLateInitTimer.Stop();
230 :
231 0 : removeListener();
232 :
233 0 : MotionPathTagVector aTags;
234 0 : aTags.swap( maMotionPathTags );
235 0 : MotionPathTagVector::iterator aIter;
236 0 : for( aIter = aTags.begin(); aIter != aTags.end(); ++aIter )
237 0 : (*aIter)->Dispose();
238 :
239 0 : }
240 :
241 0 : void CustomAnimationPane::addUndo()
242 : {
243 0 : ::svl::IUndoManager* pManager = mrBase.GetDocShell()->GetUndoManager();
244 0 : if( pManager )
245 : {
246 0 : SdPage* pPage = SdPage::getImplementation( mxCurrentPage );
247 0 : if( pPage )
248 0 : pManager->AddUndoAction( new UndoAnimation( mrBase.GetDocShell()->GetDoc(), pPage ) );
249 : }
250 0 : }
251 :
252 0 : void CustomAnimationPane::StateChanged( StateChangedType nStateChange )
253 : {
254 0 : Control::StateChanged( nStateChange );
255 :
256 0 : if( nStateChange == StateChangedType::VISIBLE )
257 0 : updateMotionPathTags();
258 0 : }
259 :
260 0 : void CustomAnimationPane::KeyInput( const KeyEvent& rKEvt )
261 : {
262 0 : if( mpCustomAnimationList )
263 0 : mpCustomAnimationList->KeyInput( rKEvt );
264 0 : }
265 :
266 0 : void CustomAnimationPane::addListener()
267 : {
268 0 : Link aLink( LINK(this,CustomAnimationPane,EventMultiplexerListener) );
269 : mrBase.GetEventMultiplexer()->AddEventListener (
270 : aLink,
271 : tools::EventMultiplexerEvent::EID_EDIT_VIEW_SELECTION
272 : | tools::EventMultiplexerEvent::EID_CURRENT_PAGE
273 : | tools::EventMultiplexerEvent::EID_MAIN_VIEW_REMOVED
274 : | tools::EventMultiplexerEvent::EID_MAIN_VIEW_ADDED
275 : | tools::EventMultiplexerEvent::EID_DISPOSING
276 0 : | tools::EventMultiplexerEvent::EID_END_TEXT_EDIT);
277 0 : }
278 :
279 0 : void CustomAnimationPane::removeListener()
280 : {
281 0 : Link aLink( LINK(this,CustomAnimationPane,EventMultiplexerListener) );
282 0 : mrBase.GetEventMultiplexer()->RemoveEventListener( aLink );
283 0 : }
284 :
285 0 : IMPL_LINK(CustomAnimationPane,EventMultiplexerListener,
286 : tools::EventMultiplexerEvent*,pEvent)
287 : {
288 0 : switch (pEvent->meEventId)
289 : {
290 : case tools::EventMultiplexerEvent::EID_EDIT_VIEW_SELECTION:
291 0 : onSelectionChanged();
292 0 : break;
293 :
294 : case tools::EventMultiplexerEvent::EID_CURRENT_PAGE:
295 0 : onChangeCurrentPage();
296 0 : break;
297 :
298 : case tools::EventMultiplexerEvent::EID_MAIN_VIEW_ADDED:
299 : // At this moment the controller may not yet been set at model
300 : // or ViewShellBase. Take it from the view shell passed with
301 : // the event.
302 0 : if (mrBase.GetMainViewShell() != 0)
303 : {
304 0 : if( mrBase.GetMainViewShell()->GetShellType() == ViewShell::ST_IMPRESS )
305 : {
306 0 : mxView = Reference<XDrawView>::query(mrBase.GetDrawController());
307 0 : onSelectionChanged();
308 0 : onChangeCurrentPage();
309 0 : break;
310 : }
311 : }
312 : // fall through intended
313 : case tools::EventMultiplexerEvent::EID_MAIN_VIEW_REMOVED:
314 0 : mxView = 0;
315 0 : mxCurrentPage = 0;
316 0 : updateControls();
317 0 : break;
318 :
319 : case tools::EventMultiplexerEvent::EID_DISPOSING:
320 0 : mxView.clear();
321 0 : onSelectionChanged();
322 0 : onChangeCurrentPage();
323 0 : break;
324 : case tools::EventMultiplexerEvent::EID_END_TEXT_EDIT:
325 0 : if( mpMainSequence.get() && pEvent->mpUserData )
326 0 : mpCustomAnimationList->update( mpMainSequence );
327 0 : break;
328 : }
329 0 : return 0;
330 : }
331 :
332 0 : static sal_Int32 getPropertyType( const OUString& rProperty )
333 : {
334 0 : if ( rProperty == "Direction" )
335 0 : return nPropertyTypeDirection;
336 :
337 0 : if ( rProperty == "Spokes" )
338 0 : return nPropertyTypeSpokes;
339 :
340 0 : if ( rProperty == "Zoom" )
341 0 : return nPropertyTypeZoom;
342 :
343 0 : if ( rProperty == "Accelerate" )
344 0 : return nPropertyTypeAccelerate;
345 :
346 0 : if ( rProperty == "Decelerate" )
347 0 : return nPropertyTypeDecelerate;
348 :
349 0 : if ( rProperty == "Color1" )
350 0 : return nPropertyTypeFirstColor;
351 :
352 0 : if ( rProperty == "Color2" )
353 0 : return nPropertyTypeSecondColor;
354 :
355 0 : if ( rProperty == "FillColor" )
356 0 : return nPropertyTypeFillColor;
357 :
358 0 : if ( rProperty == "ColorStyle" )
359 0 : return nPropertyTypeColorStyle;
360 :
361 0 : if ( rProperty == "AutoReverse" )
362 0 : return nPropertyTypeAutoReverse;
363 :
364 0 : if ( rProperty == "FontStyle" )
365 0 : return nPropertyTypeFont;
366 :
367 0 : if ( rProperty == "CharColor" )
368 0 : return nPropertyTypeCharColor;
369 :
370 0 : if ( rProperty == "CharHeight" )
371 0 : return nPropertyTypeCharHeight;
372 :
373 0 : if ( rProperty == "CharDecoration" )
374 0 : return nPropertyTypeCharDecoration;
375 :
376 0 : if ( rProperty == "LineColor" )
377 0 : return nPropertyTypeLineColor;
378 :
379 0 : if ( rProperty == "Rotate" )
380 0 : return nPropertyTypeRotate;
381 :
382 0 : if ( rProperty == "Transparency" )
383 0 : return nPropertyTypeTransparency;
384 :
385 0 : if ( rProperty == "Color" )
386 0 : return nPropertyTypeColor;
387 :
388 0 : if ( rProperty == "Scale" )
389 0 : return nPropertyTypeScale;
390 :
391 0 : return nPropertyTypeNone;
392 : }
393 :
394 0 : OUString getPropertyName( sal_Int32 nPropertyType )
395 : {
396 0 : switch( nPropertyType )
397 : {
398 : case nPropertyTypeDirection:
399 0 : return SD_RESSTR(STR_CUSTOMANIMATION_DIRECTION_PROPERTY);
400 :
401 : case nPropertyTypeSpokes:
402 0 : return SD_RESSTR(STR_CUSTOMANIMATION_SPOKES_PROPERTY);
403 :
404 : case nPropertyTypeFirstColor:
405 0 : return SD_RESSTR(STR_CUSTOMANIMATION_FIRST_COLOR_PROPERTY);
406 :
407 : case nPropertyTypeSecondColor:
408 0 : return SD_RESSTR(STR_CUSTOMANIMATION_SECOND_COLOR_PROPERTY);
409 :
410 : case nPropertyTypeZoom:
411 0 : return SD_RESSTR(STR_CUSTOMANIMATION_ZOOM_PROPERTY);
412 :
413 : case nPropertyTypeFillColor:
414 0 : return SD_RESSTR(STR_CUSTOMANIMATION_FILL_COLOR_PROPERTY);
415 :
416 : case nPropertyTypeColorStyle:
417 0 : return SD_RESSTR(STR_CUSTOMANIMATION_STYLE_PROPERTY);
418 :
419 : case nPropertyTypeFont:
420 0 : return SD_RESSTR(STR_CUSTOMANIMATION_FONT_PROPERTY);
421 :
422 : case nPropertyTypeCharHeight:
423 0 : return SD_RESSTR(STR_CUSTOMANIMATION_SIZE_PROPERTY);
424 :
425 : case nPropertyTypeCharColor:
426 0 : return SD_RESSTR(STR_CUSTOMANIMATION_FONT_COLOR_PROPERTY);
427 :
428 : case nPropertyTypeCharHeightStyle:
429 0 : return SD_RESSTR(STR_CUSTOMANIMATION_FONT_SIZE_STYLE_PROPERTY);
430 :
431 : case nPropertyTypeCharDecoration:
432 0 : return SD_RESSTR(STR_CUSTOMANIMATION_FONT_STYLE_PROPERTY);
433 :
434 : case nPropertyTypeLineColor:
435 0 : return SD_RESSTR(STR_CUSTOMANIMATION_LINE_COLOR_PROPERTY);
436 :
437 : case nPropertyTypeRotate:
438 0 : return SD_RESSTR(STR_CUSTOMANIMATION_AMOUNT_PROPERTY);
439 :
440 : case nPropertyTypeColor:
441 0 : return SD_RESSTR(STR_CUSTOMANIMATION_COLOR_PROPERTY);
442 :
443 : case nPropertyTypeTransparency:
444 0 : return SD_RESSTR(STR_CUSTOMANIMATION_AMOUNT_PROPERTY);
445 :
446 : case nPropertyTypeScale:
447 0 : return SD_RESSTR(STR_CUSTOMANIMATION_SCALE_PROPERTY);
448 : }
449 :
450 0 : return OUString();
451 : }
452 :
453 0 : void CustomAnimationPane::updateControls()
454 : {
455 0 : mpFTSpeed->Enable( mxView.is() );
456 0 : mpCBSpeed->Enable( mxView.is() );
457 0 : mpCustomAnimationList->Enable( mxView.is() );
458 0 : mpPBMoveUp->Enable( mxView.is() );
459 0 : mpPBMoveDown->Enable( mxView.is() );
460 0 : mpPBPlay->Enable( mxView.is() );
461 0 : mpCBAutoPreview->Enable( mxView.is() );
462 :
463 0 : if( !mxView.is() )
464 : {
465 0 : mpPBAddEffect->Enable( false );
466 0 : mpPBChangeEffect->Enable( false );
467 0 : mpPBRemoveEffect->Enable( false );
468 0 : mpFTStart->Enable( false );
469 0 : mpLBStart->Enable( false );
470 0 : mpPBPropertyMore->Enable( false );
471 0 : mpLBProperty->Enable( false );
472 0 : mpFTProperty->Enable( false );
473 0 : mpCustomAnimationList->clear();
474 0 : return;
475 : }
476 :
477 0 : const int nSelectionCount = maListSelection.size();
478 :
479 0 : mpPBAddEffect->Enable( maViewSelection.hasValue() );
480 0 : mpPBChangeEffect->Enable( nSelectionCount);
481 0 : mpPBRemoveEffect->Enable(nSelectionCount);
482 :
483 0 : mpFTStart->Enable(nSelectionCount > 0);
484 0 : mpLBStart->Enable(nSelectionCount > 0);
485 0 : mpPBPropertyMore->Enable(nSelectionCount > 0);
486 :
487 0 : mpFTProperty->SetText( maStrProperty );
488 :
489 0 : mnPropertyType = nPropertyTypeNone;
490 :
491 0 : if( nSelectionCount == 1 )
492 : {
493 0 : CustomAnimationEffectPtr pEffect = maListSelection.front();
494 :
495 0 : OUString aUIName( getPresets().getUINameForPresetId( pEffect->getPresetId() ) );
496 :
497 0 : OUString aTemp( maStrModify );
498 :
499 0 : if( !aUIName.isEmpty() )
500 : {
501 0 : aTemp += OUString( (sal_Unicode)' ' );
502 0 : aTemp += aUIName;
503 0 : mpFTEffect->SetText( aTemp );
504 : }
505 :
506 0 : CustomAnimationPresetPtr pDescriptor = getPresets().getEffectDescriptor( pEffect->getPresetId() );
507 0 : if( pDescriptor.get() )
508 : {
509 0 : PropertySubControl* pSubControl = NULL;
510 :
511 0 : Any aValue;
512 :
513 0 : UStringList aProperties( pDescriptor->getProperties() );
514 0 : if( aProperties.size() >= 1 )
515 : {
516 0 : mnPropertyType = getPropertyType( aProperties.front() );
517 :
518 0 : mpFTProperty->SetText( getPropertyName( mnPropertyType ) );
519 :
520 0 : aValue = getProperty1Value( mnPropertyType, pEffect );
521 : }
522 :
523 0 : if( aValue.hasValue() )
524 : {
525 0 : pSubControl = mpLBProperty->getSubControl();
526 0 : if( !pSubControl || (pSubControl->getControlType() != mnPropertyType) )
527 : {
528 0 : pSubControl = PropertySubControl::create( mnPropertyType, mpPlaceholderBox, aValue, pEffect->getPresetId(), LINK( this, CustomAnimationPane, implPropertyHdl ) );
529 0 : mpLBProperty->setSubControl( pSubControl );
530 : }
531 : else
532 : {
533 0 : pSubControl->setValue( aValue, pEffect->getPresetId() );
534 : }
535 : }
536 : else
537 : {
538 0 : mpLBProperty->setSubControl( 0 );
539 : }
540 :
541 0 : bool bEnable = (pSubControl != 0) && (pSubControl->getControl()->IsEnabled());
542 0 : mpLBProperty->Enable( bEnable );
543 0 : mpFTProperty->Enable( bEnable );
544 : }
545 : else
546 : {
547 0 : mpLBProperty->setSubControl( 0 );
548 0 : mpFTProperty->Enable( false );
549 0 : mpLBProperty->Enable( false );
550 0 : mpPBPropertyMore->Enable( false );
551 : }
552 :
553 0 : sal_uInt16 nPos = 0xffff;
554 :
555 0 : sal_Int16 nNodeType = pEffect->getNodeType();
556 0 : switch( nNodeType )
557 : {
558 0 : case EffectNodeType::ON_CLICK: nPos = 0; break;
559 0 : case EffectNodeType::WITH_PREVIOUS: nPos = 1; break;
560 0 : case EffectNodeType::AFTER_PREVIOUS: nPos = 2; break;
561 : }
562 :
563 0 : mpLBStart->SelectEntryPos( nPos );
564 :
565 0 : double fDuration = pEffect->getDuration();
566 0 : const bool bHasSpeed = fDuration > 0.001;
567 :
568 0 : mpFTSpeed->Enable(bHasSpeed);
569 0 : mpCBSpeed->Enable(bHasSpeed);
570 :
571 0 : if( bHasSpeed )
572 : {
573 0 : if( fDuration == 5.0 )
574 0 : nPos = 0;
575 0 : else if( fDuration == 3.0 )
576 0 : nPos = 1;
577 0 : else if( fDuration == 2.0 )
578 0 : nPos = 2;
579 0 : else if( fDuration == 1.0 )
580 0 : nPos = 3;
581 0 : else if( fDuration == 0.5 )
582 0 : nPos = 4;
583 : else
584 0 : nPos = 0xffff;
585 :
586 0 : mpCBSpeed->SelectEntryPos( nPos );
587 : }
588 :
589 0 : mpPBPropertyMore->Enable( true );
590 : }
591 : else
592 : {
593 0 : mpLBProperty->setSubControl( 0 );
594 0 : mpFTProperty->Enable( false );
595 0 : mpLBProperty->Enable( false );
596 0 : mpPBPropertyMore->Enable( false );
597 0 : mpFTSpeed->Enable(false);
598 0 : mpCBSpeed->Enable(false);
599 0 : mpLBStart->SetNoSelection();
600 0 : mpCBSpeed->SetNoSelection();
601 0 : mpFTEffect->SetText( maStrModify );
602 : }
603 :
604 0 : bool bEnableUp = true;
605 0 : bool bEnableDown = true;
606 0 : if( nSelectionCount == 0 )
607 : {
608 0 : bEnableUp = false;
609 0 : bEnableDown = false;
610 : }
611 : else
612 : {
613 0 : if( mpMainSequence->find( maListSelection.front() ) == mpMainSequence->getBegin() )
614 0 : bEnableUp = false;
615 :
616 0 : EffectSequence::iterator aIter( mpMainSequence->find( maListSelection.back() ) );
617 0 : if( aIter == mpMainSequence->getEnd() )
618 : {
619 0 : bEnableDown = false;
620 : }
621 : else
622 : {
623 0 : do
624 : {
625 0 : ++aIter;
626 : }
627 0 : while( (aIter != mpMainSequence->getEnd()) && !(mpCustomAnimationList->isExpanded((*aIter)) ) );
628 :
629 0 : if( aIter == mpMainSequence->getEnd() )
630 0 : bEnableDown = false;
631 : }
632 :
633 0 : if( bEnableUp || bEnableDown )
634 : {
635 0 : MainSequenceRebuildGuard aGuard( mpMainSequence );
636 :
637 0 : EffectSequenceHelper* pSequence = 0;
638 0 : EffectSequence::iterator aRebuildIter( maListSelection.begin() );
639 0 : const EffectSequence::iterator aRebuildEnd( maListSelection.end() );
640 0 : while( aRebuildIter != aRebuildEnd )
641 : {
642 0 : CustomAnimationEffectPtr pEffect = (*aRebuildIter++);
643 :
644 0 : if( pEffect.get() )
645 : {
646 0 : if( pSequence == 0 )
647 : {
648 0 : pSequence = pEffect->getEffectSequence();
649 : }
650 : else
651 : {
652 0 : if( pSequence != pEffect->getEffectSequence() )
653 : {
654 0 : bEnableUp = false;
655 0 : bEnableDown = false;
656 0 : break;
657 : }
658 : }
659 : }
660 0 : }
661 : }
662 : }
663 :
664 0 : mpPBMoveUp->Enable(bEnableUp);
665 0 : mpPBMoveDown->Enable(bEnableDown);
666 :
667 0 : SdOptions* pOptions = SD_MOD()->GetSdOptions(DOCUMENT_TYPE_IMPRESS);
668 0 : mpCBAutoPreview->Check( pOptions->IsPreviewChangedEffects() );
669 :
670 0 : updateMotionPathTags();
671 : }
672 :
673 0 : static bool updateMotionPathImpl( CustomAnimationPane& rPane, ::sd::View& rView, EffectSequence::iterator aIter, EffectSequence::iterator aEnd, MotionPathTagVector& rOldTags, MotionPathTagVector& rNewTags )
674 : {
675 0 : bool bChanges = false;
676 0 : while( aIter != aEnd )
677 : {
678 0 : CustomAnimationEffectPtr pEffect( (*aIter++) );
679 0 : if( pEffect.get() && pEffect->getPresetClass() == ::com::sun::star::presentation::EffectPresetClass::MOTIONPATH )
680 : {
681 0 : rtl::Reference< MotionPathTag > xMotionPathTag;
682 : // first try to find if there is already a tag for this
683 0 : MotionPathTagVector::iterator aMIter( rOldTags.begin() );
684 0 : for( ; aMIter != rOldTags.end(); ++aMIter )
685 : {
686 0 : rtl::Reference< MotionPathTag > xTag( (*aMIter) );
687 0 : if( xTag->getEffect() == pEffect )
688 : {
689 0 : if( !xTag->isDisposed() )
690 : {
691 0 : xMotionPathTag = xTag;
692 0 : rOldTags.erase( aMIter );
693 : }
694 0 : break;
695 : }
696 0 : }
697 :
698 : // if not found, create new one
699 0 : if( !xMotionPathTag.is() )
700 : {
701 0 : xMotionPathTag.set( new MotionPathTag( rPane, rView, pEffect ) );
702 0 : bChanges = true;
703 : }
704 :
705 0 : if( xMotionPathTag.is() )
706 0 : rNewTags.push_back( xMotionPathTag );
707 : }
708 0 : }
709 :
710 0 : return bChanges;
711 : }
712 :
713 0 : void CustomAnimationPane::updateMotionPathTags()
714 : {
715 0 : bool bChanges = false;
716 :
717 0 : MotionPathTagVector aTags;
718 0 : aTags.swap( maMotionPathTags );
719 :
720 0 : ::sd::View* pView = 0;
721 :
722 0 : if( mxView.is() )
723 : {
724 0 : ::boost::shared_ptr<ViewShell> xViewShell( mrBase.GetMainViewShell() );
725 0 : if( xViewShell.get() )
726 0 : pView = xViewShell->GetView();
727 : }
728 :
729 0 : if( IsVisible() && mpMainSequence.get() && pView )
730 : {
731 0 : bChanges = updateMotionPathImpl( *this, *pView, mpMainSequence->getBegin(), mpMainSequence->getEnd(), aTags, maMotionPathTags );
732 :
733 0 : const InteractiveSequenceList& rISL = mpMainSequence->getInteractiveSequenceList();
734 0 : InteractiveSequenceList::const_iterator aISI( rISL.begin() );
735 0 : while( aISI != rISL.end() )
736 : {
737 0 : InteractiveSequencePtr pIS( (*aISI++) );
738 0 : bChanges |= updateMotionPathImpl( *this, *pView, pIS->getBegin(), pIS->getEnd(), aTags, maMotionPathTags );
739 0 : }
740 : }
741 :
742 0 : if( !aTags.empty() )
743 : {
744 0 : bChanges = true;
745 0 : MotionPathTagVector::iterator aIter( aTags.begin() );
746 0 : while( aIter != aTags.end() )
747 : {
748 0 : rtl::Reference< MotionPathTag > xTag( (*aIter++) );
749 0 : xTag->Dispose();
750 0 : }
751 : }
752 :
753 0 : if( bChanges && pView )
754 0 : pView->updateHandles();
755 0 : }
756 :
757 0 : void CustomAnimationPane::onSelectionChanged()
758 : {
759 0 : if( !maSelectionLock.isLocked() )
760 : {
761 0 : ScopeLockGuard aGuard( maSelectionLock );
762 :
763 0 : if( mxView.is() ) try
764 : {
765 0 : Reference< XSelectionSupplier > xSel( mxView, UNO_QUERY_THROW );
766 0 : if (xSel.is())
767 : {
768 0 : maViewSelection = xSel->getSelection();
769 0 : mpCustomAnimationList->onSelectionChanged( maViewSelection );
770 0 : updateControls();
771 0 : }
772 : }
773 0 : catch( Exception& )
774 : {
775 : OSL_FAIL( "sd::CustomAnimationPane::onSelectionChanged(), Exception caught!" );
776 0 : }
777 : }
778 0 : }
779 :
780 0 : void CustomAnimationPane::onDoubleClick()
781 : {
782 0 : showOptions();
783 0 : }
784 :
785 0 : void CustomAnimationPane::onContextMenu( sal_uInt16 nSelectedPopupEntry )
786 : {
787 0 : switch( nSelectedPopupEntry )
788 : {
789 0 : case CM_WITH_CLICK: onChangeStart( EffectNodeType::ON_CLICK ); break;
790 0 : case CM_WITH_PREVIOUS: onChangeStart( EffectNodeType::WITH_PREVIOUS ); break;
791 0 : case CM_AFTER_PREVIOUS: onChangeStart( EffectNodeType::AFTER_PREVIOUS ); break;
792 0 : case CM_OPTIONS: showOptions(); break;
793 0 : case CM_DURATION: showOptions("timing"); break;
794 0 : case CM_REMOVE: onRemove(); break;
795 0 : case CM_CREATE: if( maViewSelection.hasValue() ) onChange( true ); break;
796 : }
797 :
798 0 : updateControls();
799 0 : }
800 :
801 0 : void CustomAnimationPane::DataChanged (const DataChangedEvent& rEvent)
802 : {
803 : (void)rEvent;
804 0 : UpdateLook();
805 0 : }
806 :
807 0 : void CustomAnimationPane::UpdateLook (void)
808 : {
809 : const Wallpaper aBackground (
810 : ::sfx2::sidebar::Theme::GetWallpaper(
811 0 : ::sfx2::sidebar::Theme::Paint_PanelBackground));
812 0 : SetBackground(aBackground);
813 0 : if (mpFTStart != NULL)
814 0 : mpFTStart->SetBackground(aBackground);
815 0 : if (mpFTProperty != NULL)
816 0 : mpFTProperty->SetBackground(aBackground);
817 0 : if (mpFTSpeed != NULL)
818 0 : mpFTSpeed->SetBackground(aBackground);
819 0 : }
820 :
821 0 : void addValue( STLPropertySet* pSet, sal_Int32 nHandle, const Any& rValue )
822 : {
823 0 : switch( pSet->getPropertyState( nHandle ) )
824 : {
825 : case STLPropertyState_AMBIGUOUS:
826 : // value is already ambiguous, do nothing
827 0 : break;
828 : case STLPropertyState_DIRECT:
829 : // set to ambiguous if existing value is different
830 0 : if( rValue != pSet->getPropertyValue( nHandle ) )
831 0 : pSet->setPropertyState( nHandle, STLPropertyState_AMBIGUOUS );
832 0 : break;
833 : case STLPropertyState_DEFAULT:
834 : // just set new value
835 0 : pSet->setPropertyValue( nHandle, rValue );
836 0 : break;
837 : }
838 0 : }
839 :
840 0 : static sal_Int32 calcMaxParaDepth( Reference< XShape > xTargetShape )
841 : {
842 0 : sal_Int32 nMaxParaDepth = -1;
843 :
844 0 : if( xTargetShape.is() )
845 : {
846 0 : Reference< XEnumerationAccess > xText( xTargetShape, UNO_QUERY );
847 0 : if( xText.is() )
848 : {
849 0 : Reference< XPropertySet > xParaSet;
850 0 : const OUString strNumberingLevel( "NumberingLevel" );
851 :
852 0 : Reference< XEnumeration > xEnumeration( xText->createEnumeration(), UNO_QUERY_THROW );
853 0 : while( xEnumeration->hasMoreElements() )
854 : {
855 0 : xEnumeration->nextElement() >>= xParaSet;
856 0 : if( xParaSet.is() )
857 : {
858 0 : sal_Int32 nParaDepth = 0;
859 0 : xParaSet->getPropertyValue( strNumberingLevel ) >>= nParaDepth;
860 :
861 0 : if( nParaDepth > nMaxParaDepth )
862 0 : nMaxParaDepth = nParaDepth;
863 : }
864 0 : }
865 0 : }
866 : }
867 :
868 0 : return nMaxParaDepth + 1;
869 : }
870 :
871 0 : Any CustomAnimationPane::getProperty1Value( sal_Int32 nType, CustomAnimationEffectPtr pEffect )
872 : {
873 0 : switch( nType )
874 : {
875 : case nPropertyTypeDirection:
876 : case nPropertyTypeSpokes:
877 : case nPropertyTypeZoom:
878 0 : return makeAny( pEffect->getPresetSubType() );
879 :
880 : case nPropertyTypeColor:
881 : case nPropertyTypeFillColor:
882 : case nPropertyTypeFirstColor:
883 : case nPropertyTypeSecondColor:
884 : case nPropertyTypeCharColor:
885 : case nPropertyTypeLineColor:
886 : {
887 0 : const sal_Int32 nIndex = (nPropertyTypeFirstColor == nType) ? 0 : 1;
888 0 : return pEffect->getColor( nIndex );
889 : }
890 :
891 : case nPropertyTypeFont:
892 0 : return pEffect->getProperty( AnimationNodeType::SET, "CharFontName" , VALUE_TO );
893 :
894 : case nPropertyTypeCharHeight:
895 : {
896 0 : const OUString aAttributeName( "CharHeight" );
897 0 : Any aValue( pEffect->getProperty( AnimationNodeType::SET, aAttributeName, VALUE_TO ) );
898 0 : if( !aValue.hasValue() )
899 0 : aValue = pEffect->getProperty( AnimationNodeType::ANIMATE, aAttributeName, VALUE_TO );
900 0 : return aValue;
901 : }
902 :
903 : case nPropertyTypeRotate:
904 0 : return pEffect->getTransformationProperty( AnimationTransformType::ROTATE, VALUE_BY);
905 :
906 : case nPropertyTypeTransparency:
907 0 : return pEffect->getProperty( AnimationNodeType::SET, "Opacity" , VALUE_TO );
908 :
909 : case nPropertyTypeScale:
910 0 : return pEffect->getTransformationProperty( AnimationTransformType::SCALE, VALUE_BY );
911 :
912 : case nPropertyTypeCharDecoration:
913 : {
914 0 : Sequence< Any > aValues(3);
915 0 : aValues[0] = pEffect->getProperty( AnimationNodeType::SET, "CharWeight" , VALUE_TO );
916 0 : aValues[1] = pEffect->getProperty( AnimationNodeType::SET, "CharPosture" , VALUE_TO );
917 0 : aValues[2] = pEffect->getProperty( AnimationNodeType::SET, "CharUnderline" , VALUE_TO );
918 0 : return makeAny( aValues );
919 : }
920 : }
921 :
922 0 : Any aAny;
923 0 : return aAny;
924 : }
925 :
926 0 : bool CustomAnimationPane::setProperty1Value( sal_Int32 nType, CustomAnimationEffectPtr pEffect, const Any& rValue )
927 : {
928 0 : bool bEffectChanged = false;
929 0 : switch( nType )
930 : {
931 : case nPropertyTypeDirection:
932 : case nPropertyTypeSpokes:
933 : case nPropertyTypeZoom:
934 : {
935 0 : OUString aPresetSubType;
936 0 : rValue >>= aPresetSubType;
937 0 : if( aPresetSubType != pEffect->getPresetSubType() )
938 : {
939 0 : getPresets().changePresetSubType( pEffect, aPresetSubType );
940 0 : bEffectChanged = true;
941 0 : }
942 : }
943 0 : break;
944 :
945 : case nPropertyTypeFillColor:
946 : case nPropertyTypeColor:
947 : case nPropertyTypeFirstColor:
948 : case nPropertyTypeSecondColor:
949 : case nPropertyTypeCharColor:
950 : case nPropertyTypeLineColor:
951 : {
952 0 : const sal_Int32 nIndex = (nPropertyTypeFirstColor == nType) ? 0 : 1;
953 0 : Any aOldColor( pEffect->getColor( nIndex ) );
954 0 : if( aOldColor != rValue )
955 : {
956 0 : pEffect->setColor( nIndex, rValue );
957 0 : bEffectChanged = true;
958 0 : }
959 : }
960 0 : break;
961 :
962 : case nPropertyTypeFont:
963 0 : bEffectChanged = pEffect->setProperty( AnimationNodeType::SET, "CharFontName" , VALUE_TO, rValue );
964 0 : break;
965 :
966 : case nPropertyTypeCharHeight:
967 : {
968 0 : const OUString aAttributeName( "CharHeight" );
969 0 : bEffectChanged = pEffect->setProperty( AnimationNodeType::SET, aAttributeName, VALUE_TO, rValue );
970 0 : if( !bEffectChanged )
971 0 : bEffectChanged = pEffect->setProperty( AnimationNodeType::ANIMATE, aAttributeName, VALUE_TO, rValue );
972 : }
973 0 : break;
974 : case nPropertyTypeRotate:
975 0 : bEffectChanged = pEffect->setTransformationProperty( AnimationTransformType::ROTATE, VALUE_BY , rValue );
976 0 : break;
977 :
978 : case nPropertyTypeTransparency:
979 0 : bEffectChanged = pEffect->setProperty( AnimationNodeType::SET, "Opacity" , VALUE_TO, rValue );
980 0 : break;
981 :
982 : case nPropertyTypeScale:
983 0 : bEffectChanged = pEffect->setTransformationProperty( AnimationTransformType::SCALE, VALUE_BY, rValue );
984 0 : break;
985 :
986 : case nPropertyTypeCharDecoration:
987 : {
988 0 : Sequence< Any > aValues(3);
989 0 : rValue >>= aValues;
990 0 : bEffectChanged = pEffect->setProperty( AnimationNodeType::SET, "CharWeight" , VALUE_TO, aValues[0] );
991 0 : bEffectChanged |= pEffect->setProperty( AnimationNodeType::SET, "CharPosture" , VALUE_TO, aValues[1] );
992 0 : bEffectChanged |= pEffect->setProperty( AnimationNodeType::SET, "CharUnderline" , VALUE_TO, aValues[2] );
993 : }
994 0 : break;
995 :
996 : }
997 :
998 0 : return bEffectChanged;
999 : }
1000 :
1001 0 : static bool hasVisibleShape( const Reference< XShape >& xShape )
1002 : {
1003 : try
1004 : {
1005 0 : const OUString sShapeType( xShape->getShapeType() );
1006 :
1007 0 : if( sShapeType == "com.sun.star.presentation.TitleTextShape" || sShapeType == "com.sun.star.presentation.OutlinerShape" ||
1008 0 : sShapeType == "com.sun.star.presentation.SubtitleShape" || sShapeType == "com.sun.star.drawing.TextShape" )
1009 : {
1010 0 : const OUString sFillStyle( "FillStyle" );
1011 0 : const OUString sLineStyle( "LineStyle" );
1012 0 : Reference< XPropertySet > xSet( xShape, UNO_QUERY_THROW );
1013 :
1014 : FillStyle eFillStyle;
1015 0 : xSet->getPropertyValue( sFillStyle ) >>= eFillStyle;
1016 :
1017 : ::com::sun::star::drawing::LineStyle eLineStyle;
1018 0 : xSet->getPropertyValue( sLineStyle ) >>= eLineStyle;
1019 :
1020 0 : return eFillStyle != FillStyle_NONE || eLineStyle != ::com::sun::star::drawing::LineStyle_NONE;
1021 0 : }
1022 : }
1023 0 : catch( Exception& )
1024 : {
1025 : }
1026 0 : return true;
1027 : }
1028 :
1029 0 : STLPropertySet* CustomAnimationPane::createSelectionSet()
1030 : {
1031 0 : STLPropertySet* pSet = CustomAnimationDialog::createDefaultSet();
1032 :
1033 0 : pSet->setPropertyValue( nHandleCurrentPage, makeAny( mxCurrentPage ) );
1034 :
1035 0 : sal_Int32 nMaxParaDepth = 0;
1036 :
1037 : // get options from selected effects
1038 0 : EffectSequence::iterator aIter( maListSelection.begin() );
1039 0 : const EffectSequence::iterator aEnd( maListSelection.end() );
1040 0 : const CustomAnimationPresets& rPresets (getPresets());
1041 0 : while( aIter != aEnd )
1042 : {
1043 0 : CustomAnimationEffectPtr pEffect = (*aIter++);
1044 :
1045 0 : EffectSequenceHelper* pEffectSequence = pEffect->getEffectSequence();
1046 0 : if( !pEffectSequence )
1047 0 : pEffectSequence = mpMainSequence.get();
1048 :
1049 0 : if( pEffect->hasText() )
1050 : {
1051 0 : sal_Int32 n = calcMaxParaDepth(pEffect->getTargetShape());
1052 0 : if( n > nMaxParaDepth )
1053 0 : nMaxParaDepth = n;
1054 : }
1055 :
1056 0 : addValue( pSet, nHandleHasAfterEffect, makeAny( pEffect->hasAfterEffect() ) );
1057 0 : addValue( pSet, nHandleAfterEffectOnNextEffect, makeAny( pEffect->IsAfterEffectOnNext() ? sal_True : sal_False ) );
1058 0 : addValue( pSet, nHandleDimColor, pEffect->getDimColor() );
1059 0 : addValue( pSet, nHandleIterateType, makeAny( pEffect->getIterateType() ) );
1060 :
1061 : // convert absolute time to percentage value
1062 : // This calculation is done in float to avoid some rounding artifacts.
1063 0 : float fIterateInterval = (float)pEffect->getIterateInterval();
1064 0 : if( pEffect->getDuration() )
1065 0 : fIterateInterval = (float)(fIterateInterval / pEffect->getDuration() );
1066 0 : fIterateInterval *= 100.0;
1067 0 : addValue( pSet, nHandleIterateInterval, makeAny( (double)fIterateInterval ) );
1068 :
1069 0 : addValue( pSet, nHandleBegin, makeAny( pEffect->getBegin() ) );
1070 0 : addValue( pSet, nHandleDuration, makeAny( pEffect->getDuration() ) );
1071 0 : addValue( pSet, nHandleStart, makeAny( pEffect->getNodeType() ) );
1072 0 : addValue( pSet, nHandleRepeat, makeAny( pEffect->getRepeatCount() ) );
1073 0 : addValue( pSet, nHandleEnd, pEffect->getEnd() );
1074 0 : addValue( pSet, nHandleRewind, makeAny( pEffect->getFill() ) );
1075 :
1076 0 : addValue( pSet, nHandlePresetId, makeAny( pEffect->getPresetId() ) );
1077 :
1078 0 : addValue( pSet, nHandleHasText, makeAny( pEffect->hasText() ) );
1079 :
1080 0 : addValue( pSet, nHandleHasVisibleShape, Any( hasVisibleShape( pEffect->getTargetShape() ) ) );
1081 :
1082 0 : Any aSoundSource;
1083 0 : if( pEffect->getAudio().is() )
1084 : {
1085 0 : aSoundSource = pEffect->getAudio()->getSource();
1086 0 : addValue( pSet, nHandleSoundVolumne, makeAny( pEffect->getAudio()->getVolume() ) );
1087 : // todo addValue( pSet, nHandleSoundEndAfterSlide, makeAny( pEffect->getAudio()->getEndAfterSlide() ) );
1088 : // this is now stored at the XCommand parameter sequence
1089 : }
1090 0 : else if( pEffect->getCommand() == EffectCommands::STOPAUDIO )
1091 : {
1092 0 : aSoundSource = makeAny( true );
1093 : }
1094 0 : addValue( pSet, nHandleSoundURL, aSoundSource );
1095 :
1096 0 : sal_Int32 nGroupId = pEffect->getGroupId();
1097 0 : CustomAnimationTextGroupPtr pTextGroup;
1098 0 : if( nGroupId != -1 )
1099 0 : pTextGroup = pEffectSequence->findGroup( nGroupId );
1100 :
1101 0 : addValue( pSet, nHandleTextGrouping, makeAny( pTextGroup.get() ? pTextGroup->getTextGrouping() : (sal_Int32)-1 ) );
1102 0 : addValue( pSet, nHandleAnimateForm, makeAny( pTextGroup.get() ? pTextGroup->getAnimateForm() : true ) );
1103 0 : addValue( pSet, nHandleTextGroupingAuto, makeAny( pTextGroup.get() ? pTextGroup->getTextGroupingAuto() : (double)-1.0 ) );
1104 0 : addValue( pSet, nHandleTextReverse, makeAny( pTextGroup.get() && pTextGroup->getTextReverse() ) );
1105 :
1106 0 : if( pEffectSequence->getSequenceType() == EffectNodeType::INTERACTIVE_SEQUENCE )
1107 : {
1108 0 : InteractiveSequence* pIS = static_cast< InteractiveSequence* >( pEffectSequence );
1109 0 : addValue( pSet, nHandleTrigger, makeAny( pIS->getTriggerShape() ) );
1110 : }
1111 :
1112 0 : CustomAnimationPresetPtr pDescriptor = rPresets.getEffectDescriptor( pEffect->getPresetId() );
1113 0 : if( pDescriptor.get() )
1114 : {
1115 0 : sal_Int32 nType = nPropertyTypeNone;
1116 :
1117 0 : UStringList aProperties( pDescriptor->getProperties() );
1118 0 : if( aProperties.size() >= 1 )
1119 0 : nType = getPropertyType( aProperties.front() );
1120 :
1121 0 : if( nType != nPropertyTypeNone )
1122 : {
1123 0 : addValue( pSet, nHandleProperty1Type, makeAny( nType ) );
1124 0 : addValue( pSet, nHandleProperty1Value, getProperty1Value( nType, pEffect ) );
1125 : }
1126 :
1127 0 : if( pDescriptor->hasProperty( "Accelerate" ) )
1128 : {
1129 0 : addValue( pSet, nHandleAccelerate, makeAny( pEffect->getAcceleration() ) );
1130 : }
1131 :
1132 0 : if( pDescriptor->hasProperty( "Decelerate" ) )
1133 : {
1134 0 : addValue( pSet, nHandleDecelerate, makeAny( pEffect->getDecelerate() ) );
1135 : }
1136 :
1137 0 : if( pDescriptor->hasProperty( "AutoReverse" ) )
1138 : {
1139 0 : addValue( pSet, nHandleAutoReverse, makeAny( pEffect->getAutoReverse() ) );
1140 0 : }
1141 : }
1142 0 : }
1143 :
1144 0 : addValue( pSet, nHandleMaxParaDepth, makeAny( nMaxParaDepth ) );
1145 :
1146 0 : return pSet;
1147 : }
1148 :
1149 0 : void CustomAnimationPane::changeSelection( STLPropertySet* pResultSet, STLPropertySet* pOldSet )
1150 : {
1151 : // change selected effect
1152 0 : bool bChanged = false;
1153 :
1154 0 : MainSequenceRebuildGuard aGuard( mpMainSequence );
1155 :
1156 0 : EffectSequence::iterator aIter( maListSelection.begin() );
1157 0 : const EffectSequence::iterator aEnd( maListSelection.end() );
1158 0 : while( aIter != aEnd )
1159 : {
1160 0 : CustomAnimationEffectPtr pEffect = (*aIter++);
1161 :
1162 : DBG_ASSERT( pEffect->getEffectSequence(), "sd::CustomAnimationPane::changeSelection(), dead effect in selection!" );
1163 0 : if( !pEffect->getEffectSequence() )
1164 0 : continue;
1165 :
1166 0 : double fDuration = 0.0; // we might need this for iterate-interval
1167 0 : if( pResultSet->getPropertyState( nHandleDuration ) == STLPropertyState_DIRECT )
1168 : {
1169 0 : pResultSet->getPropertyValue( nHandleDuration ) >>= fDuration;
1170 : }
1171 : else
1172 : {
1173 0 : fDuration = pEffect->getDuration();
1174 : }
1175 :
1176 0 : if( pResultSet->getPropertyState( nHandleIterateType ) == STLPropertyState_DIRECT )
1177 : {
1178 0 : sal_Int16 nIterateType = 0;
1179 0 : pResultSet->getPropertyValue( nHandleIterateType ) >>= nIterateType;
1180 0 : if( pEffect->getIterateType() != nIterateType )
1181 : {
1182 0 : pEffect->setIterateType( nIterateType );
1183 0 : bChanged = true;
1184 : }
1185 : }
1186 :
1187 0 : if( pEffect->getIterateType() )
1188 : {
1189 0 : if( pResultSet->getPropertyState( nHandleIterateInterval ) == STLPropertyState_DIRECT )
1190 : {
1191 0 : double fIterateInterval = 0.0;
1192 0 : pResultSet->getPropertyValue( nHandleIterateInterval ) >>= fIterateInterval;
1193 0 : if( pEffect->getIterateInterval() != fIterateInterval )
1194 : {
1195 0 : const double f = fIterateInterval * pEffect->getDuration() / 100;
1196 0 : pEffect->setIterateInterval( f );
1197 0 : bChanged = true;
1198 : }
1199 : }
1200 : }
1201 :
1202 0 : if( pResultSet->getPropertyState( nHandleBegin ) == STLPropertyState_DIRECT )
1203 : {
1204 0 : double fBegin = 0.0;
1205 0 : pResultSet->getPropertyValue( nHandleBegin ) >>= fBegin;
1206 0 : if( pEffect->getBegin() != fBegin )
1207 : {
1208 0 : pEffect->setBegin( fBegin );
1209 0 : bChanged = true;
1210 : }
1211 : }
1212 :
1213 0 : if( pResultSet->getPropertyState( nHandleDuration ) == STLPropertyState_DIRECT )
1214 : {
1215 0 : if( pEffect->getDuration() != fDuration )
1216 : {
1217 0 : pEffect->setDuration( fDuration );
1218 0 : bChanged = true;
1219 : }
1220 : }
1221 :
1222 0 : if( pResultSet->getPropertyState( nHandleStart ) == STLPropertyState_DIRECT )
1223 : {
1224 0 : sal_Int16 nNodeType = 0;
1225 0 : pResultSet->getPropertyValue( nHandleStart ) >>= nNodeType;
1226 0 : if( pEffect->getNodeType() != nNodeType )
1227 : {
1228 0 : pEffect->setNodeType( nNodeType );
1229 0 : bChanged = true;
1230 : }
1231 : }
1232 :
1233 0 : if( pResultSet->getPropertyState( nHandleRepeat ) == STLPropertyState_DIRECT )
1234 : {
1235 0 : Any aRepeatCount( pResultSet->getPropertyValue( nHandleRepeat ) );
1236 0 : if( aRepeatCount != pEffect->getRepeatCount() )
1237 : {
1238 0 : pEffect->setRepeatCount( aRepeatCount );
1239 0 : bChanged = true;
1240 0 : }
1241 : }
1242 :
1243 0 : if( pResultSet->getPropertyState( nHandleEnd ) == STLPropertyState_DIRECT )
1244 : {
1245 0 : Any aEndValue( pResultSet->getPropertyValue( nHandleEnd ) );
1246 0 : if( pEffect->getEnd() != aEndValue )
1247 : {
1248 0 : pEffect->setEnd( aEndValue );
1249 0 : bChanged = true;
1250 0 : }
1251 : }
1252 :
1253 0 : if( pResultSet->getPropertyState( nHandleRewind ) == STLPropertyState_DIRECT )
1254 : {
1255 0 : sal_Int16 nFill = 0;
1256 0 : pResultSet->getPropertyValue( nHandleRewind ) >>= nFill;
1257 0 : if( pEffect->getFill() != nFill )
1258 : {
1259 0 : pEffect->setFill( nFill );
1260 0 : bChanged = true;
1261 : }
1262 : }
1263 :
1264 0 : if( pResultSet->getPropertyState( nHandleHasAfterEffect ) == STLPropertyState_DIRECT )
1265 : {
1266 0 : bool bHasAfterEffect = false;
1267 0 : if( pResultSet->getPropertyValue( nHandleHasAfterEffect ) >>= bHasAfterEffect )
1268 : {
1269 0 : if( pEffect->hasAfterEffect() != bHasAfterEffect )
1270 : {
1271 0 : pEffect->setHasAfterEffect( bHasAfterEffect );
1272 0 : bChanged = true;
1273 : }
1274 : }
1275 : }
1276 :
1277 0 : if( pResultSet->getPropertyState( nHandleAfterEffectOnNextEffect ) == STLPropertyState_DIRECT )
1278 : {
1279 0 : bool bAfterEffectOnNextEffect = false;
1280 0 : if( (pResultSet->getPropertyValue( nHandleAfterEffectOnNextEffect ) >>= bAfterEffectOnNextEffect)
1281 0 : && (pEffect->IsAfterEffectOnNext() != bAfterEffectOnNextEffect) )
1282 : {
1283 0 : pEffect->setAfterEffectOnNext( bAfterEffectOnNextEffect );
1284 0 : bChanged = true;
1285 : }
1286 : }
1287 :
1288 0 : if( pResultSet->getPropertyState( nHandleDimColor ) == STLPropertyState_DIRECT )
1289 : {
1290 0 : Any aDimColor( pResultSet->getPropertyValue( nHandleDimColor ) );
1291 0 : if( pEffect->getDimColor() != aDimColor )
1292 : {
1293 0 : pEffect->setDimColor( aDimColor );
1294 0 : bChanged = true;
1295 0 : }
1296 : }
1297 :
1298 0 : if( pResultSet->getPropertyState( nHandleAccelerate ) == STLPropertyState_DIRECT )
1299 : {
1300 0 : double fAccelerate = 0.0;
1301 0 : pResultSet->getPropertyValue( nHandleAccelerate ) >>= fAccelerate;
1302 0 : if( pEffect->getAcceleration() != fAccelerate )
1303 : {
1304 0 : pEffect->setAcceleration( fAccelerate );
1305 0 : bChanged = true;
1306 : }
1307 : }
1308 :
1309 0 : if( pResultSet->getPropertyState( nHandleDecelerate ) == STLPropertyState_DIRECT )
1310 : {
1311 0 : double fDecelerate = 0.0;
1312 0 : pResultSet->getPropertyValue( nHandleDecelerate ) >>= fDecelerate;
1313 0 : if( pEffect->getDecelerate() != fDecelerate )
1314 : {
1315 0 : pEffect->setDecelerate( fDecelerate );
1316 0 : bChanged = true;
1317 : }
1318 : }
1319 :
1320 0 : if( pResultSet->getPropertyState( nHandleAutoReverse ) == STLPropertyState_DIRECT )
1321 : {
1322 0 : bool bAutoReverse = false;
1323 0 : pResultSet->getPropertyValue( nHandleAutoReverse ) >>= bAutoReverse;
1324 0 : if( pEffect->getAutoReverse() != bAutoReverse )
1325 : {
1326 0 : pEffect->setAutoReverse( bAutoReverse );
1327 0 : bChanged = true;
1328 : }
1329 : }
1330 :
1331 0 : if( pResultSet->getPropertyState( nHandleProperty1Value ) == STLPropertyState_DIRECT )
1332 : {
1333 0 : sal_Int32 nType = 0;
1334 0 : pOldSet->getPropertyValue( nHandleProperty1Type ) >>= nType;
1335 :
1336 0 : bChanged |= setProperty1Value( nType, pEffect, pResultSet->getPropertyValue( nHandleProperty1Value ) );
1337 : }
1338 :
1339 0 : if( pResultSet->getPropertyState( nHandleSoundURL ) == STLPropertyState_DIRECT )
1340 : {
1341 0 : const Any aSoundSource( pResultSet->getPropertyValue( nHandleSoundURL ) );
1342 :
1343 0 : if( aSoundSource.getValueType() == ::cppu::UnoType<sal_Bool>::get() )
1344 : {
1345 0 : pEffect->setStopAudio();
1346 0 : bChanged = true;
1347 : }
1348 : else
1349 : {
1350 0 : OUString aSoundURL;
1351 0 : aSoundSource >>= aSoundURL;
1352 :
1353 0 : if( !aSoundURL.isEmpty() )
1354 : {
1355 0 : if( !pEffect->getAudio().is() )
1356 : {
1357 0 : pEffect->createAudio( aSoundSource );
1358 0 : bChanged = true;
1359 : }
1360 : else
1361 : {
1362 0 : if( pEffect->getAudio()->getSource() != aSoundSource )
1363 : {
1364 0 : pEffect->getAudio()->setSource( aSoundSource );
1365 0 : bChanged = true;
1366 : }
1367 : }
1368 : }
1369 : else
1370 : {
1371 0 : if( pEffect->getAudio().is() || pEffect->getStopAudio() )
1372 : {
1373 0 : pEffect->removeAudio();
1374 0 : bChanged = true;
1375 : }
1376 0 : }
1377 0 : }
1378 : }
1379 :
1380 0 : if( pResultSet->getPropertyState( nHandleTrigger ) == STLPropertyState_DIRECT )
1381 : {
1382 0 : Reference< XShape > xTriggerShape;
1383 0 : pResultSet->getPropertyValue( nHandleTrigger ) >>= xTriggerShape;
1384 0 : bChanged |= mpMainSequence->setTrigger( pEffect, xTriggerShape );
1385 : }
1386 0 : }
1387 :
1388 0 : const bool bHasTextGrouping = pResultSet->getPropertyState( nHandleTextGrouping ) == STLPropertyState_DIRECT;
1389 0 : const bool bHasAnimateForm = pResultSet->getPropertyState( nHandleAnimateForm ) == STLPropertyState_DIRECT;
1390 0 : const bool bHasTextGroupingAuto = pResultSet->getPropertyState( nHandleTextGroupingAuto ) == STLPropertyState_DIRECT;
1391 0 : const bool bHasTextReverse = pResultSet->getPropertyState( nHandleTextReverse ) == STLPropertyState_DIRECT;
1392 :
1393 0 : if( bHasTextGrouping || bHasAnimateForm || bHasTextGroupingAuto || bHasTextReverse )
1394 : {
1395 : // we need to do a second pass for text grouping options
1396 : // since changing them can cause effects to be removed
1397 : // or replaced, we do this after we applied all other options
1398 : // above
1399 :
1400 0 : sal_Int32 nTextGrouping = 0;
1401 0 : bool bAnimateForm = true, bTextReverse = false;
1402 0 : double fTextGroupingAuto = -1.0;
1403 :
1404 0 : if( bHasTextGrouping )
1405 0 : pResultSet->getPropertyValue(nHandleTextGrouping) >>= nTextGrouping;
1406 :
1407 0 : if( bHasAnimateForm )
1408 0 : pResultSet->getPropertyValue(nHandleAnimateForm) >>= bAnimateForm;
1409 :
1410 0 : if( bHasTextGroupingAuto )
1411 0 : pResultSet->getPropertyValue(nHandleTextGroupingAuto) >>= fTextGroupingAuto;
1412 :
1413 0 : if( bHasTextReverse )
1414 0 : pResultSet->getPropertyValue(nHandleTextReverse) >>= bTextReverse;
1415 :
1416 0 : EffectSequence const aSelectedEffects( maListSelection );
1417 0 : EffectSequence::const_iterator iter( aSelectedEffects.begin() );
1418 0 : const EffectSequence::const_iterator iEnd( aSelectedEffects.end() );
1419 0 : while( iter != iEnd )
1420 : {
1421 0 : CustomAnimationEffectPtr const& pEffect = (*iter++);
1422 :
1423 0 : EffectSequenceHelper* pEffectSequence = pEffect->getEffectSequence();
1424 0 : if( !pEffectSequence )
1425 0 : pEffectSequence = mpMainSequence.get();
1426 :
1427 0 : sal_Int32 nGroupId = pEffect->getGroupId();
1428 0 : CustomAnimationTextGroupPtr pTextGroup;
1429 0 : if( (nGroupId != -1) )
1430 : {
1431 : // use existing group
1432 0 : pTextGroup = pEffectSequence->findGroup( nGroupId );
1433 : }
1434 : else
1435 : {
1436 : // somethings changed so we need a group now
1437 0 : pTextGroup = pEffectSequence->createTextGroup( pEffect, nTextGrouping, fTextGroupingAuto, bAnimateForm, bTextReverse );
1438 0 : bChanged = true;
1439 : }
1440 :
1441 : //#i119988#
1442 : /************************************************************************/
1443 : /*
1444 : Note, the setAnimateForm means set the animation from TextGroup to Object's Shape
1445 : And on the UI in means "Animate attached shape" in "Effect Option" dialog
1446 : The setTextGrouping means set animation to Object's Text,
1447 : the nTextGrouping is Text Animation Type
1448 : nTextGrouping = -1 is "As one Object", means no text animation.
1449 :
1450 : The previous call order first do the setTextGrouping and then do the setAnimateForm,
1451 : that will cause such defect: in the setTextGrouping, the effect has been removed,
1452 : but in setAnimateForm still need this effect, then a NULL pointer of that effect will
1453 : be gotten, and cause crash.
1454 :
1455 : []bHasAnimateForm means the UI has changed, bAnimateForm is it value
1456 :
1457 : So if create a new textgroup animation, the following animation will never be run!
1458 : Since the \A1\B0Animate attached shape\A1\B1 is default checked.
1459 : And the bHasAnimateForm default is false, and if user uncheck it the value bAnimateForm will be false,
1460 : it same as the TextGroup\A1\AFs default value, also could not be run setAnimateForm.
1461 : if( bHasAnimateForm )
1462 : {
1463 : if( pTextGroup->getAnimateForm() != bAnimateForm )
1464 : {
1465 : pEffectSequence->setAnimateForm( pTextGroup, bAnimateForm );
1466 : bChanged = true;
1467 : }
1468 : }
1469 :
1470 : In setTextGrouping, there are three case:
1471 : 1. Create new text effects for empty TextGroup
1472 : 2. Remove all text effects of TextGroup (nTextGrouping == -1)
1473 : 3. Change all the text effects\A1\AF start type
1474 :
1475 : So here is the right logic:
1476 : If set the animation from text to shape and remove text animation,
1477 : should do setAnimateForm first, then do setTextGrouping.
1478 : Other case,do setTextGrouping first, then do setAnimateForm.
1479 :
1480 : */
1481 : /************************************************************************/
1482 :
1483 0 : bool bDoSetAnimateFormFirst = false;
1484 0 : bool bNeedDoSetAnimateForm = false;
1485 :
1486 0 : if( bHasAnimateForm )
1487 : {
1488 0 : if( pTextGroup.get() && pTextGroup->getAnimateForm() != bAnimateForm )
1489 : {
1490 0 : if( (pTextGroup->getTextGrouping() >= 0) && (nTextGrouping == -1 ) )
1491 : {
1492 0 : bDoSetAnimateFormFirst = true;
1493 : }
1494 0 : bNeedDoSetAnimateForm = true;
1495 : }
1496 : }
1497 :
1498 0 : if (bDoSetAnimateFormFirst)
1499 : {
1500 0 : pEffectSequence->setAnimateForm( pTextGroup, bAnimateForm );
1501 0 : bChanged = true;
1502 : }
1503 :
1504 0 : if( bHasTextGrouping )
1505 : {
1506 0 : if( pTextGroup.get() && pTextGroup->getTextGrouping() != nTextGrouping )
1507 : {
1508 0 : pEffectSequence->setTextGrouping( pTextGroup, nTextGrouping );
1509 0 : bChanged = true;
1510 : }
1511 : }
1512 :
1513 0 : if (!bDoSetAnimateFormFirst && bNeedDoSetAnimateForm)
1514 : {
1515 0 : if( pTextGroup.get() )
1516 : {
1517 0 : pEffectSequence->setAnimateForm( pTextGroup, bAnimateForm );
1518 0 : bChanged = true;
1519 : }
1520 : }
1521 :
1522 0 : if( bHasTextGroupingAuto )
1523 : {
1524 0 : if( pTextGroup.get() && pTextGroup->getTextGroupingAuto() != fTextGroupingAuto )
1525 : {
1526 0 : pEffectSequence->setTextGroupingAuto( pTextGroup, fTextGroupingAuto );
1527 0 : bChanged = true;
1528 : }
1529 : }
1530 :
1531 0 : if( bHasTextReverse )
1532 : {
1533 0 : if( pTextGroup.get() && pTextGroup->getTextReverse() != bTextReverse )
1534 : {
1535 0 : pEffectSequence->setTextReverse( pTextGroup, bTextReverse );
1536 0 : bChanged = true;
1537 : }
1538 : }
1539 0 : }
1540 : }
1541 :
1542 0 : if( bChanged )
1543 : {
1544 0 : mpMainSequence->rebuild();
1545 0 : updateControls();
1546 0 : mrBase.GetDocShell()->SetModified();
1547 0 : }
1548 0 : }
1549 :
1550 0 : void CustomAnimationPane::showOptions(const OString& sPage)
1551 : {
1552 0 : STLPropertySet* pSet = createSelectionSet();
1553 :
1554 0 : boost::scoped_ptr<CustomAnimationDialog> pDlg(new CustomAnimationDialog(this, pSet, sPage));
1555 0 : if( pDlg->Execute() )
1556 : {
1557 0 : addUndo();
1558 0 : changeSelection( pDlg->getResultSet(), pSet );
1559 0 : updateControls();
1560 0 : }
1561 0 : }
1562 :
1563 0 : void CustomAnimationPane::onChangeCurrentPage()
1564 : {
1565 0 : if( mxView.is() ) try
1566 : {
1567 0 : Reference< XDrawPage > xNewPage( mxView->getCurrentPage() );
1568 0 : if( xNewPage != mxCurrentPage )
1569 : {
1570 0 : mxCurrentPage = xNewPage;
1571 0 : SdPage* pPage = SdPage::getImplementation( mxCurrentPage );
1572 0 : if( pPage )
1573 : {
1574 0 : mpMainSequence = pPage->getMainSequence();
1575 0 : mpCustomAnimationList->update( mpMainSequence );
1576 : }
1577 0 : updateControls();
1578 0 : }
1579 : }
1580 0 : catch( Exception& )
1581 : {
1582 : OSL_FAIL( "sd::CustomAnimationPane::onChangeCurrentPage(), exception caught!" );
1583 : }
1584 0 : }
1585 :
1586 0 : bool getTextSelection( const Any& rSelection, Reference< XShape >& xShape, std::list< sal_Int16 >& rParaList )
1587 : {
1588 0 : Reference< XTextRange > xSelectedText;
1589 0 : rSelection >>= xSelectedText;
1590 0 : if( xSelectedText.is() ) try
1591 : {
1592 0 : xShape.set( xSelectedText->getText(), UNO_QUERY_THROW );
1593 :
1594 0 : Reference< XTextRangeCompare > xTextRangeCompare( xShape, UNO_QUERY_THROW );
1595 0 : Reference< XEnumerationAccess > xParaEnumAccess( xShape, UNO_QUERY_THROW );
1596 0 : Reference< XEnumeration > xParaEnum( xParaEnumAccess->createEnumeration(), UNO_QUERY_THROW );
1597 0 : Reference< XTextRange > xRange;
1598 0 : Reference< XTextRange > xStart( xSelectedText->getStart() );
1599 0 : Reference< XTextRange > xEnd( xSelectedText->getEnd() );
1600 :
1601 0 : if( xTextRangeCompare->compareRegionEnds( xStart, xEnd ) < 0 )
1602 : {
1603 0 : Reference< XTextRange > xTemp( xStart );
1604 0 : xStart = xEnd;
1605 0 : xEnd = xTemp;
1606 : }
1607 :
1608 0 : sal_Int16 nPara = 0;
1609 0 : while( xParaEnum->hasMoreElements() )
1610 : {
1611 0 : xParaEnum->nextElement() >>= xRange;
1612 :
1613 : // break if start of selection is prior to end of current paragraph
1614 0 : if( xRange.is() && (xTextRangeCompare->compareRegionEnds( xStart, xRange ) >= 0 ) )
1615 0 : break;
1616 :
1617 0 : nPara++;
1618 : }
1619 :
1620 0 : while( xRange.is() )
1621 : {
1622 0 : if( xRange.is() && !xRange->getString().isEmpty() )
1623 0 : rParaList.push_back( nPara );
1624 :
1625 : // break if end of selection is before or at end of current paragraph
1626 0 : if( xRange.is() && xTextRangeCompare->compareRegionEnds( xEnd, xRange ) >= 0 )
1627 0 : break;
1628 :
1629 0 : nPara++;
1630 :
1631 0 : if( xParaEnum->hasMoreElements() )
1632 0 : xParaEnum->nextElement() >>= xRange;
1633 : else
1634 0 : xRange.clear();
1635 : }
1636 :
1637 0 : return true;
1638 : }
1639 0 : catch( Exception& )
1640 : {
1641 : OSL_FAIL( "sd::CustomAnimationPane::getTextSelection(), exception caught!" );
1642 : }
1643 :
1644 0 : return false;
1645 : }
1646 :
1647 0 : void CustomAnimationPane::onChange( bool bCreate )
1648 : {
1649 0 : bool bHasText = true;
1650 :
1651 : // first create vector of targets for dialog preview
1652 0 : std::vector< Any > aTargets;
1653 0 : OUString sPresetId;
1654 0 : double fDuration = 2.0f;
1655 :
1656 0 : if( bCreate )
1657 : {
1658 : // gather shapes from the selection
1659 0 : Reference< XSelectionSupplier > xSel( mxView, UNO_QUERY_THROW );
1660 0 : maViewSelection = xSel->getSelection();
1661 :
1662 0 : if( maViewSelection.getValueType() == cppu::UnoType<XShapes>::get())
1663 : {
1664 0 : Reference< XIndexAccess > xShapes;
1665 0 : maViewSelection >>= xShapes;
1666 :
1667 0 : sal_Int32 nCount = xShapes->getCount();
1668 : sal_Int32 nIndex;
1669 0 : for( nIndex = 0; nIndex < nCount; nIndex++ )
1670 : {
1671 0 : Any aTarget( xShapes->getByIndex( nIndex ) );
1672 0 : aTargets.push_back( aTarget );
1673 0 : if( bHasText )
1674 : {
1675 0 : Reference< XText > xText;
1676 0 : aTarget >>= xText;
1677 0 : if( !xText.is() || xText->getString().isEmpty() )
1678 0 : bHasText = false;
1679 : }
1680 0 : }
1681 : }
1682 0 : else if ( maViewSelection.getValueType() == cppu::UnoType<XShape>::get())
1683 : {
1684 0 : aTargets.push_back( maViewSelection );
1685 0 : Reference< XText > xText;
1686 0 : maViewSelection >>= xText;
1687 0 : if( !xText.is() || xText->getString().isEmpty() )
1688 0 : bHasText = false;
1689 : }
1690 0 : else if ( maViewSelection.getValueType() == cppu::UnoType<XTextCursor>::get())
1691 : {
1692 0 : Reference< XShape > xShape;
1693 0 : std::list< sal_Int16 > aParaList;
1694 0 : if( getTextSelection( maViewSelection, xShape, aParaList ) )
1695 : {
1696 0 : ParagraphTarget aParaTarget;
1697 0 : aParaTarget.Shape = xShape;
1698 :
1699 0 : std::list< sal_Int16 >::iterator aIter( aParaList.begin() );
1700 0 : for( ; aIter != aParaList.end(); ++aIter )
1701 : {
1702 0 : aParaTarget.Paragraph = (*aIter);
1703 0 : aTargets.push_back( makeAny( aParaTarget ) );
1704 0 : }
1705 0 : }
1706 : }
1707 : else
1708 : {
1709 : OSL_FAIL("sd::CustomAnimationPane::onChange(), unknown view selection!" );
1710 0 : return;
1711 0 : }
1712 : }
1713 : else
1714 : {
1715 : // get selected effect
1716 0 : EffectSequence::iterator aIter( maListSelection.begin() );
1717 0 : const EffectSequence::iterator aEnd( maListSelection.end() );
1718 0 : while( aIter != aEnd )
1719 : {
1720 0 : if( !bHasText || !(*aIter)->hasText() )
1721 0 : bHasText = false;
1722 :
1723 0 : if( sPresetId.isEmpty() )
1724 : {
1725 0 : sPresetId = (*aIter)->getPresetId();
1726 0 : fDuration = (*aIter)->getDuration();
1727 : }
1728 :
1729 0 : aTargets.push_back( (*aIter++)->getTarget() );
1730 : }
1731 : }
1732 :
1733 0 : boost::scoped_ptr<CustomAnimationCreateDialog> pDlg(new CustomAnimationCreateDialog( this, this, aTargets, bHasText, sPresetId, fDuration ));
1734 0 : if( pDlg->Execute() )
1735 : {
1736 0 : addUndo();
1737 0 : fDuration = pDlg->getSelectedDuration();
1738 0 : CustomAnimationPresetPtr pDescriptor = pDlg->getSelectedPreset();
1739 0 : if( pDescriptor.get() )
1740 : {
1741 0 : if( bCreate )
1742 : {
1743 0 : mpCustomAnimationList->SelectAll( false );
1744 :
1745 : // gather shapes from the selection
1746 0 : std::vector< Any >::iterator aIter( aTargets.begin() );
1747 0 : const std::vector< Any >::iterator aEnd( aTargets.end() );
1748 0 : bool bFirst = true;
1749 0 : for( ; aIter != aEnd; ++aIter )
1750 : {
1751 0 : CustomAnimationEffectPtr pCreated = mpMainSequence->append( pDescriptor, (*aIter), fDuration );
1752 :
1753 : // if only one shape with text and no fill or outline is selected, animate only by first level paragraphs
1754 0 : if( bHasText && (aTargets.size() == 1) )
1755 : {
1756 0 : Reference< XShape > xShape( (*aIter), UNO_QUERY );
1757 0 : if( xShape.is() && !hasVisibleShape( xShape ) )
1758 : {
1759 0 : mpMainSequence->createTextGroup( pCreated, 1, -1.0, false, false );
1760 0 : }
1761 : }
1762 :
1763 0 : if( bFirst )
1764 0 : bFirst = false;
1765 : else
1766 0 : pCreated->setNodeType( EffectNodeType::WITH_PREVIOUS );
1767 :
1768 0 : if( pCreated.get() )
1769 : {
1770 0 : mpCustomAnimationList->select( pCreated );
1771 : }
1772 0 : }
1773 : }
1774 : else
1775 : {
1776 0 : MainSequenceRebuildGuard aGuard( mpMainSequence );
1777 :
1778 : // get selected effect
1779 0 : EffectSequence::iterator aIter( maListSelection.begin() );
1780 0 : const EffectSequence::iterator aEnd( maListSelection.end() );
1781 0 : while( aIter != aEnd )
1782 : {
1783 0 : CustomAnimationEffectPtr pEffect = (*aIter++);
1784 :
1785 0 : EffectSequenceHelper* pEffectSequence = pEffect->getEffectSequence();
1786 0 : if( !pEffectSequence )
1787 0 : pEffectSequence = mpMainSequence.get();
1788 :
1789 0 : pEffectSequence->replace( pEffect, pDescriptor, fDuration );
1790 0 : }
1791 : }
1792 : }
1793 : else
1794 : {
1795 0 : PathKind eKind = pDlg->getCreatePathKind();
1796 0 : if( eKind != PathKind::NONE )
1797 0 : createPath( eKind, aTargets, fDuration );
1798 : }
1799 0 : mrBase.GetDocShell()->SetModified();
1800 : }
1801 :
1802 0 : pDlg.reset();
1803 :
1804 0 : updateControls();
1805 :
1806 : // stop running preview from dialog
1807 0 : SlideShow::Stop( mrBase );
1808 : }
1809 :
1810 0 : void CustomAnimationPane::createPath( PathKind eKind, std::vector< Any >& rTargets, double fDuration)
1811 : {
1812 0 : sal_uInt16 nSID = 0;
1813 :
1814 0 : switch( eKind )
1815 : {
1816 0 : case PathKind::CURVE: nSID = SID_DRAW_BEZIER_NOFILL; break;
1817 0 : case PathKind::POLYGON: nSID = SID_DRAW_POLYGON_NOFILL; break;
1818 0 : case PathKind::FREEFORM: nSID = SID_DRAW_FREELINE_NOFILL; break;
1819 0 : default: break;
1820 : }
1821 :
1822 0 : if( nSID )
1823 : {
1824 : DrawViewShell* pViewShell = dynamic_cast< DrawViewShell* >(
1825 0 : FrameworkHelper::Instance(mrBase)->GetViewShell(FrameworkHelper::msCenterPaneURL).get());
1826 :
1827 0 : if( pViewShell )
1828 : {
1829 0 : DrawView* pView = pViewShell->GetDrawView();
1830 0 : if( pView )
1831 0 : pView->UnmarkAllObj();
1832 :
1833 0 : std::vector< Any > aTargets( 1, Any( fDuration ) );
1834 0 : aTargets.insert( aTargets.end(), rTargets.begin(), rTargets.end() );
1835 0 : Sequence< Any > aTargetSequence( comphelper::containerToSequence( aTargets ) );
1836 0 : const SfxUnoAnyItem aItem( SID_ADD_MOTION_PATH, Any( aTargetSequence ) );
1837 0 : pViewShell->GetViewFrame()->GetDispatcher()->Execute( nSID, SfxCallMode::ASYNCHRON, &aItem, 0 );
1838 : }
1839 : }
1840 0 : }
1841 :
1842 0 : void CustomAnimationPane::onRemove()
1843 : {
1844 0 : if( !maListSelection.empty() )
1845 : {
1846 0 : addUndo();
1847 :
1848 0 : MainSequenceRebuildGuard aGuard( mpMainSequence );
1849 :
1850 0 : EffectSequence aList( maListSelection );
1851 :
1852 0 : EffectSequence::iterator aIter( aList.begin() );
1853 0 : const EffectSequence::iterator aEnd( aList.end() );
1854 0 : while( aIter != aEnd )
1855 : {
1856 0 : CustomAnimationEffectPtr pEffect = (*aIter++);
1857 0 : if( pEffect->getEffectSequence() )
1858 0 : pEffect->getEffectSequence()->remove( pEffect );
1859 0 : }
1860 :
1861 0 : maListSelection.clear();
1862 0 : mrBase.GetDocShell()->SetModified();
1863 : }
1864 0 : }
1865 :
1866 0 : void CustomAnimationPane::remove( CustomAnimationEffectPtr& pEffect )
1867 : {
1868 0 : if( pEffect->getEffectSequence() )
1869 : {
1870 0 : addUndo();
1871 0 : pEffect->getEffectSequence()->remove( pEffect );
1872 0 : mrBase.GetDocShell()->SetModified();
1873 : }
1874 0 : }
1875 :
1876 0 : void CustomAnimationPane::onChangeStart()
1877 : {
1878 0 : if( mpLBStart->GetSelectEntryCount() == 1 )
1879 : {
1880 : sal_Int16 nNodeType;
1881 0 : sal_uInt16 nPos= mpLBStart->GetSelectEntryPos();
1882 0 : switch( nPos )
1883 : {
1884 0 : case 0: nNodeType = EffectNodeType::ON_CLICK; break;
1885 0 : case 1: nNodeType = EffectNodeType::WITH_PREVIOUS; break;
1886 0 : case 2: nNodeType = EffectNodeType::AFTER_PREVIOUS; break;
1887 : default:
1888 0 : return;
1889 : }
1890 :
1891 0 : onChangeStart( nNodeType );
1892 : }
1893 : }
1894 :
1895 0 : void CustomAnimationPane::onChangeStart( sal_Int16 nNodeType )
1896 : {
1897 0 : addUndo();
1898 :
1899 0 : MainSequenceRebuildGuard aGuard( mpMainSequence );
1900 :
1901 0 : bool bNeedRebuild = false;
1902 :
1903 0 : EffectSequence::iterator aIter( maListSelection.begin() );
1904 0 : const EffectSequence::iterator aEnd( maListSelection.end() );
1905 0 : while( aIter != aEnd )
1906 : {
1907 0 : CustomAnimationEffectPtr pEffect = (*aIter++);
1908 0 : if( pEffect->getNodeType() != nNodeType )
1909 : {
1910 0 : pEffect->setNodeType( nNodeType );
1911 0 : bNeedRebuild = true;
1912 : }
1913 0 : }
1914 :
1915 0 : if( bNeedRebuild )
1916 : {
1917 0 : mpMainSequence->rebuild();
1918 0 : updateControls();
1919 0 : mrBase.GetDocShell()->SetModified();
1920 0 : }
1921 0 : }
1922 :
1923 0 : void CustomAnimationPane::onChangeProperty()
1924 : {
1925 0 : if( mpLBProperty->getSubControl() )
1926 : {
1927 0 : addUndo();
1928 :
1929 0 : MainSequenceRebuildGuard aGuard( mpMainSequence );
1930 :
1931 0 : const Any aValue( mpLBProperty->getSubControl()->getValue() );
1932 :
1933 0 : bool bNeedUpdate = false;
1934 :
1935 : // change selected effect
1936 0 : EffectSequence::iterator aIter( maListSelection.begin() );
1937 0 : const EffectSequence::iterator aEnd( maListSelection.end() );
1938 0 : while( aIter != aEnd )
1939 : {
1940 0 : CustomAnimationEffectPtr pEffect = (*aIter++);
1941 :
1942 0 : if( setProperty1Value( mnPropertyType, pEffect, aValue ) )
1943 0 : bNeedUpdate = true;
1944 0 : }
1945 :
1946 0 : if( bNeedUpdate )
1947 : {
1948 0 : mpMainSequence->rebuild();
1949 0 : updateControls();
1950 0 : mrBase.GetDocShell()->SetModified();
1951 : }
1952 :
1953 0 : onPreview( false );
1954 : }
1955 0 : }
1956 :
1957 0 : void CustomAnimationPane::onChangeSpeed()
1958 : {
1959 0 : if( mpCBSpeed->GetSelectEntryCount() == 1 )
1960 : {
1961 0 : addUndo();
1962 :
1963 0 : MainSequenceRebuildGuard aGuard( mpMainSequence );
1964 :
1965 : double fDuration;
1966 :
1967 0 : sal_uInt16 nPos= mpCBSpeed->GetSelectEntryPos();
1968 :
1969 0 : switch( nPos )
1970 : {
1971 0 : case 0: fDuration = 5.0; break;
1972 0 : case 1: fDuration = 3.0; break;
1973 0 : case 2: fDuration = 2.0; break;
1974 0 : case 3: fDuration = 1.0; break;
1975 0 : case 4: fDuration = 0.5; break;
1976 : default:
1977 0 : return;
1978 : }
1979 :
1980 : // change selected effect
1981 0 : EffectSequence::iterator aIter( maListSelection.begin() );
1982 0 : const EffectSequence::iterator aEnd( maListSelection.end() );
1983 0 : while( aIter != aEnd )
1984 : {
1985 0 : CustomAnimationEffectPtr pEffect = (*aIter++);
1986 0 : pEffect->setDuration( fDuration );
1987 0 : }
1988 :
1989 0 : mpMainSequence->rebuild();
1990 0 : updateControls();
1991 0 : mrBase.GetDocShell()->SetModified();
1992 :
1993 0 : onPreview( false );
1994 : }
1995 : }
1996 :
1997 : /// this link is called when the property box is modified by the user
1998 0 : IMPL_LINK_NOARG(CustomAnimationPane, implPropertyHdl)
1999 : {
2000 0 : onChangeProperty();
2001 0 : return 0;
2002 : }
2003 :
2004 : /// this link is called when one of the controls is modified
2005 0 : IMPL_LINK( CustomAnimationPane, implControlHdl, Control*, pControl )
2006 : {
2007 0 : if( pControl == mpPBAddEffect )
2008 0 : onChange(true);
2009 0 : else if( pControl == mpPBChangeEffect )
2010 0 : onChange(false);
2011 0 : else if( pControl == mpPBRemoveEffect )
2012 0 : onRemove();
2013 0 : else if( pControl == mpLBStart )
2014 0 : onChangeStart();
2015 0 : else if( pControl == mpCBSpeed )
2016 0 : onChangeSpeed();
2017 0 : else if( pControl == mpPBPropertyMore )
2018 0 : showOptions();
2019 0 : else if( pControl == mpPBMoveUp )
2020 0 : moveSelection( true );
2021 0 : else if( pControl == mpPBMoveDown )
2022 0 : moveSelection( false );
2023 0 : else if( pControl == mpPBPlay )
2024 0 : onPreview( true );
2025 0 : else if( pControl == mpCBAutoPreview )
2026 : {
2027 0 : SdOptions* pOptions = SD_MOD()->GetSdOptions(DOCUMENT_TYPE_IMPRESS);
2028 0 : pOptions->SetPreviewChangedEffects( mpCBAutoPreview->IsChecked() ? sal_True : sal_False );
2029 : }
2030 :
2031 0 : updateControls();
2032 :
2033 0 : return 0;
2034 : }
2035 :
2036 0 : IMPL_LINK_NOARG(CustomAnimationPane, lateInitCallback)
2037 : {
2038 : // Call getPresets() to initiate the (expensive) construction of the
2039 : // presets list.
2040 0 : getPresets();
2041 :
2042 : // update selection and control states
2043 0 : onSelectionChanged();
2044 :
2045 0 : return 0;
2046 : }
2047 :
2048 0 : void CustomAnimationPane::moveSelection( bool bUp )
2049 : {
2050 0 : if( maListSelection.empty() )
2051 0 : return;
2052 :
2053 0 : EffectSequenceHelper* pSequence = maListSelection.front()->getEffectSequence();
2054 0 : if( pSequence == 0 )
2055 0 : return;
2056 :
2057 0 : addUndo();
2058 :
2059 0 : bool bChanged = false;
2060 :
2061 0 : MainSequenceRebuildGuard aGuard( mpMainSequence );
2062 0 : EffectSequence& rEffectSequence = pSequence->getSequence();
2063 :
2064 0 : if( bUp )
2065 : {
2066 0 : EffectSequence::iterator aIter( maListSelection.begin() );
2067 0 : const EffectSequence::iterator aEnd( maListSelection.end() );
2068 :
2069 0 : while( aIter != aEnd )
2070 : {
2071 0 : CustomAnimationEffectPtr pEffect = (*aIter++);
2072 :
2073 0 : EffectSequence::iterator aUpEffectPos( pSequence->find( pEffect ) );
2074 0 : if( aUpEffectPos != rEffectSequence.end() )
2075 : {
2076 0 : EffectSequence::iterator aInsertPos( rEffectSequence.erase( aUpEffectPos ) );
2077 :
2078 0 : if( aInsertPos != rEffectSequence.begin() )
2079 : {
2080 0 : --aInsertPos;
2081 0 : while( (aInsertPos != rEffectSequence.begin()) && !mpCustomAnimationList->isExpanded(*aInsertPos))
2082 0 : --aInsertPos;
2083 :
2084 0 : rEffectSequence.insert( aInsertPos, pEffect );
2085 : }
2086 : else
2087 : {
2088 0 : rEffectSequence.push_front( pEffect );
2089 : }
2090 0 : bChanged = true;
2091 : }
2092 0 : }
2093 : }
2094 : else
2095 : {
2096 0 : EffectSequence::reverse_iterator aIter( maListSelection.rbegin() );
2097 0 : const EffectSequence::reverse_iterator aEnd( maListSelection.rend() );
2098 :
2099 0 : while( aIter != aEnd )
2100 : {
2101 0 : CustomAnimationEffectPtr pEffect = (*aIter++);
2102 :
2103 0 : EffectSequence::iterator aDownEffectPos( pSequence->find( pEffect ) );
2104 0 : if( aDownEffectPos != rEffectSequence.end() )
2105 : {
2106 0 : EffectSequence::iterator aInsertPos( rEffectSequence.erase( aDownEffectPos ) );
2107 :
2108 0 : if( aInsertPos != rEffectSequence.end() )
2109 : {
2110 0 : ++aInsertPos;
2111 0 : while( (aInsertPos != rEffectSequence.end()) && !mpCustomAnimationList->isExpanded(*aInsertPos))
2112 0 : ++aInsertPos;
2113 :
2114 0 : rEffectSequence.insert( aInsertPos, pEffect );
2115 : }
2116 : else
2117 : {
2118 0 : rEffectSequence.push_back( pEffect );
2119 : }
2120 0 : bChanged = true;
2121 : }
2122 0 : }
2123 : }
2124 :
2125 0 : if( bChanged )
2126 : {
2127 0 : mpMainSequence->rebuild();
2128 0 : updateControls();
2129 0 : mrBase.GetDocShell()->SetModified();
2130 0 : }
2131 : }
2132 :
2133 0 : void CustomAnimationPane::onPreview( bool bForcePreview )
2134 : {
2135 0 : if( !bForcePreview && !mpCBAutoPreview->IsChecked() )
2136 0 : return;
2137 :
2138 0 : if( maListSelection.empty() )
2139 : {
2140 0 : rtl::Reference< MotionPathTag > xMotionPathTag;
2141 0 : MotionPathTagVector::iterator aIter;
2142 0 : for( aIter = maMotionPathTags.begin(); aIter != maMotionPathTags.end(); ++aIter )
2143 : {
2144 0 : if( (*aIter)->isSelected() )
2145 : {
2146 0 : xMotionPathTag = (*aIter);
2147 0 : break;
2148 : }
2149 : }
2150 :
2151 0 : if( xMotionPathTag.is() )
2152 : {
2153 0 : MainSequencePtr pSequence( new MainSequence() );
2154 0 : pSequence->append( xMotionPathTag->getEffect()->clone() );
2155 0 : preview( pSequence->getRootNode() );
2156 : }
2157 : else
2158 : {
2159 0 : Reference< XAnimationNodeSupplier > xNodeSupplier( mxCurrentPage, UNO_QUERY );
2160 0 : if( !xNodeSupplier.is() )
2161 0 : return;
2162 :
2163 0 : preview( xNodeSupplier->getAnimationNode() );
2164 0 : }
2165 : }
2166 : else
2167 : {
2168 0 : MainSequencePtr pSequence( new MainSequence() );
2169 :
2170 0 : EffectSequence::iterator aIter( maListSelection.begin() );
2171 0 : const EffectSequence::iterator aEnd( maListSelection.end() );
2172 :
2173 0 : while( aIter != aEnd )
2174 : {
2175 0 : CustomAnimationEffectPtr pEffect = (*aIter++);
2176 0 : pSequence->append( pEffect->clone() );
2177 0 : }
2178 :
2179 0 : preview( pSequence->getRootNode() );
2180 : }
2181 : }
2182 :
2183 0 : void CustomAnimationPane::preview( const Reference< XAnimationNode >& xAnimationNode )
2184 : {
2185 0 : Reference< XParallelTimeContainer > xRoot = ParallelTimeContainer::create( ::comphelper::getProcessComponentContext() );
2186 0 : Sequence< ::com::sun::star::beans::NamedValue > aUserData( 1 );
2187 0 : aUserData[0].Name = "node-type";
2188 0 : aUserData[0].Value <<= ::com::sun::star::presentation::EffectNodeType::TIMING_ROOT;
2189 0 : xRoot->setUserData( aUserData );
2190 0 : xRoot->appendChild( xAnimationNode );
2191 :
2192 0 : SlideShow::StartPreview( mrBase, mxCurrentPage, xRoot );
2193 0 : }
2194 :
2195 : // ICustomAnimationListController
2196 0 : void CustomAnimationPane::onSelect()
2197 : {
2198 0 : maListSelection = mpCustomAnimationList->getSelection();
2199 0 : updateControls();
2200 0 : markShapesFromSelectedEffects();
2201 0 : }
2202 :
2203 0 : const CustomAnimationPresets& CustomAnimationPane::getPresets (void)
2204 : {
2205 0 : if (mpCustomAnimationPresets == NULL)
2206 0 : mpCustomAnimationPresets = &CustomAnimationPresets::getCustomAnimationPresets();
2207 0 : return *mpCustomAnimationPresets;
2208 : }
2209 :
2210 0 : void CustomAnimationPane::markShapesFromSelectedEffects()
2211 : {
2212 0 : if( !maSelectionLock.isLocked() )
2213 : {
2214 0 : ScopeLockGuard aGuard( maSelectionLock );
2215 : DrawViewShell* pViewShell = dynamic_cast< DrawViewShell* >(
2216 0 : FrameworkHelper::Instance(mrBase)->GetViewShell(FrameworkHelper::msCenterPaneURL).get());
2217 0 : DrawView* pView = pViewShell ? pViewShell->GetDrawView() : NULL;
2218 :
2219 0 : if( pView )
2220 : {
2221 0 : pView->UnmarkAllObj();
2222 0 : EffectSequence::iterator aIter( maListSelection.begin() );
2223 0 : const EffectSequence::iterator aEnd( maListSelection.end() );
2224 0 : while( aIter != aEnd )
2225 : {
2226 0 : CustomAnimationEffectPtr pEffect = (*aIter++);
2227 :
2228 0 : Reference< XShape > xShape( pEffect->getTargetShape() );
2229 0 : SdrObject* pObj = GetSdrObjectFromXShape( xShape );
2230 0 : if( pObj )
2231 0 : pView->MarkObj(pObj, pView->GetSdrPageView(), false, false);
2232 0 : }
2233 0 : }
2234 : }
2235 0 : }
2236 :
2237 0 : void CustomAnimationPane::updatePathFromMotionPathTag( const rtl::Reference< MotionPathTag >& xTag )
2238 : {
2239 0 : MainSequenceRebuildGuard aGuard( mpMainSequence );
2240 0 : if( xTag.is() )
2241 : {
2242 0 : SdrPathObj* pPathObj = xTag->getPathObj();
2243 0 : CustomAnimationEffectPtr pEffect = xTag->getEffect();
2244 0 : if( (pPathObj != 0) && pEffect.get() != 0 )
2245 : {
2246 0 : ::svl::IUndoManager* pManager = mrBase.GetDocShell()->GetUndoManager();
2247 0 : if( pManager )
2248 : {
2249 0 : SdPage* pPage = SdPage::getImplementation( mxCurrentPage );
2250 0 : if( pPage )
2251 0 : pManager->AddUndoAction( new UndoAnimationPath( mrBase.GetDocShell()->GetDoc(), pPage, pEffect->getNode() ) );
2252 : }
2253 :
2254 0 : pEffect->updatePathFromSdrPathObj( *pPathObj );
2255 0 : }
2256 0 : }
2257 0 : }
2258 :
2259 0 : ::vcl::Window * createCustomAnimationPanel( ::vcl::Window* pParent, ViewShellBase& rBase, const css::uno::Reference<css::frame::XFrame>& rxFrame )
2260 : {
2261 0 : ::vcl::Window* pWindow = 0;
2262 :
2263 0 : DrawDocShell* pDocSh = rBase.GetDocShell();
2264 0 : if( pDocSh )
2265 : {
2266 0 : const Size aMinSize( pParent->LogicToPixel( Size( 80, 256 ), MAP_APPFONT ) );
2267 0 : pWindow = new CustomAnimationPane( pParent, rBase, rxFrame, aMinSize );
2268 : }
2269 :
2270 0 : return pWindow;
2271 : }
2272 :
2273 114 : }
2274 :
2275 : /* vim:set shiftwidth=4 softtabstop=4 expandtab: */
|