2004-11-26 18:01:48 +00:00
|
|
|
/*************************************************************************
|
|
|
|
*
|
2008-04-10 23:30:31 +00:00
|
|
|
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
|
2004-11-26 18:01:48 +00:00
|
|
|
*
|
2008-04-10 23:30:31 +00:00
|
|
|
* Copyright 2008 by Sun Microsystems, Inc.
|
2004-11-26 18:01:48 +00:00
|
|
|
*
|
2008-04-10 23:30:31 +00:00
|
|
|
* OpenOffice.org - a multi-platform office productivity suite
|
2004-11-26 18:01:48 +00:00
|
|
|
*
|
2008-04-10 23:30:31 +00:00
|
|
|
* $RCSfile: wakeupevent.cxx,v $
|
|
|
|
* $Revision: 1.8 $
|
2004-11-26 18:01:48 +00:00
|
|
|
*
|
2008-04-10 23:30:31 +00:00
|
|
|
* This file is part of OpenOffice.org.
|
2004-11-26 18:01:48 +00:00
|
|
|
*
|
2008-04-10 23:30:31 +00:00
|
|
|
* OpenOffice.org is free software: you can redistribute it and/or modify
|
|
|
|
* it under the terms of the GNU Lesser General Public License version 3
|
|
|
|
* only, as published by the Free Software Foundation.
|
2004-11-26 18:01:48 +00:00
|
|
|
*
|
2008-04-10 23:30:31 +00:00
|
|
|
* OpenOffice.org 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 version 3 for more details
|
|
|
|
* (a copy is included in the LICENSE file that accompanied this code).
|
2004-11-26 18:01:48 +00:00
|
|
|
*
|
2008-04-10 23:30:31 +00:00
|
|
|
* You should have received a copy of the GNU Lesser General Public License
|
|
|
|
* version 3 along with OpenOffice.org. If not, see
|
|
|
|
* <http://www.openoffice.org/license.html>
|
|
|
|
* for a copy of the LGPLv3 License.
|
2004-11-26 18:01:48 +00:00
|
|
|
*
|
|
|
|
************************************************************************/
|
|
|
|
|
2006-09-17 07:31:22 +00:00
|
|
|
// MARKER(update_precomp.py): autogen include statement, do not remove
|
|
|
|
#include "precompiled_slideshow.hxx"
|
|
|
|
|
2004-11-26 18:01:48 +00:00
|
|
|
// must be first
|
|
|
|
#include <canvas/debug.hxx>
|
|
|
|
#include <canvas/verbosetrace.hxx>
|
|
|
|
|
|
|
|
#include <wakeupevent.hxx>
|
|
|
|
|
|
|
|
|
2006-12-13 14:23:54 +00:00
|
|
|
namespace slideshow
|
2004-11-26 18:01:48 +00:00
|
|
|
{
|
|
|
|
namespace internal
|
|
|
|
{
|
2005-03-10 12:47:12 +00:00
|
|
|
WakeupEvent::WakeupEvent(
|
|
|
|
boost::shared_ptr<canvas::tools::ElapsedTime> const & pTimeBase,
|
|
|
|
ActivitiesQueue& rActivityQueue ) :
|
2009-05-06 08:16:59 +00:00
|
|
|
#if OSL_DEBUG_LEVEL > 1
|
2009-04-27 11:42:05 +00:00
|
|
|
Event(::rtl::OUString::createFromAscii("WakeupEvent")),
|
|
|
|
#endif
|
2005-03-10 12:47:12 +00:00
|
|
|
maTimer(pTimeBase),
|
2004-11-26 18:01:48 +00:00
|
|
|
mnNextTime(0.0),
|
|
|
|
mpActivity(),
|
|
|
|
mrActivityQueue( rActivityQueue )
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
void WakeupEvent::dispose()
|
|
|
|
{
|
|
|
|
mpActivity.reset();
|
|
|
|
}
|
|
|
|
|
|
|
|
bool WakeupEvent::fire()
|
|
|
|
{
|
2006-12-13 14:23:54 +00:00
|
|
|
if( !mpActivity )
|
2004-11-26 18:01:48 +00:00
|
|
|
return false;
|
|
|
|
|
|
|
|
return mrActivityQueue.addActivity( mpActivity );
|
|
|
|
}
|
|
|
|
|
2005-04-22 12:29:25 +00:00
|
|
|
bool WakeupEvent::isCharged() const
|
2004-11-26 18:01:48 +00:00
|
|
|
{
|
2005-04-22 12:29:25 +00:00
|
|
|
// this event won't expire, we fire everytime we're
|
|
|
|
// re-inserted into the event queue.
|
|
|
|
return true;
|
2004-11-26 18:01:48 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
double WakeupEvent::getActivationTime( double nCurrentTime ) const
|
|
|
|
{
|
|
|
|
const double nElapsedTime( maTimer.getElapsedTime() );
|
|
|
|
|
|
|
|
return ::std::max( nCurrentTime,
|
|
|
|
nCurrentTime - nElapsedTime + mnNextTime );
|
|
|
|
}
|
|
|
|
|
|
|
|
void WakeupEvent::start()
|
|
|
|
{
|
|
|
|
// start timer
|
|
|
|
maTimer.reset();
|
|
|
|
}
|
|
|
|
|
|
|
|
void WakeupEvent::setNextTimeout( double rNextTime )
|
|
|
|
{
|
|
|
|
mnNextTime = rNextTime;
|
|
|
|
}
|
|
|
|
|
|
|
|
void WakeupEvent::setActivity( const ActivitySharedPtr& rActivity )
|
|
|
|
{
|
|
|
|
mpActivity = rActivity;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|