LCOV - code coverage report
Current view: top level - libreoffice/oox/source/ppt - commontimenodecontext.cxx (source / functions) Hit Total Coverage
Test: libreoffice_filtered.info Lines: 48 182 26.4 %
Date: 2012-12-17 Functions: 6 8 75.0 %
Legend: Lines: hit not hit

          Line data    Source code
       1             : /* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
       2             : /*
       3             :  * This file is part of the LibreOffice project.
       4             :  *
       5             :  * This Source Code Form is subject to the terms of the Mozilla Public
       6             :  * License, v. 2.0. If a copy of the MPL was not distributed with this
       7             :  * file, You can obtain one at http://mozilla.org/MPL/2.0/.
       8             :  *
       9             :  * This file incorporates work covered by the following license notice:
      10             :  *
      11             :  *   Licensed to the Apache Software Foundation (ASF) under one or more
      12             :  *   contributor license agreements. See the NOTICE file distributed
      13             :  *   with this work for additional information regarding copyright
      14             :  *   ownership. The ASF licenses this file to you under the Apache
      15             :  *   License, Version 2.0 (the "License"); you may not use this file
      16             :  *   except in compliance with the License. You may obtain a copy of
      17             :  *   the License at http://www.apache.org/licenses/LICENSE-2.0 .
      18             :  */
      19             : 
      20             : #include "commontimenodecontext.hxx"
      21             : 
      22             : #include <algorithm>
      23             : 
      24             : #include "comphelper/anytostring.hxx"
      25             : #include "cppuhelper/exc_hlp.hxx"
      26             : #include <osl/diagnose.h>
      27             : 
      28             : #include <com/sun/star/animations/XTimeContainer.hpp>
      29             : #include <com/sun/star/animations/XAnimationNode.hpp>
      30             : #include <com/sun/star/animations/AnimationFill.hpp>
      31             : #include <com/sun/star/animations/AnimationRestart.hpp>
      32             : #include <com/sun/star/presentation/TextAnimationType.hpp>
      33             : #include <com/sun/star/presentation/EffectPresetClass.hpp>
      34             : #include <com/sun/star/presentation/EffectNodeType.hpp>
      35             : 
      36             : #include "oox/helper/attributelist.hxx"
      37             : #include "oox/core/fragmenthandler.hxx"
      38             : #include "oox/ppt/pptimport.hxx"
      39             : #include "oox/drawingml/drawingmltypes.hxx"
      40             : 
      41             : #include "animationtypes.hxx"
      42             : 
      43             : using namespace ::oox::core;
      44             : using namespace ::com::sun::star::uno;
      45             : using namespace ::com::sun::star::animations;
      46             : using namespace ::com::sun::star::presentation;
      47             : using namespace ::com::sun::star::xml::sax;
      48             : 
      49             : 
      50             : using ::rtl::OUString;
      51             : using ::com::sun::star::beans::NamedValue;
      52             : 
      53             : namespace oox { namespace ppt {
      54             : 
      55             : // BEGIN CUT&PASTE from sd/source/filter/ppt/pptanimations.hxx
      56             : struct convert_subtype
      57             : {
      58             :     sal_Int32 mnID;
      59             :     const sal_Char* mpStrSubType;
      60             : };
      61             : static const convert_subtype gConvertArray[] =
      62             : {
      63             :     // fly in
      64             :     {   1, "from-top" },
      65             :     {   2, "from-right" },
      66             :     {   3, "from-top-right" },
      67             :     {   4, "from-bottom" },
      68             :     {   5, "horizontal" },
      69             :     {   6, "from-bottom-right" },
      70             :     {   8, "from-left" },
      71             :     {   9, "from-top-left" },
      72             :     {  10, "vertical" },
      73             :     {  12, "from-bottom-left" },
      74             :     {  16, "in" },
      75             :     {  21, "vertical-in" },
      76             :     {  26, "horizontal-in" },
      77             :     {  32, "out" },
      78             :     {  36, "out-from-screen-center" },
      79             :     {  37, "vertical-out" },
      80             :     {  42, "horizontal-out" },
      81             :     {  272, "in-slightly" },
      82             :     {  288, "out-slightly" },
      83             :     {  528, "in-from-screen-center" },
      84             :     {  0, 0 }
      85             : };
      86             : 
      87             : 
      88             : struct preset_maping
      89             : {
      90             :     sal_Int32   mnPresetClass;
      91             :     sal_Int32   mnPresetId;
      92             :     const sal_Char* mpStrPresetId;
      93             : };
      94             : 
      95             : static const preset_maping gPresetMaping[] =
      96             : {
      97             :     { ::com::sun::star::presentation::EffectPresetClass::ENTRANCE, 1    ,"ooo-entrance-appear" },
      98             :     { ::com::sun::star::presentation::EffectPresetClass::ENTRANCE, 2    ,"ooo-entrance-fly-in" },
      99             :     { ::com::sun::star::presentation::EffectPresetClass::ENTRANCE, 3    ,"ooo-entrance-venetian-blinds" },
     100             :     { ::com::sun::star::presentation::EffectPresetClass::ENTRANCE, 4    ,"ooo-entrance-box" },
     101             :     { ::com::sun::star::presentation::EffectPresetClass::ENTRANCE, 5    ,"ooo-entrance-checkerboard" },
     102             :     { ::com::sun::star::presentation::EffectPresetClass::ENTRANCE, 6    ,"ooo-entrance-circle" },
     103             :     { ::com::sun::star::presentation::EffectPresetClass::ENTRANCE, 7    ,"ooo-entrance-fly-in-slow" },
     104             :     { ::com::sun::star::presentation::EffectPresetClass::ENTRANCE, 8    ,"ooo-entrance-diamond" },
     105             :     { ::com::sun::star::presentation::EffectPresetClass::ENTRANCE, 9    ,"ooo-entrance-dissolve-in" },
     106             :     { ::com::sun::star::presentation::EffectPresetClass::ENTRANCE, 10   ,"ooo-entrance-fade-in" },
     107             :     { ::com::sun::star::presentation::EffectPresetClass::ENTRANCE, 11   ,"ooo-entrance-flash-once" },
     108             :     { ::com::sun::star::presentation::EffectPresetClass::ENTRANCE, 12   ,"ooo-entrance-peek-in" },
     109             :     { ::com::sun::star::presentation::EffectPresetClass::ENTRANCE, 13   ,"ooo-entrance-plus" },
     110             :     { ::com::sun::star::presentation::EffectPresetClass::ENTRANCE, 14   ,"ooo-entrance-random-bars" },
     111             :     { ::com::sun::star::presentation::EffectPresetClass::ENTRANCE, 15   ,"ooo-entrance-spiral-in" },
     112             :     { ::com::sun::star::presentation::EffectPresetClass::ENTRANCE, 16   ,"ooo-entrance-split" },
     113             :     { ::com::sun::star::presentation::EffectPresetClass::ENTRANCE, 17   ,"ooo-entrance-stretchy" },
     114             :     { ::com::sun::star::presentation::EffectPresetClass::ENTRANCE, 18   ,"ooo-entrance-diagonal-squares" },
     115             :     { ::com::sun::star::presentation::EffectPresetClass::ENTRANCE, 19   ,"ooo-entrance-swivel" },
     116             :     { ::com::sun::star::presentation::EffectPresetClass::ENTRANCE, 20   ,"ooo-entrance-wedge" },
     117             :     { ::com::sun::star::presentation::EffectPresetClass::ENTRANCE, 21   ,"ooo-entrance-wheel" },
     118             :     { ::com::sun::star::presentation::EffectPresetClass::ENTRANCE, 22   ,"ooo-entrance-wipe" },
     119             :     { ::com::sun::star::presentation::EffectPresetClass::ENTRANCE, 23   ,"ooo-entrance-zoom" },
     120             :     { ::com::sun::star::presentation::EffectPresetClass::ENTRANCE, 24   ,"ooo-entrance-random" },
     121             :     { ::com::sun::star::presentation::EffectPresetClass::ENTRANCE, 25   ,"ooo-entrance-boomerang" },
     122             :     { ::com::sun::star::presentation::EffectPresetClass::ENTRANCE, 26   ,"ooo-entrance-bounce" },
     123             :     { ::com::sun::star::presentation::EffectPresetClass::ENTRANCE, 27   ,"ooo-entrance-colored-lettering" },
     124             :     { ::com::sun::star::presentation::EffectPresetClass::ENTRANCE, 28   ,"ooo-entrance-movie-credits" },
     125             :     { ::com::sun::star::presentation::EffectPresetClass::ENTRANCE, 29   ,"ooo-entrance-ease-in" },
     126             :     { ::com::sun::star::presentation::EffectPresetClass::ENTRANCE, 30   ,"ooo-entrance-float" },
     127             :     { ::com::sun::star::presentation::EffectPresetClass::ENTRANCE, 31   ,"ooo-entrance-turn-and-grow" },
     128             :     { ::com::sun::star::presentation::EffectPresetClass::ENTRANCE, 34   ,"ooo-entrance-breaks" },
     129             :     { ::com::sun::star::presentation::EffectPresetClass::ENTRANCE, 35   ,"ooo-entrance-pinwheel" },
     130             :     { ::com::sun::star::presentation::EffectPresetClass::ENTRANCE, 37   ,"ooo-entrance-rise-up" },
     131             :     { ::com::sun::star::presentation::EffectPresetClass::ENTRANCE, 38   ,"ooo-entrance-falling-in" },
     132             :     { ::com::sun::star::presentation::EffectPresetClass::ENTRANCE, 39   ,"ooo-entrance-thread" },
     133             :     { ::com::sun::star::presentation::EffectPresetClass::ENTRANCE, 40   ,"ooo-entrance-unfold" },
     134             :     { ::com::sun::star::presentation::EffectPresetClass::ENTRANCE, 41   ,"ooo-entrance-whip" },
     135             :     { ::com::sun::star::presentation::EffectPresetClass::ENTRANCE, 42   ,"ooo-entrance-ascend" },
     136             :     { ::com::sun::star::presentation::EffectPresetClass::ENTRANCE, 43   ,"ooo-entrance-center-revolve" },
     137             :     { ::com::sun::star::presentation::EffectPresetClass::ENTRANCE, 45   ,"ooo-entrance-fade-in-and-swivel" },
     138             :     { ::com::sun::star::presentation::EffectPresetClass::ENTRANCE, 47   ,"ooo-entrance-descend" },
     139             :     { ::com::sun::star::presentation::EffectPresetClass::ENTRANCE, 48   ,"ooo-entrance-sling" },
     140             :     { ::com::sun::star::presentation::EffectPresetClass::ENTRANCE, 49   ,"ooo-entrance-spin-in" },
     141             :     { ::com::sun::star::presentation::EffectPresetClass::ENTRANCE, 50   ,"ooo-entrance-compress" },
     142             :     { ::com::sun::star::presentation::EffectPresetClass::ENTRANCE, 51   ,"ooo-entrance-magnify" },
     143             :     { ::com::sun::star::presentation::EffectPresetClass::ENTRANCE, 52   ,"ooo-entrance-curve-up" },
     144             :     { ::com::sun::star::presentation::EffectPresetClass::ENTRANCE, 53   ,"ooo-entrance-fade-in-and-zoom" },
     145             :     { ::com::sun::star::presentation::EffectPresetClass::ENTRANCE, 54   ,"ooo-entrance-glide" },
     146             :     { ::com::sun::star::presentation::EffectPresetClass::ENTRANCE, 55   ,"ooo-entrance-expand" },
     147             :     { ::com::sun::star::presentation::EffectPresetClass::ENTRANCE, 56   ,"ooo-entrance-flip" },
     148             :     { ::com::sun::star::presentation::EffectPresetClass::ENTRANCE, 58   ,"ooo-entrance-fold" },
     149             :     { ::com::sun::star::presentation::EffectPresetClass::EMPHASIS, 1    ,"ooo-emphasis-fill-color" },
     150             :     { ::com::sun::star::presentation::EffectPresetClass::EMPHASIS, 2    ,"ooo-emphasis-font" },
     151             :     { ::com::sun::star::presentation::EffectPresetClass::EMPHASIS, 3    ,"ooo-emphasis-font-color" },
     152             :     { ::com::sun::star::presentation::EffectPresetClass::EMPHASIS, 4    ,"ooo-emphasis-font-size" },
     153             :     { ::com::sun::star::presentation::EffectPresetClass::EMPHASIS, 5    ,"ooo-emphasis-font-style" },
     154             :     { ::com::sun::star::presentation::EffectPresetClass::EMPHASIS, 6    ,"ooo-emphasis-grow-and-shrink" },
     155             :     { ::com::sun::star::presentation::EffectPresetClass::EMPHASIS, 7    ,"ooo-emphasis-line-color" },
     156             :     { ::com::sun::star::presentation::EffectPresetClass::EMPHASIS, 8    ,"ooo-emphasis-spin" },
     157             :     { ::com::sun::star::presentation::EffectPresetClass::EMPHASIS, 9    ,"ooo-emphasis-transparency" },
     158             :     { ::com::sun::star::presentation::EffectPresetClass::EMPHASIS, 10   ,"ooo-emphasis-bold-flash" },
     159             :     { ::com::sun::star::presentation::EffectPresetClass::EMPHASIS, 14   ,"ooo-emphasis-blast" },
     160             :     { ::com::sun::star::presentation::EffectPresetClass::EMPHASIS, 15   ,"ooo-emphasis-bold-reveal" },
     161             :     { ::com::sun::star::presentation::EffectPresetClass::EMPHASIS, 16   ,"ooo-emphasis-color-over-by-word" },
     162             :     { ::com::sun::star::presentation::EffectPresetClass::EMPHASIS, 18   ,"ooo-emphasis-reveal-underline" },
     163             :     { ::com::sun::star::presentation::EffectPresetClass::EMPHASIS, 19   ,"ooo-emphasis-color-blend" },
     164             :     { ::com::sun::star::presentation::EffectPresetClass::EMPHASIS, 20   ,"ooo-emphasis-color-over-by-letter" },
     165             :     { ::com::sun::star::presentation::EffectPresetClass::EMPHASIS, 21   ,"ooo-emphasis-complementary-color" },
     166             :     { ::com::sun::star::presentation::EffectPresetClass::EMPHASIS, 22   ,"ooo-emphasis-complementary-color-2" },
     167             :     { ::com::sun::star::presentation::EffectPresetClass::EMPHASIS, 23   ,"ooo-emphasis-contrasting-color" },
     168             :     { ::com::sun::star::presentation::EffectPresetClass::EMPHASIS, 24   ,"ooo-emphasis-darken" },
     169             :     { ::com::sun::star::presentation::EffectPresetClass::EMPHASIS, 25   ,"ooo-emphasis-desaturate" },
     170             :     { ::com::sun::star::presentation::EffectPresetClass::EMPHASIS, 26   ,"ooo-emphasis-flash-bulb" },
     171             :     { ::com::sun::star::presentation::EffectPresetClass::EMPHASIS, 27   ,"ooo-emphasis-flicker" },
     172             :     { ::com::sun::star::presentation::EffectPresetClass::EMPHASIS, 28   ,"ooo-emphasis-grow-with-color" },
     173             :     { ::com::sun::star::presentation::EffectPresetClass::EMPHASIS, 30   ,"ooo-emphasis-lighten" },
     174             :     { ::com::sun::star::presentation::EffectPresetClass::EMPHASIS, 31   ,"ooo-emphasis-style-emphasis" },
     175             :     { ::com::sun::star::presentation::EffectPresetClass::EMPHASIS, 32   ,"ooo-emphasis-teeter" },
     176             :     { ::com::sun::star::presentation::EffectPresetClass::EMPHASIS, 33   ,"ooo-emphasis-vertical-highlight" },
     177             :     { ::com::sun::star::presentation::EffectPresetClass::EMPHASIS, 34   ,"ooo-emphasis-wave" },
     178             :     { ::com::sun::star::presentation::EffectPresetClass::EMPHASIS, 35   ,"ooo-emphasis-blink" },
     179             :     { ::com::sun::star::presentation::EffectPresetClass::EMPHASIS, 36   ,"ooo-emphasis-shimmer" },
     180             :     { ::com::sun::star::presentation::EffectPresetClass::EXIT, 1        ,"ooo-exit-disappear" },
     181             :     { ::com::sun::star::presentation::EffectPresetClass::EXIT, 2        ,"ooo-exit-fly-out" },
     182             :     { ::com::sun::star::presentation::EffectPresetClass::EXIT, 3        ,"ooo-exit-venetian-blinds" },
     183             :     { ::com::sun::star::presentation::EffectPresetClass::EXIT, 4        ,"ooo-exit-box" },
     184             :     { ::com::sun::star::presentation::EffectPresetClass::EXIT, 5        ,"ooo-exit-checkerboard" },
     185             :     { ::com::sun::star::presentation::EffectPresetClass::EXIT, 6        ,"ooo-exit-circle" },
     186             :     { ::com::sun::star::presentation::EffectPresetClass::EXIT, 7        ,"ooo-exit-crawl-out" },
     187             :     { ::com::sun::star::presentation::EffectPresetClass::EXIT, 8        ,"ooo-exit-diamond" },
     188             :     { ::com::sun::star::presentation::EffectPresetClass::EXIT, 9        ,"ooo-exit-dissolve" },
     189             :     { ::com::sun::star::presentation::EffectPresetClass::EXIT, 10       ,"ooo-exit-fade-out" },
     190             :     { ::com::sun::star::presentation::EffectPresetClass::EXIT, 11       ,"ooo-exit-flash-once" },
     191             :     { ::com::sun::star::presentation::EffectPresetClass::EXIT, 12       ,"ooo-exit-peek-out" },
     192             :     { ::com::sun::star::presentation::EffectPresetClass::EXIT, 13       ,"ooo-exit-plus" },
     193             :     { ::com::sun::star::presentation::EffectPresetClass::EXIT, 14       ,"ooo-exit-random-bars" },
     194             :     { ::com::sun::star::presentation::EffectPresetClass::EXIT, 15       ,"ooo-exit-spiral-out" },
     195             :     { ::com::sun::star::presentation::EffectPresetClass::EXIT, 16       ,"ooo-exit-split" },
     196             :     { ::com::sun::star::presentation::EffectPresetClass::EXIT, 17       ,"ooo-exit-collapse" },
     197             :     { ::com::sun::star::presentation::EffectPresetClass::EXIT, 18       ,"ooo-exit-diagonal-squares" },
     198             :     { ::com::sun::star::presentation::EffectPresetClass::EXIT, 19       ,"ooo-exit-swivel" },
     199             :     { ::com::sun::star::presentation::EffectPresetClass::EXIT, 20       ,"ooo-exit-wedge" },
     200             :     { ::com::sun::star::presentation::EffectPresetClass::EXIT, 21       ,"ooo-exit-wheel" },
     201             :     { ::com::sun::star::presentation::EffectPresetClass::EXIT, 22       ,"ooo-exit-wipe" },
     202             :     { ::com::sun::star::presentation::EffectPresetClass::EXIT, 23       ,"ooo-exit-zoom" },
     203             :     { ::com::sun::star::presentation::EffectPresetClass::EXIT, 24       ,"ooo-exit-random" },
     204             :     { ::com::sun::star::presentation::EffectPresetClass::EXIT, 25       ,"ooo-exit-boomerang" },
     205             :     { ::com::sun::star::presentation::EffectPresetClass::EXIT, 26       ,"ooo-exit-bounce" },
     206             :     { ::com::sun::star::presentation::EffectPresetClass::EXIT, 27       ,"ooo-exit-colored-lettering" },
     207             :     { ::com::sun::star::presentation::EffectPresetClass::EXIT, 28       ,"ooo-exit-movie-credits" },
     208             :     { ::com::sun::star::presentation::EffectPresetClass::EXIT, 29       ,"ooo-exit-ease-out" },
     209             :     { ::com::sun::star::presentation::EffectPresetClass::EXIT, 30       ,"ooo-exit-float" },
     210             :     { ::com::sun::star::presentation::EffectPresetClass::EXIT, 31       ,"ooo-exit-turn-and-grow" },
     211             :     { ::com::sun::star::presentation::EffectPresetClass::EXIT, 34       ,"ooo-exit-breaks" },
     212             :     { ::com::sun::star::presentation::EffectPresetClass::EXIT, 35       ,"ooo-exit-pinwheel" },
     213             :     { ::com::sun::star::presentation::EffectPresetClass::EXIT, 37       ,"ooo-exit-sink-down" },
     214             :     { ::com::sun::star::presentation::EffectPresetClass::EXIT, 38       ,"ooo-exit-swish" },
     215             :     { ::com::sun::star::presentation::EffectPresetClass::EXIT, 39       ,"ooo-exit-thread" },
     216             :     { ::com::sun::star::presentation::EffectPresetClass::EXIT, 40       ,"ooo-exit-unfold" },
     217             :     { ::com::sun::star::presentation::EffectPresetClass::EXIT, 41       ,"ooo-exit-whip" },
     218             :     { ::com::sun::star::presentation::EffectPresetClass::EXIT, 42       ,"ooo-exit-descend" },
     219             :     { ::com::sun::star::presentation::EffectPresetClass::EXIT, 43       ,"ooo-exit-center-revolve" },
     220             :     { ::com::sun::star::presentation::EffectPresetClass::EXIT, 45       ,"ooo-exit-fade-out-and-swivel" },
     221             :     { ::com::sun::star::presentation::EffectPresetClass::EXIT, 47       ,"ooo-exit-ascend" },
     222             :     { ::com::sun::star::presentation::EffectPresetClass::EXIT, 48       ,"ooo-exit-sling" },
     223             :     { ::com::sun::star::presentation::EffectPresetClass::EXIT, 53       ,"ooo-exit-fade-out-and-zoom" },
     224             :     { ::com::sun::star::presentation::EffectPresetClass::EXIT, 55       ,"ooo-exit-contract" },
     225             :     { ::com::sun::star::presentation::EffectPresetClass::EXIT, 49       ,"ooo-exit-spin-out" },
     226             :     { ::com::sun::star::presentation::EffectPresetClass::EXIT, 50       ,"ooo-exit-stretchy" },
     227             :     { ::com::sun::star::presentation::EffectPresetClass::EXIT, 51       ,"ooo-exit-magnify" },
     228             :     { ::com::sun::star::presentation::EffectPresetClass::EXIT, 52       ,"ooo-exit-curve-down" },
     229             :     { ::com::sun::star::presentation::EffectPresetClass::EXIT, 54       ,"ooo-exit-glide" },
     230             :     { ::com::sun::star::presentation::EffectPresetClass::EXIT, 56       ,"ooo-exit-flip" },
     231             :     { ::com::sun::star::presentation::EffectPresetClass::EXIT, 58       ,"ooo-exit-fold" },
     232             : 
     233             : 
     234             : 
     235             : 
     236             :     { ::com::sun::star::presentation::EffectPresetClass::MOTIONPATH, 16     ,"ooo-motionpath-4-point-star" },
     237             :     { ::com::sun::star::presentation::EffectPresetClass::MOTIONPATH, 5      ,"ooo-motionpath-5-point-star" },
     238             :     { ::com::sun::star::presentation::EffectPresetClass::MOTIONPATH, 11     ,"ooo-motionpath-6-point-star" },
     239             :     { ::com::sun::star::presentation::EffectPresetClass::MOTIONPATH, 17     ,"ooo-motionpath-8-point-star" },
     240             :     { ::com::sun::star::presentation::EffectPresetClass::MOTIONPATH, 1      ,"ooo-motionpath-circle" },
     241             :     { ::com::sun::star::presentation::EffectPresetClass::MOTIONPATH, 6      ,"ooo-motionpath-crescent-moon" },
     242             :     { ::com::sun::star::presentation::EffectPresetClass::MOTIONPATH, 3      ,"ooo-motionpath-diamond" },
     243             :     { ::com::sun::star::presentation::EffectPresetClass::MOTIONPATH, 13     ,"ooo-motionpath-equal-triangle" },
     244             :     { ::com::sun::star::presentation::EffectPresetClass::MOTIONPATH, 12     ,"ooo-motionpath-oval" },
     245             :     { ::com::sun::star::presentation::EffectPresetClass::MOTIONPATH, 9      ,"ooo-motionpath-heart" },
     246             :     { ::com::sun::star::presentation::EffectPresetClass::MOTIONPATH, 4      ,"ooo-motionpath-hexagon" },
     247             :     { ::com::sun::star::presentation::EffectPresetClass::MOTIONPATH, 10     ,"ooo-motionpath-octagon" },
     248             :     { ::com::sun::star::presentation::EffectPresetClass::MOTIONPATH, 14     ,"ooo-motionpath-parallelogram" },
     249             :     { ::com::sun::star::presentation::EffectPresetClass::MOTIONPATH, 15     ,"ooo-motionpath-pentagon" },
     250             :     { ::com::sun::star::presentation::EffectPresetClass::MOTIONPATH, 2      ,"ooo-motionpath-right-triangle" },
     251             :     { ::com::sun::star::presentation::EffectPresetClass::MOTIONPATH, 7      ,"ooo-motionpath-square" },
     252             :     { ::com::sun::star::presentation::EffectPresetClass::MOTIONPATH, 18     ,"ooo-motionpath-teardrop" },
     253             :     { ::com::sun::star::presentation::EffectPresetClass::MOTIONPATH, 8      ,"ooo-motionpath-trapezoid" },
     254             :     { ::com::sun::star::presentation::EffectPresetClass::MOTIONPATH, 37     ,"ooo-motionpath-arc-down" },
     255             :     { ::com::sun::star::presentation::EffectPresetClass::MOTIONPATH, 51     ,"ooo-motionpath-arc-left" },
     256             :     { ::com::sun::star::presentation::EffectPresetClass::MOTIONPATH, 58     ,"ooo-motionpath-arc-right" },
     257             :     { ::com::sun::star::presentation::EffectPresetClass::MOTIONPATH, 44     ,"ooo-motionpath-arc-up" },
     258             :     { ::com::sun::star::presentation::EffectPresetClass::MOTIONPATH, 41     ,"ooo-motionpath-bounce-left" },
     259             :     { ::com::sun::star::presentation::EffectPresetClass::MOTIONPATH, 54     ,"ooo-motionpath-bounce-right" },
     260             :     { ::com::sun::star::presentation::EffectPresetClass::MOTIONPATH, 48     ,"ooo-motionpath-curvy-left" },
     261             :     { ::com::sun::star::presentation::EffectPresetClass::MOTIONPATH, 61     ,"ooo-motionpath-curvy-right" },
     262             :     { ::com::sun::star::presentation::EffectPresetClass::MOTIONPATH, 60     ,"ooo-motionpath-decaying-wave" },
     263             :     { ::com::sun::star::presentation::EffectPresetClass::MOTIONPATH, 49     ,"ooo-motionpath-diagonal-down-right" },
     264             :     { ::com::sun::star::presentation::EffectPresetClass::MOTIONPATH, 56     ,"ooo-motionpath-diagonal-up-right" },
     265             :     { ::com::sun::star::presentation::EffectPresetClass::MOTIONPATH, 42     ,"ooo-motionpath-down" },
     266             :     { ::com::sun::star::presentation::EffectPresetClass::MOTIONPATH, 52     ,"ooo-motionpath-funnel" },
     267             :     { ::com::sun::star::presentation::EffectPresetClass::MOTIONPATH, 53     ,"ooo-motionpath-spring" },
     268             :     { ::com::sun::star::presentation::EffectPresetClass::MOTIONPATH, 62     ,"ooo-motionpath-stairs-down" },
     269             :     { ::com::sun::star::presentation::EffectPresetClass::MOTIONPATH, 50     ,"ooo-motionpath-turn-down" },
     270             :     { ::com::sun::star::presentation::EffectPresetClass::MOTIONPATH, 36     ,"ooo-motionpath-turn-down-right" },
     271             :     { ::com::sun::star::presentation::EffectPresetClass::MOTIONPATH, 43     ,"ooo-motionpath-turn-up" },
     272             :     { ::com::sun::star::presentation::EffectPresetClass::MOTIONPATH, 57     ,"ooo-motionpath-turn-up-right" },
     273             :     { ::com::sun::star::presentation::EffectPresetClass::MOTIONPATH, 64     ,"ooo-motionpath-up" },
     274             :     { ::com::sun::star::presentation::EffectPresetClass::MOTIONPATH, 47     ,"ooo-motionpath-wave" },
     275             :     { ::com::sun::star::presentation::EffectPresetClass::MOTIONPATH, 38     ,"ooo-motionpath-zigzag" },
     276             :     { ::com::sun::star::presentation::EffectPresetClass::MOTIONPATH, 31     ,"ooo-motionpath-bean" },
     277             :     { ::com::sun::star::presentation::EffectPresetClass::MOTIONPATH, 25     ,"ooo-motionpath-buzz-saw" },
     278             :     { ::com::sun::star::presentation::EffectPresetClass::MOTIONPATH, 20     ,"ooo-motionpath-curved-square" },
     279             :     { ::com::sun::star::presentation::EffectPresetClass::MOTIONPATH, 21     ,"ooo-motionpath-curved-x" },
     280             :     { ::com::sun::star::presentation::EffectPresetClass::MOTIONPATH, 23     ,"ooo-motionpath-curvy-star" },
     281             :     { ::com::sun::star::presentation::EffectPresetClass::MOTIONPATH, 28     ,"ooo-motionpath-figure-8-four" },
     282             :     { ::com::sun::star::presentation::EffectPresetClass::MOTIONPATH, 26     ,"ooo-motionpath-horizontal-figure-8" },
     283             :     { ::com::sun::star::presentation::EffectPresetClass::MOTIONPATH, 34     ,"ooo-motionpath-inverted-square" },
     284             :     { ::com::sun::star::presentation::EffectPresetClass::MOTIONPATH, 33     ,"ooo-motionpath-inverted-triangle" },
     285             :     { ::com::sun::star::presentation::EffectPresetClass::MOTIONPATH, 24     ,"ooo-motionpath-loop-de-loop" },
     286             :     { ::com::sun::star::presentation::EffectPresetClass::MOTIONPATH, 29     ,"ooo-motionpath-neutron" },
     287             :     { ::com::sun::star::presentation::EffectPresetClass::MOTIONPATH, 27     ,"ooo-motionpath-peanut" },
     288             :     { ::com::sun::star::presentation::EffectPresetClass::MOTIONPATH, 32     ,"ooo-motionpath-clover" },
     289             :     { ::com::sun::star::presentation::EffectPresetClass::MOTIONPATH, 19     ,"ooo-motionpath-pointy-star" },
     290             :     { ::com::sun::star::presentation::EffectPresetClass::MOTIONPATH, 30     ,"ooo-motionpath-swoosh" },
     291             :     { ::com::sun::star::presentation::EffectPresetClass::MOTIONPATH, 22     ,"ooo-motionpath-vertical-figure-8" },
     292             :     { ::com::sun::star::presentation::EffectPresetClass::MOTIONPATH, 35     ,"ooo-motionpath-left" },
     293             :     { ::com::sun::star::presentation::EffectPresetClass::MOTIONPATH, 63     ,"ooo-motionpath-right" },
     294             :     { ::com::sun::star::presentation::EffectPresetClass::MOTIONPATH, 55     ,"ooo-motionpath-spiral-left" },
     295             :     { ::com::sun::star::presentation::EffectPresetClass::MOTIONPATH, 46     ,"ooo-motionpath-spiral-right" },
     296             :     { ::com::sun::star::presentation::EffectPresetClass::MOTIONPATH, 40     ,"ooo-motionpath-sine-wave" },
     297             :     { ::com::sun::star::presentation::EffectPresetClass::MOTIONPATH, 59     ,"ooo-motionpath-s-curve-1" },
     298             :     { ::com::sun::star::presentation::EffectPresetClass::MOTIONPATH, 39     ,"ooo-motionpath-s-curve-2" },
     299             :     { ::com::sun::star::presentation::EffectPresetClass::MOTIONPATH, 45     ,"ooo-motionpath-heartbeat" },
     300             : 
     301             : 
     302             :     { 0,0,0 }
     303             : };
     304             : 
     305             : // from sd/source/filter/ppt/pptinanimations.cxx
     306           0 : static OUString getConvertedSubType( sal_Int16 nPresetClass, sal_Int32 nPresetId, sal_Int32 nPresetSubType )
     307             : {
     308           0 :     const sal_Char* pStr = 0;
     309             : 
     310           0 :     if( (nPresetClass == EffectPresetClass::ENTRANCE) || (nPresetClass == EffectPresetClass::EXIT) )
     311             :     {
     312             :         // skip wheel effect
     313           0 :         if( nPresetId != 21 )
     314             :         {
     315           0 :             if( nPresetId == 5 )
     316             :             {
     317             :                 // checkerboard
     318           0 :                 switch( nPresetSubType )
     319             :                 {
     320           0 :                 case  5: pStr = "downward"; break;
     321           0 :                 case 10: pStr = "across"; break;
     322             :                 }
     323             :             }
     324           0 :             else if( nPresetId == 17 )
     325             :             {
     326             :                 // stretch
     327           0 :                 if( nPresetSubType == 10 )
     328           0 :                     pStr = "across";
     329             :             }
     330           0 :             else if( nPresetId == 18 )
     331             :             {
     332             :                 // strips
     333           0 :                 switch( nPresetSubType )
     334             :                 {
     335           0 :                 case 3: pStr = "right-to-top"; break;
     336           0 :                 case 6: pStr = "right-to-bottom"; break;
     337           0 :                 case 9: pStr = "left-to-top"; break;
     338           0 :                 case 12: pStr = "left-to-bottom"; break;
     339             :                 }
     340             :             }
     341             : 
     342           0 :             if( pStr == 0 )
     343             :             {
     344           0 :                 const convert_subtype* p = gConvertArray;
     345             : 
     346           0 :                 while( p->mpStrSubType )
     347             :                 {
     348           0 :                     if( p->mnID == nPresetSubType )
     349             :                     {
     350           0 :                         pStr = p->mpStrSubType;
     351           0 :                         break;
     352             :                     }
     353           0 :                     p++;
     354             :                 }
     355             :             }
     356             :         }
     357             :     }
     358             : 
     359           0 :     if( pStr )
     360           0 :         return OUString::createFromAscii( pStr );
     361             :     else
     362           0 :         return OUString::valueOf( nPresetSubType );
     363             : }
     364             : 
     365             : // END
     366             : 
     367           8 :     CommonTimeNodeContext::CommonTimeNodeContext(
     368             :             FragmentHandler2& rParent,
     369             :             sal_Int32  aElement,
     370             :             const Reference< XFastAttributeList >& xAttribs,
     371             :             const TimeNodePtr & pNode )
     372             :         : TimeNodeContext( rParent, aElement, xAttribs, pNode )
     373           8 :             , mbIterate( false )
     374             :     {
     375           8 :         AttributeList attribs( xAttribs );
     376             :         sal_Int32 nInt; // some temporary int value for float conversions
     377             : 
     378           8 :         NodePropertyMap & aProps = pNode->getNodeProperties();
     379           8 :         TimeNode::UserDataMap & aUserData = pNode->getUserData();
     380             : 
     381           8 :         if( attribs.hasAttribute( XML_accel ) )
     382             :         {
     383           0 :             double dPercent = ::oox::drawingml::GetPositiveFixedPercentage( xAttribs->getOptionalValue( XML_accel ) );
     384           0 :             aProps[ NP_ACCELERATION ] <<= dPercent;
     385             :         }
     386             : 
     387           8 :         if( attribs.hasAttribute( XML_afterEffect ) )
     388             :         {
     389           0 :             aUserData[ CREATE_OUSTRING( "after-effect" ) ]
     390           0 :                 = makeAny( attribs.getBool( XML_afterEffect, false ) );
     391             :         }
     392           8 :         aProps[ NP_AUTOREVERSE ] = makeAny( attribs.getBool( XML_autoRev, false ) );
     393             : 
     394             :         // TODO
     395           8 :         if( attribs.hasAttribute( XML_bldLvl ) )
     396             :         {
     397           0 :             attribs.getInteger( XML_bldLvl, 0 );
     398             :         }
     399           8 :         if( attribs.hasAttribute( XML_decel ) )
     400             :         {
     401           0 :             double dPercent = ::oox::drawingml::GetPositiveFixedPercentage( xAttribs->getOptionalValue( XML_decel ) );
     402           0 :             aProps[ NP_DECELERATE ] <<= dPercent;
     403             :         }
     404             :         // TODO
     405           8 :         if( attribs.hasAttribute( XML_display ) )
     406             :         {
     407           0 :             aProps[ NP_DISPLAY ] <<= attribs.getBool( XML_display, true );
     408             :         }
     409           8 :         if( attribs.hasAttribute( XML_dur ) )
     410             :         {
     411           8 :             aProps[ NP_DURATION ] = GetTime( xAttribs->getOptionalValue( XML_dur) );
     412             :         }
     413             :         // TODO
     414           8 :         if( attribs.hasAttribute( XML_evtFilter ) )
     415             :         {
     416           0 :             xAttribs->getOptionalValue( XML_evtFilter );
     417             :         }
     418             :         // ST_TLTimeNodeFillType
     419           8 :         if( attribs.hasAttribute( XML_fill ) )
     420             :         {
     421           0 :             nInt = xAttribs->getOptionalValueToken( XML_fill, 0 );
     422           0 :             if( nInt != 0 )
     423             :             {
     424             :                 sal_Int16 nEnum;
     425           0 :                 switch( nInt )
     426             :                 {
     427             :                 case XML_remove:
     428           0 :                     nEnum = AnimationFill::REMOVE;
     429           0 :                     break;
     430             :                 case XML_freeze:
     431           0 :                     nEnum = AnimationFill::FREEZE;
     432           0 :                     break;
     433             :                 case XML_hold:
     434           0 :                     nEnum = AnimationFill::HOLD;
     435           0 :                     break;
     436             :                 case XML_transition:
     437           0 :                     nEnum = AnimationFill::TRANSITION;
     438           0 :                     break;
     439             :                 default:
     440           0 :                     nEnum = AnimationFill::DEFAULT;
     441           0 :                     break;
     442             :                 }
     443           0 :                 aProps[ NP_FILL ] <<=  (sal_Int16)nEnum;
     444             :             }
     445             :         }
     446           8 :         if( attribs.hasAttribute( XML_grpId ) )
     447             :         {
     448           0 :             attribs.getUnsigned( XML_grpId, 0 );
     449             :         }
     450             :         // ST_TLTimeNodeID
     451           8 :         if( attribs.hasAttribute( XML_id ) )
     452             :         {
     453           8 :             sal_uInt32 nId = attribs.getUnsigned( XML_id, 0 );
     454           8 :             pNode->setId( nId );
     455             :         }
     456             :         // ST_TLTimeNodeMasterRelation
     457           8 :         nInt = xAttribs->getOptionalValueToken( XML_masterRel, 0 );
     458           8 :         if( nInt )
     459             :         {
     460             :             // TODO
     461           0 :             switch(nInt)
     462             :             {
     463             :             case XML_sameClick:
     464             :             case XML_lastClick:
     465             :             case XML_nextClick:
     466           0 :                 break;
     467             :             }
     468             :         }
     469             : 
     470             :         // TODO
     471           8 :         if( attribs.hasAttribute( XML_nodePh ) )
     472             :         {
     473           0 :             attribs.getBool( XML_nodePh, false );
     474             :         }
     475             :         // ST_TLTimeNodeType
     476           8 :         nInt = xAttribs->getOptionalValueToken( XML_nodeType, 0 );
     477           8 :         if( nInt != 0 )
     478             :         {
     479             :             sal_Int16 nEnum;
     480           8 :             switch( nInt )
     481             :             {
     482             :             case XML_clickEffect:
     483             :             case XML_clickPar:
     484           0 :                 nEnum = EffectNodeType::ON_CLICK;
     485           0 :                 break;
     486             :             case XML_withEffect:
     487             :             case XML_withGroup:
     488           0 :                 nEnum = EffectNodeType::WITH_PREVIOUS;
     489           0 :                 break;
     490             :             case XML_mainSeq:
     491           0 :                 nEnum = EffectNodeType::MAIN_SEQUENCE;
     492           0 :                 break;
     493             :             case XML_interactiveSeq:
     494           0 :                 nEnum = EffectNodeType::INTERACTIVE_SEQUENCE;
     495           0 :                 break;
     496             :             case XML_afterGroup:
     497             :             case XML_afterEffect:
     498           0 :                 nEnum = EffectNodeType::AFTER_PREVIOUS;
     499           0 :                 break;
     500             :             case XML_tmRoot:
     501           8 :                 nEnum = EffectNodeType::TIMING_ROOT;
     502           8 :                 break;
     503             :             default:
     504           0 :                 nEnum = EffectNodeType::DEFAULT;
     505           0 :                 break;
     506             :             }
     507           8 :             aUserData[ CREATE_OUSTRING( "node-type" ) ] <<= nEnum;
     508             :         }
     509             : 
     510             :         // ST_TLTimeNodePresetClassType
     511           8 :         nInt = xAttribs->getOptionalValueToken( XML_presetClass, 0 );
     512           8 :         if( nInt != 0 )
     513             :         {
     514           0 :             sal_Int16 nEffectPresetClass = 0;
     515             :             // TODO put that in a function
     516           0 :             switch( nInt )
     517             :             {
     518             :             case XML_entr:
     519           0 :                 nEffectPresetClass = EffectPresetClass::ENTRANCE;
     520           0 :                 break;
     521             :             case XML_exit:
     522           0 :                 nEffectPresetClass = EffectPresetClass::EXIT;
     523           0 :                 break;
     524             :             case XML_emph:
     525           0 :                 nEffectPresetClass = EffectPresetClass::EMPHASIS;
     526           0 :                 break;
     527             :             case XML_path:
     528           0 :                 nEffectPresetClass = EffectPresetClass::MOTIONPATH;
     529           0 :                 break;
     530             :             case XML_verb:
     531             :                 // TODO check that the value below is correct
     532           0 :                 nEffectPresetClass = EffectPresetClass::OLEACTION;
     533           0 :                 break;
     534             :             case XML_mediacall:
     535           0 :                 nEffectPresetClass = EffectPresetClass::MEDIACALL;
     536           0 :                 break;
     537             :             default:
     538           0 :                 nEffectPresetClass = 0;
     539           0 :                 break;
     540             :             }
     541           0 :             aUserData[ CREATE_OUSTRING( "preset-class" ) ] = makeAny( nEffectPresetClass );
     542           0 :             if( attribs.hasAttribute( XML_presetID ) )
     543             :             {
     544           0 :                 sal_Int32 nPresetId = attribs.getInteger( XML_presetID, 0 );
     545           0 :                 const preset_maping* p = gPresetMaping;
     546           0 :                 while( p->mpStrPresetId && ((p->mnPresetClass != nEffectPresetClass) || (p->mnPresetId != nPresetId )) )
     547           0 :                     p++;
     548             : 
     549           0 :                 aUserData[ CREATE_OUSTRING( "preset-id" ) ]
     550           0 :                     = makeAny( OUString::createFromAscii( p->mpStrPresetId ) );
     551           0 :                 sal_Int32 nPresetSubType = attribs.getInteger( XML_presetSubtype, 0 );
     552           0 :                 if( nPresetSubType )
     553             :                 {
     554           0 :                     aUserData[ CREATE_OUSTRING( "preset-sub-type" ) ]
     555           0 :                         = makeAny( getConvertedSubType( nEffectPresetClass, nPresetId, nPresetSubType ) );
     556             :                 }
     557             :             }
     558             :         }
     559           8 :         if( attribs.hasAttribute( XML_repeatCount ) )
     560             :         {
     561           0 :             aProps[ NP_REPEATCOUNT ] = GetTime( xAttribs->getOptionalValue( XML_repeatCount ) );
     562             :         }
     563             :         /* see pptinanimation */
     564             : //          aProps[ NP_REPEATCOUNT ] <<= (fCount < ((float)3.40282346638528860e+38)) ? makeAny( (double)fCount ) : makeAny( Timing_INDEFINITE );
     565           8 :         if( attribs.hasAttribute( XML_repeatDur ) )
     566             :         {
     567           0 :             aProps[ NP_REPEATDURATION ] = GetTime( xAttribs->getOptionalValue( XML_repeatDur ) );
     568             :         }
     569             :         // TODO repeatDur is otherwise the same as dur. What shall we do? -- Hub
     570             : 
     571             :         // ST_TLTimeNodeRestartType
     572           8 :         nInt = xAttribs->getOptionalValueToken( XML_restart, 0 );
     573           8 :         if( nInt != 0 )
     574             :         {
     575             :             // TODO put that in a function
     576             :             sal_Int16 nEnum;
     577           8 :             switch( nInt )
     578             :             {
     579             :             case XML_always:
     580           0 :                 nEnum = AnimationRestart::ALWAYS;
     581           0 :                 break;
     582             :             case XML_whenNotActive:
     583           0 :                 nEnum = AnimationRestart::WHEN_NOT_ACTIVE;
     584           0 :                 break;
     585             :             case XML_never:
     586           8 :                 nEnum = AnimationRestart::NEVER;
     587           8 :                 break;
     588             :             default:
     589           0 :                 nEnum = AnimationRestart::DEFAULT;
     590           0 :                 break;
     591             :             }
     592           8 :             aProps[ NP_RESTART ] <<= (sal_Int16)nEnum;
     593             :         }
     594             :         // ST_Percentage TODO
     595           8 :         xAttribs->getOptionalValue( XML_spd /*"10000" */ );
     596             :         // ST_TLTimeNodeSyncType TODO
     597           8 :         xAttribs->getOptionalValue( XML_syncBehavior );
     598             :         // TODO (string)
     599           8 :         xAttribs->getOptionalValue( XML_tmFilter );
     600           8 :     }
     601             : 
     602             : 
     603          16 :     CommonTimeNodeContext::~CommonTimeNodeContext( ) throw ( )
     604             :     {
     605          16 :     }
     606             : 
     607             : 
     608           8 :     void CommonTimeNodeContext::onEndElement()
     609             :     {
     610           8 :         if( isCurrentElement( PPT_TOKEN( iterate ) ) )
     611             :         {
     612           0 :             mbIterate = false;
     613             :         }
     614           8 :     }
     615             : 
     616             : 
     617           0 :     ::oox::core::ContextHandlerRef CommonTimeNodeContext::onCreateContext( sal_Int32 aElementToken, const AttributeList& rAttribs )
     618             :     {
     619             : 
     620           0 :         switch ( aElementToken )
     621             :         {
     622             :         case PPT_TOKEN( childTnLst ):
     623             :         case PPT_TOKEN( subTnLst ):
     624           0 :             return new TimeNodeListContext( *this, mpNode->getChildren() );
     625             : 
     626             :         case PPT_TOKEN( stCondLst ):
     627           0 :             return new CondListContext( *this, aElementToken, rAttribs.getFastAttributeList(), mpNode, mpNode->getStartCondition() );
     628             :         case PPT_TOKEN( endCondLst ):
     629           0 :             return new CondListContext( *this, aElementToken, rAttribs.getFastAttributeList(), mpNode, mpNode->getEndCondition() );
     630             : 
     631             :         case PPT_TOKEN( endSync ):
     632           0 :             return new CondContext( *this, rAttribs.getFastAttributeList(), mpNode, mpNode->getEndSyncValue() );
     633             :         case PPT_TOKEN( iterate ):
     634             :         {
     635           0 :             sal_Int32 nVal = rAttribs.getToken( XML_type, XML_el );
     636           0 :             if( nVal != 0 )
     637             :             {
     638             :                 // TODO put that in a function
     639             :                 sal_Int16 nEnum;
     640           0 :                 switch( nVal )
     641             :                 {
     642             :                 case XML_el:
     643           0 :                     nEnum = TextAnimationType::BY_PARAGRAPH;
     644           0 :                     break;
     645             :                 case XML_lt:
     646           0 :                     nEnum = TextAnimationType::BY_LETTER;
     647           0 :                     break;
     648             :                 case XML_wd:
     649           0 :                     nEnum = TextAnimationType::BY_WORD;
     650           0 :                     break;
     651             :                 default:
     652             :                     // default is BY_WORD. See Ppt97Animation::GetTextAnimationType()
     653             :                     // in sd/source/filter/ppt/ppt97animations.cxx:297
     654           0 :                     nEnum = TextAnimationType::BY_WORD;
     655           0 :                     break;
     656             :                 }
     657           0 :                 mpNode->getNodeProperties()[ NP_ITERATETYPE ] <<= nEnum;
     658             :             }
     659             :             // in case of exception we ignore the whole tag.
     660             :             // TODO what to do with this
     661           0 :             /*bool bBackwards =*/ rAttribs.getBool( XML_backwards, false );
     662           0 :             mbIterate = true;
     663           0 :             return this;
     664             :         }
     665             :         case PPT_TOKEN( tmAbs ):
     666           0 :             if( mbIterate )
     667             :             {
     668           0 :                 double fTime = rAttribs.getUnsigned( XML_val, 0 );
     669             :                 // time in ms. property is in % TODO
     670           0 :                 mpNode->getNodeProperties()[ NP_ITERATEINTERVAL ] <<= fTime;
     671             :             }
     672           0 :             return this;
     673             :         case PPT_TOKEN( tmPct ):
     674           0 :             if( mbIterate )
     675             :             {
     676           0 :                 double fPercent = (double)rAttribs.getUnsigned( XML_val, 0 ) / 100000.0;
     677           0 :                 mpNode->getNodeProperties()[ NP_ITERATEINTERVAL ] <<= fPercent;
     678             :             }
     679           0 :             return this;
     680             :         default:
     681           0 :             break;
     682             :         }
     683             : 
     684           0 :         return this;
     685             :     }
     686             : 
     687         174 : } }
     688             : 
     689             : /* vim:set shiftwidth=4 softtabstop=4 expandtab: */

Generated by: LCOV version 1.10