Update ooo320-m1
[ooovba.git] / sdext / source / presenter / PresenterAnimator.hxx
blobcc1c0459d5dcf9c07ff78bc030303a91202c3d2a
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: PresenterAnimator.hxx,v $
11 * $Revision: 1.4 $
13 * This file is part of OpenOffice.org.
15 * OpenOffice.org is free software: you can redistribute it and/or modify
16 * it under the terms of the GNU Lesser General Public License version 3
17 * only, as published by the Free Software Foundation.
19 * OpenOffice.org is distributed in the hope that it will be useful,
20 * but WITHOUT ANY WARRANTY; without even the implied warranty of
21 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
22 * GNU Lesser General Public License version 3 for more details
23 * (a copy is included in the LICENSE file that accompanied this code).
25 * You should have received a copy of the GNU Lesser General Public License
26 * version 3 along with OpenOffice.org. If not, see
27 * <http://www.openoffice.org/license.html>
28 * for a copy of the LGPLv3 License.
30 ************************************************************************/
32 #ifndef SDEXT_PRESENTER_ANIMATOR_HXX
33 #define SDEXT_PRESENTER_ANIMATOR_HXX
35 #include "PresenterAnimation.hxx"
36 #include <cppuhelper/basemutex.hxx>
37 #include <map>
38 #include <boost/noncopyable.hpp>
39 #include <boost/scoped_ptr.hpp>
41 namespace sdext { namespace presenter {
43 /** Simple animation management. Call AddAnimation to run animations
44 concurrently or one of the other. See PresenterAnimation for details of
45 how to specify animations.
47 class PresenterAnimator
48 : private ::boost::noncopyable,
49 private ::cppu::BaseMutex
51 public:
52 PresenterAnimator (void);
53 virtual ~PresenterAnimator (void);
55 /** Add an animation. The time at which to start and end this animation
56 is provided by the animation itself.
58 void AddAnimation (const SharedPresenterAnimation& rpAnimation);
60 private:
61 typedef ::std::multimap<sal_uInt64,SharedPresenterAnimation> AnimationList;
62 AnimationList maFutureAnimations;
63 AnimationList maActiveAnimations;
64 sal_Int32 mnCurrentTaskId;
65 sal_uInt64 mnNextTime;
67 void Process (void);
68 void ActivateAnimations (const sal_uInt64 nCurrentTime);
69 void ScheduleNextRun (void);
70 void ScheduleNextRun (const sal_uInt64 nStartTime);
74 } } // end of namespace ::sdext::presenter
76 #endif