1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131
|
/*
* Copyright (C) Research In Motion Limited 2010, 2012. All rights reserved.
*
* 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.
*/
#ifndef SVGAnimatedPathSegListPropertyTearOff_h
#define SVGAnimatedPathSegListPropertyTearOff_h
#if ENABLE(SVG)
#include "SVGAnimatedListPropertyTearOff.h"
#include "SVGPathByteStream.h"
#include "SVGPathElement.h"
#include "SVGPathSegList.h"
#include "SVGPathSegListPropertyTearOff.h"
#include "SVGPathUtilities.h"
namespace WebCore {
class SVGAnimatedPathSegListPropertyTearOff : public SVGAnimatedListPropertyTearOff<SVGPathSegList> {
public:
virtual PassRefPtr<ListProperty> baseVal() OVERRIDE
{
if (m_baseVal)
return m_baseVal;
RefPtr<ListProperty> property = SVGPathSegListPropertyTearOff::create(this, BaseValRole, PathSegUnalteredRole, m_values, m_wrappers);
m_baseVal = property.get();
return property.release();
}
virtual PassRefPtr<ListProperty> animVal() OVERRIDE
{
if (m_animVal)
return m_animVal;
RefPtr<ListProperty> property = SVGPathSegListPropertyTearOff::create(this, AnimValRole, PathSegUnalteredRole, m_values, m_wrappers);
m_animVal = property.get();
return property.release();
}
int findItem(const RefPtr<SVGPathSeg>& segment)
{
// This should ever be called for our baseVal, as animVal can't modify the list.
return static_cast<SVGPathSegListPropertyTearOff*>(baseVal().get())->findItem(segment);
}
void removeItemFromList(size_t itemIndex, bool shouldSynchronizeWrappers)
{
// This should ever be called for our baseVal, as animVal can't modify the list.
static_cast<SVGPathSegListPropertyTearOff*>(baseVal().get())->removeItemFromList(itemIndex, shouldSynchronizeWrappers);
}
static PassRefPtr<SVGAnimatedPathSegListPropertyTearOff> create(SVGElement* contextElement, const QualifiedName& attributeName, AnimatedPropertyType animatedPropertyType, SVGPathSegList& values)
{
ASSERT(contextElement);
return adoptRef(new SVGAnimatedPathSegListPropertyTearOff(contextElement, attributeName, animatedPropertyType, values));
}
using SVGAnimatedListPropertyTearOff<SVGPathSegList>::animationStarted;
void animationStarted(SVGPathByteStream* byteStream, const SVGPathSegList* baseValue)
{
ASSERT(byteStream);
ASSERT(baseValue);
ASSERT(!m_animatedPathByteStream);
m_animatedPathByteStream = byteStream;
// Pass shouldOwnValues=true, as the SVGPathSegList lifetime is solely managed by its tear off class.
SVGPathSegList* copy = new SVGPathSegList(*baseValue);
SVGAnimatedListPropertyTearOff<SVGPathSegList>::animationStarted(copy, true);
}
void animationEnded()
{
ASSERT(m_animatedPathByteStream);
m_animatedPathByteStream = 0;
SVGAnimatedListPropertyTearOff<SVGPathSegList>::animationEnded();
}
void animValDidChange()
{
ASSERT(m_animatedPathByteStream);
SVGPathElement* pathElement = toSVGPathElement(contextElement());
// If the animVal is observed from JS, we have to update it on each animation step.
// This is an expensive operation and only done, if someone actually observes the animatedPathSegList() while an animation is running.
if (pathElement->isAnimValObserved()) {
SVGPathSegList& animatedList = currentAnimatedValue();
animatedList.clear();
buildSVGPathSegListFromByteStream(m_animatedPathByteStream, pathElement, animatedList, UnalteredParsing);
}
SVGAnimatedListPropertyTearOff<SVGPathSegList>::animValDidChange();
}
SVGPathByteStream* animatedPathByteStream() const { return m_animatedPathByteStream; }
private:
SVGAnimatedPathSegListPropertyTearOff(SVGElement* contextElement, const QualifiedName& attributeName, AnimatedPropertyType animatedPropertyType, SVGPathSegList& values)
: SVGAnimatedListPropertyTearOff<SVGPathSegList>(contextElement, attributeName, animatedPropertyType, values)
, m_animatedPathByteStream(0)
{
ASSERT(contextElement);
ASSERT(toSVGPathElement(contextElement));
}
virtual ~SVGAnimatedPathSegListPropertyTearOff()
{
static_cast<SVGPathElement*>(contextElement())->animatedPropertyWillBeDeleted();
}
SVGPathByteStream* m_animatedPathByteStream;
};
}
#endif // ENABLE(SVG)
#endif // SVGAnimatedPathSegListPropertyTearOff_h
|