/* 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 "JSSVGNumber.h" #include #include using namespace JSC; namespace WebCore { ASSERT_CLASS_FITS_IN_CELL(JSSVGNumber) /* Hash table */ static const HashTableValue JSSVGNumberTableValues[2] = { { "value", DontDelete, (intptr_t)jsSVGNumberValue, (intptr_t)setJSSVGNumberValue }, { 0, 0, 0, 0 } }; static const HashTable JSSVGNumberTable = #if ENABLE(PERFECT_HASH_SIZE) { 0, JSSVGNumberTableValues, 0 }; #else { 2, 1, JSSVGNumberTableValues, 0 }; #endif /* Hash table for prototype */ static const HashTableValue JSSVGNumberPrototypeTableValues[1] = { { 0, 0, 0, 0 } }; static const HashTable JSSVGNumberPrototypeTable = #if ENABLE(PERFECT_HASH_SIZE) { 0, JSSVGNumberPrototypeTableValues, 0 }; #else { 1, 0, JSSVGNumberPrototypeTableValues, 0 }; #endif const ClassInfo JSSVGNumberPrototype::s_info = { "SVGNumberPrototype", 0, &JSSVGNumberPrototypeTable, 0 }; JSObject* JSSVGNumberPrototype::self(ExecState* exec, JSGlobalObject* globalObject) { return getDOMPrototype(exec, globalObject); } const ClassInfo JSSVGNumber::s_info = { "SVGNumber", 0, &JSSVGNumberTable, 0 }; JSSVGNumber::JSSVGNumber(PassRefPtr structure, PassRefPtr > impl, SVGElement* context) : DOMObject(structure) , m_context(context) , m_impl(impl) { } JSSVGNumber::~JSSVGNumber() { forgetDOMObject(*Heap::heap(this)->globalData(), m_impl.get()); } JSObject* JSSVGNumber::createPrototype(ExecState* exec, JSGlobalObject* globalObject) { return new (exec) JSSVGNumberPrototype(JSSVGNumberPrototype::createStructure(globalObject->objectPrototype())); } bool JSSVGNumber::getOwnPropertySlot(ExecState* exec, const Identifier& propertyName, PropertySlot& slot) { return getStaticValueSlot(exec, &JSSVGNumberTable, this, propertyName, slot); } JSValuePtr jsSVGNumberValue(ExecState* exec, const Identifier&, const PropertySlot& slot) { float imp(*static_cast(asObject(slot.slotBase()))->impl()); return jsNumber(exec, imp); } void JSSVGNumber::put(ExecState* exec, const Identifier& propertyName, JSValuePtr value, PutPropertySlot& slot) { lookupPut(exec, propertyName, value, &JSSVGNumberTable, this, slot); } void setJSSVGNumberValue(ExecState* exec, JSObject* thisObject, JSValuePtr value) { float imp(*static_cast(thisObject)->impl()); imp = value->toFloat(exec); static_cast(thisObject)->impl()->commitChange(imp, static_cast(thisObject)->context()); } JSC::JSValuePtr toJS(JSC::ExecState* exec, JSSVGPODTypeWrapper* object, SVGElement* context) { return getDOMObjectWrapper >(exec, object, context); } float toSVGNumber(JSC::JSValuePtr value) { return value->isObject(&JSSVGNumber::s_info) ? (float) *static_cast(asObject(value))->impl() : 0; } } #endif // ENABLE(SVG)