1*70f497fbSAndrew Rist /************************************************************** 2cdf0e10cSrcweir * 3*70f497fbSAndrew Rist * Licensed to the Apache Software Foundation (ASF) under one 4*70f497fbSAndrew Rist * or more contributor license agreements. See the NOTICE file 5*70f497fbSAndrew Rist * distributed with this work for additional information 6*70f497fbSAndrew Rist * regarding copyright ownership. The ASF licenses this file 7*70f497fbSAndrew Rist * to you under the Apache License, Version 2.0 (the 8*70f497fbSAndrew Rist * "License"); you may not use this file except in compliance 9*70f497fbSAndrew Rist * with the License. You may obtain a copy of the License at 10cdf0e10cSrcweir * 11*70f497fbSAndrew Rist * http://www.apache.org/licenses/LICENSE-2.0 12cdf0e10cSrcweir * 13*70f497fbSAndrew Rist * Unless required by applicable law or agreed to in writing, 14*70f497fbSAndrew Rist * software distributed under the License is distributed on an 15*70f497fbSAndrew Rist * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY 16*70f497fbSAndrew Rist * KIND, either express or implied. See the License for the 17*70f497fbSAndrew Rist * specific language governing permissions and limitations 18*70f497fbSAndrew Rist * under the License. 19cdf0e10cSrcweir * 20*70f497fbSAndrew Rist *************************************************************/ 21*70f497fbSAndrew Rist 22*70f497fbSAndrew Rist 23cdf0e10cSrcweir 24cdf0e10cSrcweir // MARKER(update_precomp.py): autogen include statement, do not remove 25cdf0e10cSrcweir #include "precompiled_slideshow.hxx" 26cdf0e10cSrcweir 27cdf0e10cSrcweir #include "paralleltimecontainer.hxx" 28cdf0e10cSrcweir #include "delayevent.hxx" 29cdf0e10cSrcweir 30cdf0e10cSrcweir #include <boost/bind.hpp> 31cdf0e10cSrcweir 32cdf0e10cSrcweir namespace slideshow { 33cdf0e10cSrcweir namespace internal { 34cdf0e10cSrcweir 35cdf0e10cSrcweir void ParallelTimeContainer::activate_st() 36cdf0e10cSrcweir { 37cdf0e10cSrcweir // resolve all children: 38cdf0e10cSrcweir std::size_t const nResolvedNodes = 39cdf0e10cSrcweir static_cast<std::size_t>(std::count_if( 40cdf0e10cSrcweir maChildren.begin(), maChildren.end(), 41cdf0e10cSrcweir boost::mem_fn(&AnimationNode::resolve) )); 42cdf0e10cSrcweir (void) nResolvedNodes; // avoid warning 43cdf0e10cSrcweir OSL_ENSURE( nResolvedNodes == maChildren.size(), 44cdf0e10cSrcweir "### resolving all children failed!" ); 45cdf0e10cSrcweir 46cdf0e10cSrcweir if (isDurationIndefinite() && maChildren.empty()) { 47cdf0e10cSrcweir // deactivate ASAP: 48cdf0e10cSrcweir scheduleDeactivationEvent( 49cdf0e10cSrcweir makeEvent( boost::bind( &AnimationNode::deactivate, getSelf() ), 50cdf0e10cSrcweir "ParallelTimeContainer::deactivate") ); 51cdf0e10cSrcweir } 52cdf0e10cSrcweir else { // use default 53cdf0e10cSrcweir scheduleDeactivationEvent(); 54cdf0e10cSrcweir } 55cdf0e10cSrcweir } 56cdf0e10cSrcweir 57cdf0e10cSrcweir void ParallelTimeContainer::notifyDeactivating( 58cdf0e10cSrcweir AnimationNodeSharedPtr const& pChildNode ) 59cdf0e10cSrcweir { 60cdf0e10cSrcweir notifyDeactivatedChild( pChildNode ); 61cdf0e10cSrcweir } 62cdf0e10cSrcweir 63cdf0e10cSrcweir } // namespace internal 64cdf0e10cSrcweir } // namespace slideshow 65cdf0e10cSrcweir 66