summaryrefslogtreecommitdiff
path: root/xmloff/source/draw/animimp.cxx
blob: 8a164d2aa5102c5479312c187da8b57cbc4f79cb (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
/* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
/*************************************************************************
 *
 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
 * 
 * Copyright 2000, 2010 Oracle and/or its affiliates.
 *
 * OpenOffice.org - a multi-platform office productivity suite
 *
 * This file is part of OpenOffice.org.
 *
 * OpenOffice.org is free software: you can redistribute it and/or modify
 * it under the terms of the GNU Lesser General Public License version 3
 * only, as published by the Free Software Foundation.
 *
 * OpenOffice.org is distributed in the hope that it will be useful,
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 * GNU Lesser General Public License version 3 for more details
 * (a copy is included in the LICENSE file that accompanied this code).
 *
 * You should have received a copy of the GNU Lesser General Public License
 * version 3 along with OpenOffice.org.  If not, see
 * <http://www.openoffice.org/license.html>
 * for a copy of the LGPLv3 License.
 *
 ************************************************************************/

// MARKER(update_precomp.py): autogen include statement, do not remove
#include "precompiled_xmloff.hxx"

#include <tools/debug.hxx>
#include "unointerfacetouniqueidentifiermapper.hxx"
#include <com/sun/star/lang/XServiceInfo.hpp>
#include <com/sun/star/presentation/AnimationEffect.hpp>
#include <com/sun/star/presentation/AnimationSpeed.hpp>
#include <com/sun/star/beans/XPropertySet.hpp>
#include <com/sun/star/xml/sax/XAttributeList.hpp>

#include <list>
#include <tools/color.hxx>
#include <comphelper/extract.hxx>
#include <xmloff/xmltoken.hxx>
#include <xmloff/xmlimp.hxx>
#include "xmlnmspe.hxx"
#include <xmloff/xmluconv.hxx>
/*
#include <xmloff/xmlement.hxx>
*/
#include <xmloff/nmspmap.hxx>
#include "anim.hxx"
#include "animimp.hxx"

using ::rtl::OUString;
using ::rtl::OUStringBuffer;

using namespace ::std;
using namespace ::cppu;
using namespace ::com::sun::star;
using namespace ::com::sun::star::xml;
using namespace ::com::sun::star::xml::sax;
using namespace ::com::sun::star::uno;
using namespace ::com::sun::star::drawing;
using namespace ::com::sun::star::beans;
using namespace ::com::sun::star::lang;
using namespace ::com::sun::star::presentation;
using namespace ::xmloff::token;

SvXMLEnumMapEntry aXML_AnimationEffect_EnumMap[] =
{
    { XML_NONE,		    EK_none },
    { XML_FADE,		    EK_fade },
    { XML_MOVE,		    EK_move },
    { XML_STRIPES,		EK_stripes },
    { XML_OPEN,		    EK_open },
    { XML_CLOSE,		EK_close },
    { XML_DISSOLVE,	    EK_dissolve },
    { XML_WAVYLINE,	    EK_wavyline },
    { XML_RANDOM,		EK_random },
    { XML_LINES,		EK_lines },
    { XML_LASER,		EK_laser },
    { XML_APPEAR,		EK_appear },
    { XML_HIDE,		    EK_hide },
    { XML_MOVE_SHORT,	EK_move_short },
    { XML_CHECKERBOARD, EK_checkerboard },
    { XML_ROTATE,		EK_rotate },
    { XML_STRETCH,		EK_stretch },
    { XML_TOKEN_INVALID, 0 }
};

SvXMLEnumMapEntry aXML_AnimationDirection_EnumMap[] =
{
    { XML_NONE,			    ED_none },
    { XML_FROM_LEFT,		ED_from_left },
    { XML_FROM_TOP,		    ED_from_top },
    { XML_FROM_RIGHT,		ED_from_right },
    { XML_FROM_BOTTOM,		ED_from_bottom },
    { XML_FROM_CENTER,		ED_from_center },
    { XML_FROM_UPPER_LEFT,	ED_from_upperleft },
    { XML_FROM_UPPER_RIGHT, ED_from_upperright },
    { XML_FROM_LOWER_LEFT,	ED_from_lowerleft },
    { XML_FROM_LOWER_RIGHT, ED_from_lowerright },
    { XML_TO_LEFT,			ED_to_left },
    { XML_TO_TOP,			ED_to_top },
    { XML_TO_RIGHT,		    ED_to_right },
    { XML_TO_BOTTOM,		ED_to_bottom },
    { XML_TO_UPPER_LEFT,	ED_to_upperleft },
    { XML_TO_UPPER_RIGHT,	ED_to_upperright },
    { XML_TO_LOWER_RIGHT,	ED_to_lowerright },
    { XML_TO_LOWER_LEFT,	ED_to_lowerleft },
    { XML_PATH,			    ED_path },
    { XML_SPIRAL_INWARD_LEFT, ED_spiral_inward_left },
    { XML_SPIRAL_INWARD_RIGHT,ED_spiral_inward_right },
    { XML_SPIRAL_OUTWARD_LEFT, ED_spiral_outward_left },
    { XML_SPIRAL_OUTWARD_RIGHT, ED_spiral_outward_right },
    { XML_VERTICAL,		    ED_vertical },
    { XML_HORIZONTAL,		ED_horizontal },
    { XML_TO_CENTER,		ED_to_center },
    { XML_CLOCKWISE,		ED_clockwise },
    { XML_COUNTER_CLOCKWISE,ED_cclockwise },
    { XML_TOKEN_INVALID, 0 }
};

SvXMLEnumMapEntry aXML_AnimationSpeed_EnumMap[] =
{
    { XML_SLOW,	    AnimationSpeed_SLOW },
    { XML_MEDIUM,	AnimationSpeed_MEDIUM },
    { XML_FAST,	    AnimationSpeed_FAST },
    { XML_TOKEN_INVALID, 0 }
};

AnimationEffect ImplSdXMLgetEffect( XMLEffect eKind, XMLEffectDirection eDirection, sal_Int16 nStartScale, sal_Bool /*bIn*/ )
{
    switch( eKind )
    {
    case EK_fade:
        switch( eDirection )
        {
        case ED_from_left:			return AnimationEffect_FADE_FROM_LEFT;
        case ED_from_top:			return AnimationEffect_FADE_FROM_TOP;
        case ED_from_right:			return AnimationEffect_FADE_FROM_RIGHT;
        case ED_from_bottom:		return AnimationEffect_FADE_FROM_BOTTOM;
        case ED_from_center:		return AnimationEffect_FADE_FROM_CENTER;
        case ED_from_upperleft:		return AnimationEffect_FADE_FROM_UPPERLEFT;
        case ED_from_upperright:	return AnimationEffect_FADE_FROM_UPPERRIGHT;
        case ED_from_lowerleft:		return AnimationEffect_FADE_FROM_LOWERLEFT;
        case ED_from_lowerright:	return AnimationEffect_FADE_FROM_LOWERRIGHT;
        case ED_to_center:			return AnimationEffect_FADE_TO_CENTER;
        case ED_clockwise:			return AnimationEffect_CLOCKWISE;
        case ED_cclockwise:			return AnimationEffect_COUNTERCLOCKWISE;
        case ED_spiral_inward_left:	return AnimationEffect_SPIRALIN_LEFT;
        case ED_spiral_inward_right:return AnimationEffect_SPIRALIN_RIGHT;
        case ED_spiral_outward_left:return AnimationEffect_SPIRALOUT_LEFT;
        case ED_spiral_outward_right:return AnimationEffect_SPIRALOUT_RIGHT;
        default:					return AnimationEffect_FADE_FROM_LEFT;
        }
    case EK_move:
        if( nStartScale == 200 )
        {
            return AnimationEffect_ZOOM_OUT_SMALL;
        }
        else if( nStartScale == 50 )
        {
            return AnimationEffect_ZOOM_IN_SMALL;
        }
        else if( nStartScale < 100 )
        {
            switch( eDirection )
            {
            case ED_from_left:			return AnimationEffect_ZOOM_IN_FROM_LEFT;
            case ED_from_top:			return AnimationEffect_ZOOM_IN_FROM_TOP;
            case ED_from_right:			return AnimationEffect_ZOOM_IN_FROM_RIGHT;
            case ED_from_bottom:		return AnimationEffect_ZOOM_IN_FROM_BOTTOM;
            case ED_from_upperleft:		return AnimationEffect_ZOOM_IN_FROM_UPPERLEFT;
            case ED_from_upperright:	return AnimationEffect_ZOOM_IN_FROM_UPPERRIGHT;
            case ED_from_lowerleft:		return AnimationEffect_ZOOM_IN_FROM_LOWERLEFT;
            case ED_from_lowerright:	return AnimationEffect_ZOOM_IN_FROM_LOWERRIGHT;
            case ED_from_center:		return AnimationEffect_ZOOM_IN_FROM_CENTER;
            case ED_spiral_inward_left:	return AnimationEffect_ZOOM_IN_SPIRAL;
            case ED_to_left:			return AnimationEffect_MOVE_TO_LEFT;
            case ED_to_top:				return AnimationEffect_MOVE_TO_TOP;
            case ED_to_right:			return AnimationEffect_MOVE_TO_RIGHT;
            case ED_to_bottom:			return AnimationEffect_MOVE_TO_BOTTOM;
            case ED_to_upperleft:		return AnimationEffect_MOVE_TO_UPPERLEFT;
            case ED_to_upperright:		return AnimationEffect_MOVE_TO_UPPERRIGHT;
            case ED_to_lowerright:		return AnimationEffect_MOVE_TO_LOWERRIGHT;
            case ED_to_lowerleft:		return AnimationEffect_MOVE_TO_LOWERLEFT;
            default:					return AnimationEffect_ZOOM_IN;
            }
        }
        else if( nStartScale > 100 )
        {
            switch( eDirection )
            {
            case ED_from_left:			return AnimationEffect_ZOOM_OUT_FROM_LEFT;
            case ED_from_top:			return AnimationEffect_ZOOM_OUT_FROM_TOP;
            case ED_from_right:			return AnimationEffect_ZOOM_OUT_FROM_RIGHT;
            case ED_from_bottom:		return AnimationEffect_ZOOM_OUT_FROM_BOTTOM;
            case ED_from_upperleft:		return AnimationEffect_ZOOM_OUT_FROM_UPPERLEFT;
            case ED_from_upperright:	return AnimationEffect_ZOOM_OUT_FROM_UPPERRIGHT;
            case ED_from_lowerleft:		return AnimationEffect_ZOOM_OUT_FROM_LOWERLEFT;
            case ED_from_lowerright:	return AnimationEffect_ZOOM_OUT_FROM_LOWERRIGHT;
            case ED_from_center:		return AnimationEffect_ZOOM_OUT_FROM_CENTER;
            case ED_spiral_inward_left:	return AnimationEffect_ZOOM_OUT_SPIRAL;
            default:					return AnimationEffect_ZOOM_OUT;
            }			
        }
        else
        {
            switch( eDirection )
            {
            case ED_from_left:			return AnimationEffect_MOVE_FROM_LEFT;
            case ED_from_top:			return AnimationEffect_MOVE_FROM_TOP;
            case ED_from_right:			return AnimationEffect_MOVE_FROM_RIGHT;
            case ED_from_bottom:		return AnimationEffect_MOVE_FROM_BOTTOM;
            case ED_from_upperleft:		return AnimationEffect_MOVE_FROM_UPPERLEFT;
            case ED_from_upperright:	return AnimationEffect_MOVE_FROM_UPPERRIGHT;
            case ED_from_lowerleft:		return AnimationEffect_MOVE_FROM_LOWERLEFT;
            case ED_from_lowerright:	return AnimationEffect_MOVE_FROM_LOWERRIGHT;
            case ED_path:				return AnimationEffect_PATH;
            case ED_to_top:				return AnimationEffect_MOVE_TO_TOP;
            case ED_to_right:			return AnimationEffect_MOVE_TO_RIGHT;
            case ED_to_bottom:			return AnimationEffect_MOVE_TO_BOTTOM;
            case ED_to_upperleft:		return AnimationEffect_MOVE_TO_UPPERLEFT;
            case ED_to_upperright:		return AnimationEffect_MOVE_TO_UPPERRIGHT;
            case ED_to_lowerright:		return AnimationEffect_MOVE_TO_LOWERRIGHT;
            case ED_to_lowerleft:		return AnimationEffect_MOVE_TO_LOWERLEFT;
            default:
                break;
            }
        }
        return AnimationEffect_MOVE_FROM_LEFT;
    case EK_stripes:
        if( eDirection == ED_vertical )
            return AnimationEffect_VERTICAL_STRIPES;
        else
            return AnimationEffect_HORIZONTAL_STRIPES;
    case EK_open:
        if( eDirection == ED_vertical )
            return AnimationEffect_OPEN_VERTICAL;
        else
            return AnimationEffect_OPEN_HORIZONTAL;
    case EK_close:
        if( eDirection == ED_vertical )
            return AnimationEffect_CLOSE_VERTICAL;
        else
            return AnimationEffect_CLOSE_HORIZONTAL;
    case EK_dissolve:
        return AnimationEffect_DISSOLVE;
    case EK_wavyline:
        switch( eDirection )
        {
        case ED_from_left:			return AnimationEffect_WAVYLINE_FROM_LEFT;
        case ED_from_top:			return AnimationEffect_WAVYLINE_FROM_TOP;
        case ED_from_right:			return AnimationEffect_WAVYLINE_FROM_RIGHT;
        case ED_from_bottom:		return AnimationEffect_WAVYLINE_FROM_BOTTOM;
        default:					return AnimationEffect_WAVYLINE_FROM_LEFT;
        }
    case EK_random:
        return AnimationEffect_RANDOM;
    case EK_lines:
        if( eDirection == ED_vertical )
            return AnimationEffect_VERTICAL_LINES;
        else
            return AnimationEffect_HORIZONTAL_LINES;
    case EK_laser:
        switch( eDirection )
        {
        case ED_from_left:			return AnimationEffect_LASER_FROM_LEFT;
        case ED_from_top:			return AnimationEffect_LASER_FROM_TOP;
        case ED_from_right:			return AnimationEffect_LASER_FROM_RIGHT;
        case ED_from_bottom:		return AnimationEffect_LASER_FROM_BOTTOM;
        case ED_from_upperleft:		return AnimationEffect_LASER_FROM_UPPERLEFT;
        case ED_from_upperright:	return AnimationEffect_LASER_FROM_UPPERRIGHT;
        case ED_from_lowerleft:		return AnimationEffect_LASER_FROM_LOWERLEFT;
        case ED_from_lowerright:	return AnimationEffect_LASER_FROM_LOWERRIGHT;
        default:					return AnimationEffect_LASER_FROM_LEFT;
        }
    case EK_appear:
        return AnimationEffect_APPEAR;
    case EK_hide:
        return AnimationEffect_HIDE;
    case EK_move_short:
        switch( eDirection )
        {
        case ED_from_left:			return AnimationEffect_MOVE_SHORT_FROM_LEFT;
        case ED_from_top:			return AnimationEffect_MOVE_SHORT_FROM_TOP;
        case ED_from_right:			return AnimationEffect_MOVE_SHORT_FROM_RIGHT;
        case ED_from_bottom:		return AnimationEffect_MOVE_SHORT_FROM_BOTTOM;
        case ED_from_upperleft:		return AnimationEffect_MOVE_SHORT_FROM_UPPERLEFT;
        case ED_from_upperright:	return AnimationEffect_MOVE_SHORT_FROM_UPPERRIGHT;
        case ED_from_lowerleft:		return AnimationEffect_MOVE_SHORT_FROM_LOWERLEFT;
        case ED_from_lowerright:	return AnimationEffect_MOVE_SHORT_FROM_LOWERRIGHT;
        case ED_to_left:			return AnimationEffect_MOVE_SHORT_TO_LEFT;
        case ED_to_upperleft:		return AnimationEffect_MOVE_SHORT_TO_UPPERLEFT;
        case ED_to_top:				return AnimationEffect_MOVE_SHORT_TO_TOP;
        case ED_to_upperright:		return AnimationEffect_MOVE_SHORT_TO_UPPERRIGHT;
        case ED_to_right:			return AnimationEffect_MOVE_SHORT_TO_RIGHT;
        case ED_to_lowerright:		return AnimationEffect_MOVE_SHORT_TO_LOWERRIGHT;
        case ED_to_bottom:			return AnimationEffect_MOVE_SHORT_TO_BOTTOM;
        case ED_to_lowerleft:		return AnimationEffect_MOVE_SHORT_TO_LOWERLEFT;
        default:					return AnimationEffect_MOVE_SHORT_FROM_LEFT;
        }
    case EK_checkerboard:
        if( eDirection == ED_vertical )
            return AnimationEffect_VERTICAL_CHECKERBOARD;
        else
            return AnimationEffect_HORIZONTAL_CHECKERBOARD;
    case EK_rotate:
        if( eDirection == ED_vertical )
            return AnimationEffect_VERTICAL_ROTATE;
        else
            return AnimationEffect_HORIZONTAL_ROTATE;
    case EK_stretch:
        switch( eDirection )
        {
        case ED_from_left:			return AnimationEffect_STRETCH_FROM_LEFT;
        case ED_from_top:			return AnimationEffect_STRETCH_FROM_TOP;
        case ED_from_right:			return AnimationEffect_STRETCH_FROM_RIGHT;
        case ED_from_bottom:		return AnimationEffect_STRETCH_FROM_BOTTOM;
        case ED_from_upperleft:		return AnimationEffect_STRETCH_FROM_UPPERLEFT;
        case ED_from_upperright:	return AnimationEffect_STRETCH_FROM_UPPERRIGHT;
        case ED_from_lowerleft:		return AnimationEffect_STRETCH_FROM_LOWERLEFT;
        case ED_from_lowerright:	return AnimationEffect_STRETCH_FROM_LOWERRIGHT;
        case ED_vertical:			return AnimationEffect_VERTICAL_STRETCH;
        case ED_horizontal:			return AnimationEffect_HORIZONTAL_STRETCH;
        default:
            break;
        }
        return AnimationEffect_STRETCH_FROM_LEFT;
    default:
        return AnimationEffect_NONE;
    }
}

///////////////////////////////////////////////////////////////////////

class AnimImpImpl
{
public:
    Reference< XPropertySet > mxLastShape;
    OUString maLastShapeId;

    OUString msDimColor;
    OUString msDimHide;
    OUString msDimPrev;
    OUString msEffect;
    OUString msPlayFull;
    OUString msPresOrder;
    OUString msSound;
    OUString msSoundOn;
    OUString msSpeed;
    OUString msTextEffect;
    OUString msPresShapeService;
    OUString msAnimPath;
    OUString msIsAnimation;

    AnimImpImpl()
    :	msDimColor( RTL_CONSTASCII_USTRINGPARAM( "DimColor" ) ),
        msDimHide( RTL_CONSTASCII_USTRINGPARAM( "DimHide" ) ),
        msDimPrev( RTL_CONSTASCII_USTRINGPARAM( "DimPrevious" ) ),
        msEffect( RTL_CONSTASCII_USTRINGPARAM( "Effect" ) ),
        msPlayFull( RTL_CONSTASCII_USTRINGPARAM( "PlayFull" ) ),
        msPresOrder( RTL_CONSTASCII_USTRINGPARAM( "PresentationOrder" ) ),
        msSound( RTL_CONSTASCII_USTRINGPARAM( "Sound" ) ),
        msSoundOn( RTL_CONSTASCII_USTRINGPARAM( "SoundOn" ) ),
        msSpeed( RTL_CONSTASCII_USTRINGPARAM( "Speed" ) ),
        msTextEffect( RTL_CONSTASCII_USTRINGPARAM( "TextEffect" ) ),
        msPresShapeService( RTL_CONSTASCII_USTRINGPARAM( "com.sun.star.presentation.Shape" ) ),
        msAnimPath( RTL_CONSTASCII_USTRINGPARAM( "AnimationPath" ) ),
        msIsAnimation( RTL_CONSTASCII_USTRINGPARAM( "IsAnimation" ) )
    {}
};

///////////////////////////////////////////////////////////////////////

enum XMLActionKind
{
    XMLE_SHOW,
    XMLE_HIDE,
    XMLE_DIM,
    XMLE_PLAY
};

class XMLAnimationsEffectContext : public SvXMLImportContext
{
public:
    AnimImpImpl*	mpImpl;

    XMLActionKind	meKind;
    sal_Bool		mbTextEffect;
    OUString		maShapeId;

    XMLEffect		meEffect;
    XMLEffectDirection	meDirection;
    sal_Int16		mnStartScale;

    AnimationSpeed	meSpeed;
    Color			maDimColor;
    OUString		maSoundURL;
    sal_Bool		mbPlayFull;
    OUString		maPathShapeId;

public:
    TYPEINFO();

    XMLAnimationsEffectContext( SvXMLImport& rImport,
        sal_uInt16 nPrfx,
        const OUString& rLocalName,
        const Reference< XAttributeList >& xAttrList,
        AnimImpImpl* pImpl);
    virtual ~XMLAnimationsEffectContext();

    virtual void EndElement();

    virtual SvXMLImportContext * CreateChildContext( USHORT nPrefix, const OUString& rLocalName,
        const Reference< XAttributeList >& xAttrList );
};

class XMLAnimationsSoundContext : public SvXMLImportContext
{
    XMLAnimationsEffectContext*	mpParent;

public:
    TYPEINFO();

    XMLAnimationsSoundContext( SvXMLImport& rImport, sal_uInt16 nPrfx, const OUString& rLocalName, const Reference< XAttributeList >& xAttrList, XMLAnimationsEffectContext* pParent );
    virtual ~XMLAnimationsSoundContext();
};

TYPEINIT1( XMLAnimationsSoundContext, SvXMLImportContext );

XMLAnimationsSoundContext::XMLAnimationsSoundContext( SvXMLImport& rImport, sal_uInt16 nPrfx, const OUString& rLocalName, const Reference< XAttributeList >& xAttrList, XMLAnimationsEffectContext* pParent )
: SvXMLImportContext( rImport, nPrfx, rLocalName ), mpParent( pParent )
{
    if( mpParent && nPrfx == XML_NAMESPACE_PRESENTATION && IsXMLToken( rLocalName, XML_SOUND ) )
    {
        const sal_Int16 nAttrCount = xAttrList.is() ? xAttrList->getLength() : 0;
        for(sal_Int16 i=0; i < nAttrCount; i++)
        {
            OUString sAttrName = xAttrList->getNameByIndex( i );
            OUString aLocalName;
            sal_uInt16 nPrefix = GetImport().GetNamespaceMap().GetKeyByAttrName( sAttrName, &aLocalName );
            OUString sValue = xAttrList->getValueByIndex( i );

            switch( nPrefix )
            {
            case XML_NAMESPACE_XLINK:
                if( IsXMLToken( aLocalName, XML_HREF ) )
                {
                    mpParent->maSoundURL = rImport.GetAbsoluteReference(sValue);
                }
                break;
            case XML_NAMESPACE_PRESENTATION:
                if( IsXMLToken( aLocalName, XML_PLAY_FULL ) )
                {
                    mpParent->mbPlayFull = IsXMLToken( sValue, XML_TRUE );
                }
            }
        }
    }
}

XMLAnimationsSoundContext::~XMLAnimationsSoundContext()
{
}


TYPEINIT1( XMLAnimationsEffectContext, SvXMLImportContext );

XMLAnimationsEffectContext::XMLAnimationsEffectContext( SvXMLImport& rImport,  sal_uInt16 nPrfx, const OUString& rLocalName,  const Reference< XAttributeList >& xAttrList, AnimImpImpl* pImpl )
:	SvXMLImportContext(rImport, nPrfx, rLocalName),
    mpImpl( pImpl ),
    meKind( XMLE_SHOW ), mbTextEffect( sal_False ),
    meEffect( EK_none ), meDirection( ED_none ), mnStartScale( 100 ),
    meSpeed( AnimationSpeed_MEDIUM ), maDimColor(0), mbPlayFull( sal_False )
{
    if( IsXMLToken( rLocalName, XML_SHOW_SHAPE ) )
    {
        meKind = XMLE_SHOW;
    }
    else if( IsXMLToken( rLocalName, XML_SHOW_TEXT ) )
    {
        meKind = XMLE_SHOW;
        mbTextEffect = sal_True;
    }
    else if( IsXMLToken( rLocalName, XML_HIDE_SHAPE ) )
    {
        meKind = XMLE_HIDE;
    }
    else if( IsXMLToken( rLocalName, XML_HIDE_TEXT ) )
    {
        meKind = XMLE_HIDE;
        mbTextEffect = sal_True;
    }
    else if( IsXMLToken( rLocalName, XML_DIM ) )
    {
        meKind = XMLE_DIM;
    }
    else if( IsXMLToken( rLocalName, XML_PLAY ) )
    {
        meKind = XMLE_PLAY;
    }
    else
    {
        // unknown action, overread
        return;
    }

    // read attributes
    const sal_Int16 nAttrCount = xAttrList.is() ? xAttrList->getLength() : 0;
    for(sal_Int16 i=0; i < nAttrCount; i++)
    {
        OUString sAttrName = xAttrList->getNameByIndex( i );
        OUString aLocalName;
        sal_uInt16 nPrefix = GetImport().GetNamespaceMap().GetKeyByAttrName( sAttrName, &aLocalName );
        OUString sValue = xAttrList->getValueByIndex( i );

        switch( nPrefix )
        {
        case XML_NAMESPACE_DRAW:
            if( IsXMLToken( aLocalName, XML_SHAPE_ID ) )
            {
                maShapeId = sValue;
            }
            else if( IsXMLToken( aLocalName, XML_COLOR ) )
            {
                SvXMLUnitConverter::convertColor(maDimColor, sValue);
            }
            break;

        case XML_NAMESPACE_PRESENTATION:
            if( IsXMLToken( aLocalName, XML_EFFECT ) )
            {
                USHORT eEnum;
                if( SvXMLUnitConverter::convertEnum( eEnum, sValue, aXML_AnimationEffect_EnumMap ) )
                    meEffect = (XMLEffect)eEnum;
            }
            else if( IsXMLToken(aLocalName, XML_DIRECTION ) )
            {
                USHORT eEnum;
                if( SvXMLUnitConverter::convertEnum( eEnum, sValue, aXML_AnimationDirection_EnumMap ) )
                    meDirection = (XMLEffectDirection)eEnum;
            }
            else if( IsXMLToken( aLocalName, XML_START_SCALE ) )
            {
                sal_Int32 nScale;
                if( SvXMLUnitConverter::convertPercent( nScale, sValue ) )
                    mnStartScale = (sal_Int16)nScale;
            }
            else if( IsXMLToken( aLocalName, XML_SPEED ) )
            {
                USHORT eEnum;
                if( SvXMLUnitConverter::convertEnum( eEnum, sValue, aXML_AnimationSpeed_EnumMap ) )
                    meSpeed = (AnimationSpeed)eEnum;
            }
            else if( IsXMLToken( aLocalName, XML_PATH_ID ) )
            {
                maPathShapeId = sValue;
            }
            break;
        }
    }
}

XMLAnimationsEffectContext::~XMLAnimationsEffectContext()
{
}

SvXMLImportContext * XMLAnimationsEffectContext::CreateChildContext( USHORT nPrefix, const OUString& rLocalName, const Reference< XAttributeList>& xAttrList )
{
    return new XMLAnimationsSoundContext( GetImport(), nPrefix, rLocalName, xAttrList, this );
}

void XMLAnimationsEffectContext::EndElement()
{
    // set effect on shape

    try
    {
        UniReference< XMLShapeImportHelper > xShapeImport( GetImport().GetShapeImport() );
        Any aAny;

        if( maShapeId.getLength() )
        {
            Reference< XPropertySet > xSet;
            if( mpImpl->maLastShapeId != maShapeId )
            {
                xSet = Reference< XPropertySet >::query( GetImport().getInterfaceToIdentifierMapper().getReference( maShapeId ) );
                if( xSet.is() )
                {
                    // check for presentation shape service
                    {
                        Reference< XServiceInfo > xServiceInfo( xSet, UNO_QUERY );
                        if( !xServiceInfo.is() || !xServiceInfo->supportsService( mpImpl->msPresShapeService ) )
                            return;
                    }

                    mpImpl->maLastShapeId = maShapeId;
                    mpImpl->mxLastShape = xSet;
                }
            }
            else
            {
                xSet = mpImpl->mxLastShape;
            }

            if( xSet.is() )
            {
                if( meKind == XMLE_DIM )
                {
                    aAny <<= (sal_Bool)sal_True;
                    xSet->setPropertyValue( mpImpl->msDimPrev, aAny );

                    aAny <<= (sal_Int32)maDimColor.GetColor();
                    xSet->setPropertyValue( mpImpl->msDimColor, aAny );
                }
                else if( meKind == XMLE_PLAY )
                {
                    aAny <<= (sal_Bool)sal_True;
                    xSet->setPropertyValue( mpImpl->msIsAnimation, aAny );

                    aAny <<= meSpeed;
                    xSet->setPropertyValue( mpImpl->msSpeed, aAny );
                }
                else
                {
                    if( meKind == XMLE_HIDE && !mbTextEffect && meEffect == EK_none )
                    {
                        aAny = bool2any( sal_True );
                        xSet->setPropertyValue( mpImpl->msDimHide, aAny );
                    }
                    else
                    {
                        const AnimationEffect eEffect = ImplSdXMLgetEffect( meEffect, meDirection, mnStartScale, meKind == XMLE_SHOW );

                        xSet->setPropertyValue( mbTextEffect ? mpImpl->msTextEffect : mpImpl->msEffect, makeAny( eEffect ) );
                        xSet->setPropertyValue( mpImpl->msSpeed, makeAny( meSpeed ) );

                        if( eEffect == AnimationEffect_PATH && maPathShapeId.getLength() )
                        {
                            Reference< XShape > xPath( GetImport().getInterfaceToIdentifierMapper().getReference( maPathShapeId ), UNO_QUERY );
                            if( xPath.is() )
                                xSet->setPropertyValue( mpImpl->msAnimPath, makeAny( xPath ) );
                        }
                    }
                }
            }
            if( maSoundURL.getLength() != 0 )
            {
                if( xSet.is() )
                {
                    aAny <<= maSoundURL;
                    xSet->setPropertyValue( mpImpl->msSound, aAny );

                    aAny <<= bool2any( mbPlayFull );
                    xSet->setPropertyValue( mpImpl->msPlayFull, aAny );

                    aAny <<= bool2any( sal_True );
                    xSet->setPropertyValue( mpImpl->msSoundOn, aAny );
                }
                else
                {
                    DBG_ERROR("XMLAnimationsEffectContext::EndElement - Sound URL without a XPropertySet!");
                }
            }
        }
    }
    catch( Exception e )
    {
        DBG_ERROR( "exception catched while importing animation information!" );
    }
}

///////////////////////////////////////////////////////////////////////

TYPEINIT1( XMLAnimationsContext, SvXMLImportContext );

XMLAnimationsContext::XMLAnimationsContext( SvXMLImport& rImport, sal_uInt16 nPrfx,	const rtl::OUString& rLocalName,
        const com::sun::star::uno::Reference< com::sun::star::xml::sax::XAttributeList>& )
: SvXMLImportContext(rImport, nPrfx, rLocalName)
{
    mpImpl = new AnimImpImpl();
}

XMLAnimationsContext::~XMLAnimationsContext()
{
    delete mpImpl;
}

SvXMLImportContext * XMLAnimationsContext::CreateChildContext( USHORT nPrefix, const ::rtl::OUString& rLocalName,
        const com::sun::star::uno::Reference< com::sun::star::xml::sax::XAttributeList>& xAttrList )
{
    return new XMLAnimationsEffectContext( GetImport(), nPrefix, rLocalName,  xAttrList, mpImpl );
}

/* vim:set shiftwidth=4 softtabstop=4 expandtab: */