/* This file is part of the WebKit open source project. This file has been generated by generate-bindings.pl. DO NOT MODIFY! 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. */ #include "config.h" #if ENABLE(SVG) #include "SVGElement.h" #include "JSSVGAnimatedInteger.h" #include #include using namespace JSC; namespace WebCore { ASSERT_CLASS_FITS_IN_CELL(JSSVGAnimatedInteger) /* Hash table */ static const HashTableValue JSSVGAnimatedIntegerTableValues[3] = { { "baseVal", DontDelete, (intptr_t)jsSVGAnimatedIntegerBaseVal, (intptr_t)setJSSVGAnimatedIntegerBaseVal }, { "animVal", DontDelete|ReadOnly, (intptr_t)jsSVGAnimatedIntegerAnimVal, (intptr_t)0 }, { 0, 0, 0, 0 } }; static const HashTable JSSVGAnimatedIntegerTable = #if ENABLE(PERFECT_HASH_SIZE) { 1, JSSVGAnimatedIntegerTableValues, 0 }; #else { 4, 3, JSSVGAnimatedIntegerTableValues, 0 }; #endif /* Hash table for prototype */ static const HashTableValue JSSVGAnimatedIntegerPrototypeTableValues[1] = { { 0, 0, 0, 0 } }; static const HashTable JSSVGAnimatedIntegerPrototypeTable = #if ENABLE(PERFECT_HASH_SIZE) { 0, JSSVGAnimatedIntegerPrototypeTableValues, 0 }; #else { 1, 0, JSSVGAnimatedIntegerPrototypeTableValues, 0 }; #endif const ClassInfo JSSVGAnimatedIntegerPrototype::s_info = { "SVGAnimatedIntegerPrototype", 0, &JSSVGAnimatedIntegerPrototypeTable, 0 }; JSObject* JSSVGAnimatedIntegerPrototype::self(ExecState* exec) { return getDOMPrototype(exec); } const ClassInfo JSSVGAnimatedInteger::s_info = { "SVGAnimatedInteger", 0, &JSSVGAnimatedIntegerTable, 0 }; JSSVGAnimatedInteger::JSSVGAnimatedInteger(PassRefPtr structure, PassRefPtr impl, SVGElement* context) : DOMObject(structure) , m_context(context) , m_impl(impl) { } JSSVGAnimatedInteger::~JSSVGAnimatedInteger() { forgetDOMObject(*Heap::heap(this)->globalData(), m_impl.get()); } JSObject* JSSVGAnimatedInteger::createPrototype(ExecState* exec) { return new (exec) JSSVGAnimatedIntegerPrototype(JSSVGAnimatedIntegerPrototype::createStructure(exec->lexicalGlobalObject()->objectPrototype())); } bool JSSVGAnimatedInteger::getOwnPropertySlot(ExecState* exec, const Identifier& propertyName, PropertySlot& slot) { return getStaticValueSlot(exec, &JSSVGAnimatedIntegerTable, this, propertyName, slot); } JSValuePtr jsSVGAnimatedIntegerBaseVal(ExecState* exec, const Identifier&, const PropertySlot& slot) { SVGAnimatedInteger* imp = static_cast(static_cast(asObject(slot.slotBase()))->impl()); return jsNumber(exec, imp->baseVal()); } JSValuePtr jsSVGAnimatedIntegerAnimVal(ExecState* exec, const Identifier&, const PropertySlot& slot) { SVGAnimatedInteger* imp = static_cast(static_cast(asObject(slot.slotBase()))->impl()); return jsNumber(exec, imp->animVal()); } void JSSVGAnimatedInteger::put(ExecState* exec, const Identifier& propertyName, JSValuePtr value, PutPropertySlot& slot) { lookupPut(exec, propertyName, value, &JSSVGAnimatedIntegerTable, this, slot); } void setJSSVGAnimatedIntegerBaseVal(ExecState* exec, JSObject* thisObject, JSValuePtr value) { SVGAnimatedInteger* imp = static_cast(static_cast(thisObject)->impl()); imp->setBaseVal(value->toInt32(exec)); if (static_cast(thisObject)->context()) static_cast(thisObject)->context()->svgAttributeChanged(static_cast(thisObject)->impl()->associatedAttributeName()); } JSC::JSValuePtr toJS(JSC::ExecState* exec, SVGAnimatedInteger* object, SVGElement* context) { return getDOMObjectWrapper(exec, object, context); } SVGAnimatedInteger* toSVGAnimatedInteger(JSC::JSValuePtr value) { return value->isObject(&JSSVGAnimatedInteger::s_info) ? static_cast(asObject(value))->impl() : 0; } } #endif // ENABLE(SVG)