2005-01-21 16:04:55 +00:00
|
|
|
/*************************************************************************
|
|
|
|
*
|
2005-09-07 19:43:43 +00:00
|
|
|
* OpenOffice.org - a multi-platform office productivity suite
|
2005-01-21 16:04:55 +00:00
|
|
|
*
|
2005-09-07 19:43:43 +00:00
|
|
|
* $RCSfile: basecontainernode.cxx,v $
|
2005-01-21 16:04:55 +00:00
|
|
|
*
|
2006-12-13 14:32:16 +00:00
|
|
|
* $Revision: 1.8 $
|
2005-01-21 16:04:55 +00:00
|
|
|
*
|
2006-12-13 14:32:16 +00:00
|
|
|
* last change: $Author: kz $ $Date: 2006-12-13 15:32:16 $
|
2005-01-21 16:04:55 +00:00
|
|
|
*
|
2005-09-07 19:43:43 +00:00
|
|
|
* The Contents of this file are made available subject to
|
|
|
|
* the terms of GNU Lesser General Public License Version 2.1.
|
2005-01-21 16:04:55 +00:00
|
|
|
*
|
|
|
|
*
|
2005-09-07 19:43:43 +00:00
|
|
|
* GNU Lesser General Public License Version 2.1
|
|
|
|
* =============================================
|
|
|
|
* Copyright 2005 by Sun Microsystems, Inc.
|
|
|
|
* 901 San Antonio Road, Palo Alto, CA 94303, USA
|
2005-01-21 16:04:55 +00:00
|
|
|
*
|
2005-09-07 19:43:43 +00:00
|
|
|
* 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.
|
2005-01-21 16:04:55 +00:00
|
|
|
*
|
2005-09-07 19:43:43 +00:00
|
|
|
* 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.
|
2005-01-21 16:04:55 +00:00
|
|
|
*
|
2005-09-07 19:43:43 +00:00
|
|
|
* 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
|
2005-01-21 16:04:55 +00:00
|
|
|
*
|
|
|
|
************************************************************************/
|
|
|
|
|
2006-09-17 07:35:24 +00:00
|
|
|
// MARKER(update_precomp.py): autogen include statement, do not remove
|
|
|
|
#include "precompiled_slideshow.hxx"
|
|
|
|
|
2005-01-21 16:04:55 +00:00
|
|
|
// must be first
|
2005-10-11 07:42:36 +00:00
|
|
|
#include "canvas/debug.hxx"
|
|
|
|
#include "canvas/verbosetrace.hxx"
|
|
|
|
#include "basecontainernode.hxx"
|
|
|
|
#include "tools.hxx"
|
|
|
|
#include "nodetools.hxx"
|
|
|
|
#include "delayevent.hxx"
|
|
|
|
#include "boost/mem_fn.hpp"
|
2005-01-21 16:04:55 +00:00
|
|
|
#include <vector>
|
|
|
|
#include <algorithm>
|
|
|
|
#include <iterator>
|
|
|
|
|
2006-07-26 06:34:02 +00:00
|
|
|
using namespace com::sun::star;
|
2005-01-21 16:04:55 +00:00
|
|
|
|
2006-12-13 14:32:16 +00:00
|
|
|
namespace slideshow {
|
2005-10-11 07:42:36 +00:00
|
|
|
namespace internal {
|
|
|
|
|
|
|
|
BaseContainerNode::BaseContainerNode(
|
|
|
|
const uno::Reference< animations::XAnimationNode >& xNode,
|
|
|
|
const BaseContainerNodeSharedPtr& rParent,
|
|
|
|
const NodeContext& rContext )
|
|
|
|
: BaseNode( xNode, rParent, rContext ),
|
|
|
|
maChildren(),
|
|
|
|
mnFinishedChildren(0),
|
|
|
|
mbDurationIndefinite( isIndefiniteTiming( xNode->getEnd() ) ||
|
|
|
|
isIndefiniteTiming( xNode->getDuration() ) )
|
2005-01-21 16:04:55 +00:00
|
|
|
{
|
2005-10-11 07:42:36 +00:00
|
|
|
}
|
2005-01-21 16:04:55 +00:00
|
|
|
|
2005-10-11 07:42:36 +00:00
|
|
|
void BaseContainerNode::dispose()
|
|
|
|
{
|
2006-07-26 06:34:02 +00:00
|
|
|
forEachChildNode( boost::mem_fn(&Disposable::dispose) );
|
2005-10-11 07:42:36 +00:00
|
|
|
maChildren.clear();
|
|
|
|
BaseNode::dispose();
|
|
|
|
}
|
2005-01-21 16:04:55 +00:00
|
|
|
|
2006-07-26 06:34:02 +00:00
|
|
|
bool BaseContainerNode::init_st()
|
2005-10-11 07:42:36 +00:00
|
|
|
{
|
|
|
|
mnFinishedChildren = 0;
|
|
|
|
// initialize all children
|
2006-07-26 06:34:02 +00:00
|
|
|
return (std::count_if(
|
|
|
|
maChildren.begin(), maChildren.end(),
|
|
|
|
boost::mem_fn(&AnimationNode::init) ) ==
|
|
|
|
static_cast<VectorOfNodes::difference_type>(maChildren.size()));
|
2005-10-11 07:42:36 +00:00
|
|
|
}
|
2005-01-21 16:04:55 +00:00
|
|
|
|
2006-07-26 06:34:02 +00:00
|
|
|
void BaseContainerNode::deactivate_st( NodeState eDestState )
|
2005-10-11 07:42:36 +00:00
|
|
|
{
|
2006-07-26 06:34:02 +00:00
|
|
|
if (eDestState == FROZEN) {
|
|
|
|
// deactivate all children that are not FROZEN or ENDED:
|
|
|
|
forEachChildNode( boost::mem_fn(&AnimationNode::deactivate),
|
|
|
|
~(FROZEN | ENDED) );
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
// end all children that are not ENDED:
|
|
|
|
forEachChildNode( boost::mem_fn(&AnimationNode::end), ~ENDED );
|
|
|
|
}
|
2005-10-11 07:42:36 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
bool BaseContainerNode::hasPendingAnimation() const
|
|
|
|
{
|
|
|
|
// does any of our children returns "true" on
|
|
|
|
// AnimationNode::hasPendingAnimation()?
|
|
|
|
// If yes, we, too, return true
|
2006-07-26 06:34:02 +00:00
|
|
|
VectorOfNodes::const_iterator const iEnd( maChildren.end() );
|
|
|
|
return (std::find_if(
|
|
|
|
maChildren.begin(), iEnd,
|
|
|
|
boost::mem_fn(&AnimationNode::hasPendingAnimation) ) != iEnd);
|
2005-10-11 07:42:36 +00:00
|
|
|
}
|
|
|
|
|
2006-07-26 06:34:02 +00:00
|
|
|
void BaseContainerNode::appendChildNode( AnimationNodeSharedPtr const& pNode )
|
2005-10-11 07:42:36 +00:00
|
|
|
{
|
2006-07-26 06:34:02 +00:00
|
|
|
if (! checkValidNode())
|
2005-10-11 07:42:36 +00:00
|
|
|
return;
|
|
|
|
|
2006-07-26 06:34:02 +00:00
|
|
|
// register derived classes as end listeners at all children.
|
2005-10-11 07:42:36 +00:00
|
|
|
// this is necessary to control the children animation
|
|
|
|
// sequence, and to determine our own end event
|
2006-07-26 06:34:02 +00:00
|
|
|
if (pNode->registerDeactivatingListener( getSelf() )) {
|
|
|
|
maChildren.push_back( pNode );
|
2005-10-11 07:42:36 +00:00
|
|
|
}
|
|
|
|
}
|
2005-01-21 16:04:55 +00:00
|
|
|
|
2006-07-26 06:34:02 +00:00
|
|
|
bool BaseContainerNode::isChildNode( AnimationNodeSharedPtr const& pNode ) const
|
2005-10-11 07:42:36 +00:00
|
|
|
{
|
2006-07-26 06:34:02 +00:00
|
|
|
// find given notifier in child vector
|
|
|
|
VectorOfNodes::const_iterator const iBegin( maChildren.begin() );
|
|
|
|
VectorOfNodes::const_iterator const iEnd( maChildren.end() );
|
|
|
|
VectorOfNodes::const_iterator const iFind(
|
|
|
|
std::find( iBegin, iEnd, pNode ) );
|
|
|
|
return (iFind != iEnd);
|
2005-10-11 07:42:36 +00:00
|
|
|
}
|
2005-01-21 16:04:55 +00:00
|
|
|
|
2006-07-26 06:34:02 +00:00
|
|
|
bool BaseContainerNode::notifyDeactivatedChild(
|
|
|
|
AnimationNodeSharedPtr const& pChildNode )
|
2005-10-11 07:42:36 +00:00
|
|
|
{
|
2006-07-26 06:34:02 +00:00
|
|
|
OSL_ASSERT( pChildNode->getState() == FROZEN ||
|
|
|
|
pChildNode->getState() == ENDED );
|
2005-10-11 07:42:36 +00:00
|
|
|
// early exit on invalid nodes
|
2006-07-26 06:34:02 +00:00
|
|
|
OSL_ASSERT( getState() != INVALID );
|
2005-10-11 07:42:36 +00:00
|
|
|
if( getState() == INVALID )
|
2006-07-26 06:34:02 +00:00
|
|
|
return false;
|
2005-10-11 07:42:36 +00:00
|
|
|
|
2006-07-26 06:34:02 +00:00
|
|
|
if (! isChildNode(pChildNode)) {
|
|
|
|
OSL_ENSURE( false, "unknown notifier!" );
|
|
|
|
return false;
|
2005-10-11 07:42:36 +00:00
|
|
|
}
|
2006-07-26 06:34:02 +00:00
|
|
|
|
|
|
|
std::size_t const nSize = maChildren.size();
|
|
|
|
OSL_ASSERT( mnFinishedChildren < nSize );
|
|
|
|
++mnFinishedChildren;
|
|
|
|
bool const bFinished = (mnFinishedChildren >= nSize);
|
|
|
|
|
|
|
|
// all children finished, and we've got indefinite duration?
|
|
|
|
// think of ParallelTimeContainer::notifyDeactivating()
|
|
|
|
// if duration given, we will be deactivated by some end event
|
|
|
|
// @see fillCommonParameters()
|
|
|
|
if (bFinished && isDurationIndefinite()) {
|
|
|
|
deactivate();
|
2005-10-11 07:42:36 +00:00
|
|
|
}
|
2005-01-21 16:04:55 +00:00
|
|
|
|
2006-07-26 06:34:02 +00:00
|
|
|
return bFinished;
|
|
|
|
}
|
2005-01-21 16:04:55 +00:00
|
|
|
|
|
|
|
#if defined(VERBOSE) && defined(DBG_UTIL)
|
2005-10-11 07:42:36 +00:00
|
|
|
void BaseContainerNode::showState() const
|
|
|
|
{
|
|
|
|
for( std::size_t i=0; i<maChildren.size(); ++i )
|
|
|
|
{
|
2006-07-26 06:34:02 +00:00
|
|
|
BaseNodeSharedPtr pNode =
|
|
|
|
boost::shared_dynamic_cast<BaseNode>(maChildren[i]);
|
2005-10-11 07:42:36 +00:00
|
|
|
VERBOSE_TRACE(
|
|
|
|
"Node connection: n0x%X -> n0x%X",
|
|
|
|
(const char*)this+debugGetCurrentOffset(),
|
2006-07-26 06:34:02 +00:00
|
|
|
(const char*)pNode.get()+debugGetCurrentOffset() );
|
|
|
|
pNode->showState();
|
2005-10-11 07:42:36 +00:00
|
|
|
}
|
2005-01-21 16:04:55 +00:00
|
|
|
|
2005-10-11 07:42:36 +00:00
|
|
|
BaseNode::showState();
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
|
|
|
} // namespace internal
|
2006-12-13 14:32:16 +00:00
|
|
|
} // namespace slideshow
|
2005-10-11 07:42:36 +00:00
|
|
|
|