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