summaryrefslogtreecommitdiff
path: root/slideshow/source/engine/animationnodes/sequentialtimecontainer.hxx
diff options
context:
space:
mode:
Diffstat (limited to 'slideshow/source/engine/animationnodes/sequentialtimecontainer.hxx')
-rw-r--r--slideshow/source/engine/animationnodes/sequentialtimecontainer.hxx20
1 files changed, 10 insertions, 10 deletions
diff --git a/slideshow/source/engine/animationnodes/sequentialtimecontainer.hxx b/slideshow/source/engine/animationnodes/sequentialtimecontainer.hxx
index 003d80333074..878b0f34f4f0 100644
--- a/slideshow/source/engine/animationnodes/sequentialtimecontainer.hxx
+++ b/slideshow/source/engine/animationnodes/sequentialtimecontainer.hxx
@@ -2,7 +2,7 @@
/*************************************************************************
*
* 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
@@ -34,37 +34,37 @@ namespace slideshow {
namespace internal {
/** This class implements sequential node containers
-
+
All children of this node are played sequentially
*/
class SequentialTimeContainer : public BaseContainerNode
{
public:
SequentialTimeContainer(
- ::com::sun::star::uno::Reference<
- ::com::sun::star::animations::XAnimationNode> const& xNode,
+ ::com::sun::star::uno::Reference<
+ ::com::sun::star::animations::XAnimationNode> const& xNode,
BaseContainerNodeSharedPtr const& pParent,
NodeContext const& rContext )
: BaseContainerNode( xNode, pParent, rContext ) {}
-
+
#if defined(VERBOSE) && defined(DBG_UTIL)
virtual const char* getDescription() const
{ return "SequentialTimeContainer"; }
#endif
-
+
protected:
virtual void dispose();
-
+
private:
virtual void activate_st();
virtual void notifyDeactivating( AnimationNodeSharedPtr const& rNotifier );
-
+
void skipEffect( AnimationNodeSharedPtr const& pChildNode );
void rewindEffect( AnimationNodeSharedPtr const& pChildNode );
-
+
private:
bool resolveChild( AnimationNodeSharedPtr const& pChildNode );
-
+
EventSharedPtr mpCurrentSkipEvent;
EventSharedPtr mpCurrentRewindEvent;
};