/* Copyright (C) 2004, 2005 Nikolas Zimmermann 2004, 2005 Rob Buis Copyright (C) 2006 Apple Computer, Inc. This file is part of the KDE project This library is free software; you can redistribute it and/or modify it under the terms of the GNU Library General Public License as published by the Free Software Foundation; either version 2 of the License, or (at your option) any later version. 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 Library General Public License for more details. You should have received a copy of the GNU Library General Public License along with this library; see the file COPYING.LIB. If not, write to the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. */ #if ENABLE(SVG) #include "TimeScheduler.h" #include "Timer.h" #include #include namespace WebCore { class SVGElement; class SVGAnimationElement; typedef HashSet SVGNotifySet; class SVGTimer : private Timer { public: SVGTimer(TimeScheduler*, double interval, bool singleShot); void start(); using Timer::stop; using Timer::isActive; void notifyAll(); void addNotify(SVGAnimationElement*, bool enabled = false); void removeNotify(SVGAnimationElement*); static SVGTimer* downcast(Timer* t) { return static_cast(t); } private: typedef HashMap > TargetAnimationMap; TargetAnimationMap animationsByElement(double elapsedTime); void applyAnimations(double elapsedSeconds, const SVGTimer::TargetAnimationMap& targetMap); TimeScheduler* m_scheduler; double m_interval; bool m_singleShot; SVGNotifySet m_notifySet; SVGNotifySet m_enabledNotifySet; }; } // namespace #endif // ENABLE(SVG) // vim:ts=4:noet