1 /* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
3 * This file is part of the LibreOffice project.
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/.
9 * This file incorporates work covered by the following license notice:
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 .
20 #include <config_features.h>
22 #include "timetargetelementcontext.hxx"
24 #include <osl/diagnose.h>
25 #include <sal/log.hxx>
27 #include <oox/helper/attributelist.hxx>
28 #include <drawingml/embeddedwavaudiofile.hxx>
29 #include <oox/token/namespaces.hxx>
30 #include <oox/token/tokens.hxx>
31 #include <oox/core/xmlfilterbase.hxx>
32 #include <com/sun/star/io/XInputStream.hpp>
33 #include <avmedia/mediaitem.hxx>
36 using namespace ::com::sun::star::uno
;
37 using namespace ::com::sun::star::xml::sax
;
38 using namespace ::oox::core
;
44 // CT_TLShapeTargetElement
45 class ShapeTargetElementContext
46 : public FragmentHandler2
49 ShapeTargetElementContext( FragmentHandler2
const & rParent
, ShapeTargetElement
& aValue
)
50 : FragmentHandler2( rParent
)
52 , maShapeTarget(aValue
)
55 virtual ::oox::core::ContextHandlerRef
onCreateContext( sal_Int32 aElementToken
, const AttributeList
& rAttribs
) override
57 switch( aElementToken
)
61 maShapeTarget
.mnType
= XML_bg
;
63 case PPT_TOKEN( txEl
):
65 maShapeTarget
.mnType
= XML_txEl
;
67 case PPT_TOKEN( subSp
):
69 maShapeTarget
.mnType
= XML_subSp
;
70 maShapeTarget
.msSubShapeId
= rAttribs
.getStringDefaulted( XML_spid
);
72 case PPT_TOKEN( graphicEl
):
73 return this; // needs a:dgm for the target
76 maShapeTarget
.mnType
= XML_dgm
;
77 maShapeTarget
.msSubShapeId
= rAttribs
.getStringDefaulted( XML_id
);
79 case PPT_TOKEN( oleChartEl
):
83 case PPT_TOKEN( charRg
):
84 case PPT_TOKEN( pRg
):
85 if( bTargetSet
&& maShapeTarget
.mnType
== XML_txEl
)
87 maShapeTarget
.mnRangeType
= getBaseToken( aElementToken
);
88 maShapeTarget
.maRange
= drawingml::GetIndexRange( rAttribs
.getFastAttributeList() );
99 ShapeTargetElement
& maShapeTarget
;
104 TimeTargetElementContext::TimeTargetElementContext( FragmentHandler2
const & rParent
, AnimTargetElementPtr pValue
)
105 : FragmentHandler2( rParent
),
106 mpTarget(std::move( pValue
))
108 OSL_ENSURE( mpTarget
, "no valid target passed" );
111 TimeTargetElementContext::~TimeTargetElementContext( ) noexcept
115 ::oox::core::ContextHandlerRef
TimeTargetElementContext::onCreateContext( sal_Int32 aElementToken
, const AttributeList
& rAttribs
)
117 switch( aElementToken
)
119 case PPT_TOKEN( inkTgt
):
121 mpTarget
->mnType
= XML_inkTgt
;
122 OUString aId
= rAttribs
.getStringDefaulted( XML_spid
);
125 mpTarget
->msValue
= aId
;
129 case PPT_TOKEN( sldTgt
):
130 mpTarget
->mnType
= XML_sldTgt
;
132 case PPT_TOKEN( sndTgt
):
134 mpTarget
->mnType
= XML_sndTgt
;
136 #if HAVE_FEATURE_AVMEDIA
137 OUString srcFile
= drawingml::getEmbeddedWAVAudioFile(getRelations(), rAttribs
);
138 Reference
<css::io::XInputStream
>
139 xInputStream
= getFilter().openInputStream(srcFile
);
141 if (xInputStream
.is())
143 ::avmedia::EmbedMedia(getFilter().getModel(), srcFile
, mpTarget
->msValue
, xInputStream
);
144 xInputStream
->closeInput();
149 case PPT_TOKEN( spTgt
):
151 mpTarget
->mnType
= XML_spTgt
;
152 OUString aId
= rAttribs
.getStringDefaulted( XML_spid
);
153 mpTarget
->msValue
= aId
;
154 return new ShapeTargetElementContext( *this, mpTarget
->maShapeTarget
);
159 "unhandled tag " << getBaseToken(aElementToken
)
160 << " in TL_TimeTargetElement");
169 /* vim:set shiftwidth=4 softtabstop=4 expandtab: */