6d120a5748
2007/06/14 09:56:54 cl 1.4.258.1: #i24969# moved slide transition and sound to smil timing root node
85 lines
3.2 KiB
C++
85 lines
3.2 KiB
C++
/*************************************************************************
|
|
*
|
|
* OpenOffice.org - a multi-platform office productivity suite
|
|
*
|
|
* $RCSfile: animationimport.hxx,v $
|
|
*
|
|
* $Revision: 1.6 $
|
|
*
|
|
* last change: $Author: hr $ $Date: 2007-06-27 15:31:18 $
|
|
*
|
|
* The Contents of this file are made available subject to
|
|
* the terms of GNU Lesser General Public License Version 2.1.
|
|
*
|
|
*
|
|
* GNU Lesser General Public License Version 2.1
|
|
* =============================================
|
|
* Copyright 2005 by Sun Microsystems, Inc.
|
|
* 901 San Antonio Road, Palo Alto, CA 94303, USA
|
|
*
|
|
* This library is free software; you can redistribute it and/or
|
|
* modify it under the terms of the GNU Lesser General Public
|
|
* License version 2.1, as published by the Free Software Foundation.
|
|
*
|
|
* This library 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 for more details.
|
|
*
|
|
* You should have received a copy of the GNU Lesser General Public
|
|
* License along with this library; if not, write to the Free Software
|
|
* Foundation, Inc., 59 Temple Place, Suite 330, Boston,
|
|
* MA 02111-1307 USA
|
|
*
|
|
************************************************************************/
|
|
|
|
#ifndef _XMLOFF_ANIMATIONIMPORT_HXX
|
|
#define _XMLOFF_ANIMATIONIMPORT_HXX
|
|
|
|
#ifndef _XMLOFF_XMLICTXT_HXX
|
|
#include <xmloff/xmlictxt.hxx>
|
|
#endif
|
|
|
|
#ifndef _COM_SUN_STAR_ANIMATIONS_XANIMATIONNODE_HPP_
|
|
#include <com/sun/star/animations/XAnimationNode.hpp>
|
|
#endif
|
|
|
|
//////////////////////////////////////////////////////////////////////////////
|
|
// presentations:animations
|
|
|
|
namespace xmloff
|
|
{
|
|
class AnimationsImportHelperImpl;
|
|
|
|
class AnimationNodeContext : public SvXMLImportContext
|
|
{
|
|
AnimationsImportHelperImpl* mpHelper;
|
|
bool mbRootContext;
|
|
::com::sun::star::uno::Reference< ::com::sun::star::animations::XAnimationNode > mxNode;
|
|
|
|
void init_node( const ::com::sun::star::uno::Reference< ::com::sun::star::xml::sax::XAttributeList >& xAttrList );
|
|
|
|
public:
|
|
TYPEINFO();
|
|
|
|
AnimationNodeContext(
|
|
const ::com::sun::star::uno::Reference< ::com::sun::star::animations::XAnimationNode >& xParentNode,
|
|
SvXMLImport& rImport,
|
|
sal_uInt16 nPrfx,
|
|
const rtl::OUString& rLocalName,
|
|
const com::sun::star::uno::Reference< com::sun::star::xml::sax::XAttributeList>& xAttrList,
|
|
AnimationsImportHelperImpl* mpImpl = NULL );
|
|
virtual ~AnimationNodeContext();
|
|
|
|
virtual void StartElement( const ::com::sun::star::uno::Reference< ::com::sun::star::xml::sax::XAttributeList >& xAttrList );
|
|
|
|
virtual SvXMLImportContext * CreateChildContext( USHORT nPrefix, const ::rtl::OUString& rLocalName,
|
|
const com::sun::star::uno::Reference< com::sun::star::xml::sax::XAttributeList>& xAttrList );
|
|
|
|
static void postProcessRootNode( SvXMLImport& rImport, const ::com::sun::star::uno::Reference< ::com::sun::star::animations::XAnimationNode >& xNode, ::com::sun::star::uno::Reference< ::com::sun::star::beans::XPropertySet >& xPageProps );
|
|
};
|
|
|
|
}
|
|
|
|
#endif // _XMLOFF_ANIMATIONIMPORT_HXX
|
|
|