Update ooo320-m1
[ooovba.git] / slideshow / source / inc / animationnodefactory.hxx
blobf9292a8d873db9558e2a0904258b41dfbcca530a
1 /*************************************************************************
3 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
4 *
5 * Copyright 2008 by Sun Microsystems, Inc.
7 * OpenOffice.org - a multi-platform office productivity suite
9 * $RCSfile: animationnodefactory.hxx,v $
10 * $Revision: 1.6 $
12 * This file is part of OpenOffice.org.
14 * OpenOffice.org is free software: you can redistribute it and/or modify
15 * it under the terms of the GNU Lesser General Public License version 3
16 * only, as published by the Free Software Foundation.
18 * OpenOffice.org is distributed in the hope that it will be useful,
19 * but WITHOUT ANY WARRANTY; without even the implied warranty of
20 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
21 * GNU Lesser General Public License version 3 for more details
22 * (a copy is included in the LICENSE file that accompanied this code).
24 * You should have received a copy of the GNU Lesser General Public License
25 * version 3 along with OpenOffice.org. If not, see
26 * <http://www.openoffice.org/license.html>
27 * for a copy of the LGPLv3 License.
29 ************************************************************************/
31 #ifndef INCLUDED_SLIDESHOW_ANIMATIONNODEFACTORY_HXX
32 #define INCLUDED_SLIDESHOW_ANIMATIONNODEFACTORY_HXX
34 #include <com/sun/star/uno/Reference.hxx>
35 #include <com/sun/star/uno/XComponentContext.hpp>
36 #include <com/sun/star/animations/XAnimationNode.hpp>
38 #include "subsettableshapemanager.hxx"
39 #include "animationnode.hxx"
40 #include "slideshowcontext.hxx"
41 #include "eventqueue.hxx"
42 #include "activitiesqueue.hxx"
43 #include "usereventqueue.hxx"
45 #include <boost/noncopyable.hpp>
46 #include <vector>
49 namespace slideshow
51 namespace internal
53 /* Definition of AnimationNodeFactory class */
55 class AnimationNodeFactory : private boost::noncopyable
57 public:
58 /** Create an AnimatioNode for the given XAnimationNode
60 static AnimationNodeSharedPtr createAnimationNode( const ::com::sun::star::uno::Reference<
61 ::com::sun::star::animations::XAnimationNode >& xNode,
62 const ::basegfx::B2DVector& rSlideSize,
63 const SlideShowContext& rContext );
66 #if defined(VERBOSE) && defined(DBG_UTIL)
67 static void showTree( AnimationNodeSharedPtr& pRootNode );
68 # define SHOW_NODE_TREE(a) AnimationNodeFactory::showTree(a)
69 #else
70 # define SHOW_NODE_TREE(a)
71 #endif
73 private:
74 // default: constructor/destructor disabled
75 AnimationNodeFactory();
76 ~AnimationNodeFactory();
81 #endif /* INCLUDED_SLIDESHOW_ANIMATIONNODEFACTORY_HXX */