/* 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 "JSSVGPathSegCurvetoCubicSmoothRel.h" #include "SVGPathSegCurvetoCubicSmooth.h" #include #include using namespace JSC; namespace WebCore { ASSERT_CLASS_FITS_IN_CELL(JSSVGPathSegCurvetoCubicSmoothRel); /* Hash table */ static const HashTableValue JSSVGPathSegCurvetoCubicSmoothRelTableValues[5] = { { "x", DontDelete, (intptr_t)jsSVGPathSegCurvetoCubicSmoothRelX, (intptr_t)setJSSVGPathSegCurvetoCubicSmoothRelX }, { "y", DontDelete, (intptr_t)jsSVGPathSegCurvetoCubicSmoothRelY, (intptr_t)setJSSVGPathSegCurvetoCubicSmoothRelY }, { "x2", DontDelete, (intptr_t)jsSVGPathSegCurvetoCubicSmoothRelX2, (intptr_t)setJSSVGPathSegCurvetoCubicSmoothRelX2 }, { "y2", DontDelete, (intptr_t)jsSVGPathSegCurvetoCubicSmoothRelY2, (intptr_t)setJSSVGPathSegCurvetoCubicSmoothRelY2 }, { 0, 0, 0, 0 } }; static JSC_CONST_HASHTABLE HashTable JSSVGPathSegCurvetoCubicSmoothRelTable = #if ENABLE(PERFECT_HASH_SIZE) { 7, JSSVGPathSegCurvetoCubicSmoothRelTableValues, 0 }; #else { 8, 7, JSSVGPathSegCurvetoCubicSmoothRelTableValues, 0 }; #endif /* Hash table for prototype */ static const HashTableValue JSSVGPathSegCurvetoCubicSmoothRelPrototypeTableValues[1] = { { 0, 0, 0, 0 } }; static JSC_CONST_HASHTABLE HashTable JSSVGPathSegCurvetoCubicSmoothRelPrototypeTable = #if ENABLE(PERFECT_HASH_SIZE) { 0, JSSVGPathSegCurvetoCubicSmoothRelPrototypeTableValues, 0 }; #else { 1, 0, JSSVGPathSegCurvetoCubicSmoothRelPrototypeTableValues, 0 }; #endif const ClassInfo JSSVGPathSegCurvetoCubicSmoothRelPrototype::s_info = { "SVGPathSegCurvetoCubicSmoothRelPrototype", 0, &JSSVGPathSegCurvetoCubicSmoothRelPrototypeTable, 0 }; JSObject* JSSVGPathSegCurvetoCubicSmoothRelPrototype::self(ExecState* exec, JSGlobalObject* globalObject) { return getDOMPrototype(exec, globalObject); } const ClassInfo JSSVGPathSegCurvetoCubicSmoothRel::s_info = { "SVGPathSegCurvetoCubicSmoothRel", &JSSVGPathSeg::s_info, &JSSVGPathSegCurvetoCubicSmoothRelTable, 0 }; JSSVGPathSegCurvetoCubicSmoothRel::JSSVGPathSegCurvetoCubicSmoothRel(NonNullPassRefPtr structure, JSDOMGlobalObject* globalObject, PassRefPtr impl, SVGElement* context) : JSSVGPathSeg(structure, globalObject, impl, context) { } JSObject* JSSVGPathSegCurvetoCubicSmoothRel::createPrototype(ExecState* exec, JSGlobalObject* globalObject) { return new (exec) JSSVGPathSegCurvetoCubicSmoothRelPrototype(JSSVGPathSegCurvetoCubicSmoothRelPrototype::createStructure(JSSVGPathSegPrototype::self(exec, globalObject))); } bool JSSVGPathSegCurvetoCubicSmoothRel::getOwnPropertySlot(ExecState* exec, const Identifier& propertyName, PropertySlot& slot) { return getStaticValueSlot(exec, &JSSVGPathSegCurvetoCubicSmoothRelTable, this, propertyName, slot); } bool JSSVGPathSegCurvetoCubicSmoothRel::getOwnPropertyDescriptor(ExecState* exec, const Identifier& propertyName, PropertyDescriptor& descriptor) { return getStaticValueDescriptor(exec, &JSSVGPathSegCurvetoCubicSmoothRelTable, this, propertyName, descriptor); } JSValue jsSVGPathSegCurvetoCubicSmoothRelX(ExecState* exec, const Identifier&, const PropertySlot& slot) { JSSVGPathSegCurvetoCubicSmoothRel* castedThis = static_cast(asObject(slot.slotBase())); UNUSED_PARAM(exec); SVGPathSegCurvetoCubicSmoothRel* imp = static_cast(castedThis->impl()); return jsNumber(exec, imp->x()); } JSValue jsSVGPathSegCurvetoCubicSmoothRelY(ExecState* exec, const Identifier&, const PropertySlot& slot) { JSSVGPathSegCurvetoCubicSmoothRel* castedThis = static_cast(asObject(slot.slotBase())); UNUSED_PARAM(exec); SVGPathSegCurvetoCubicSmoothRel* imp = static_cast(castedThis->impl()); return jsNumber(exec, imp->y()); } JSValue jsSVGPathSegCurvetoCubicSmoothRelX2(ExecState* exec, const Identifier&, const PropertySlot& slot) { JSSVGPathSegCurvetoCubicSmoothRel* castedThis = static_cast(asObject(slot.slotBase())); UNUSED_PARAM(exec); SVGPathSegCurvetoCubicSmoothRel* imp = static_cast(castedThis->impl()); return jsNumber(exec, imp->x2()); } JSValue jsSVGPathSegCurvetoCubicSmoothRelY2(ExecState* exec, const Identifier&, const PropertySlot& slot) { JSSVGPathSegCurvetoCubicSmoothRel* castedThis = static_cast(asObject(slot.slotBase())); UNUSED_PARAM(exec); SVGPathSegCurvetoCubicSmoothRel* imp = static_cast(castedThis->impl()); return jsNumber(exec, imp->y2()); } void JSSVGPathSegCurvetoCubicSmoothRel::put(ExecState* exec, const Identifier& propertyName, JSValue value, PutPropertySlot& slot) { lookupPut(exec, propertyName, value, &JSSVGPathSegCurvetoCubicSmoothRelTable, this, slot); } void setJSSVGPathSegCurvetoCubicSmoothRelX(ExecState* exec, JSObject* thisObject, JSValue value) { SVGPathSegCurvetoCubicSmoothRel* imp = static_cast(static_cast(thisObject)->impl()); imp->setX(value.toFloat(exec)); if (static_cast(thisObject)->context()) static_cast(thisObject)->context()->svgAttributeChanged(static_cast(thisObject)->impl()->associatedAttributeName()); } void setJSSVGPathSegCurvetoCubicSmoothRelY(ExecState* exec, JSObject* thisObject, JSValue value) { SVGPathSegCurvetoCubicSmoothRel* imp = static_cast(static_cast(thisObject)->impl()); imp->setY(value.toFloat(exec)); if (static_cast(thisObject)->context()) static_cast(thisObject)->context()->svgAttributeChanged(static_cast(thisObject)->impl()->associatedAttributeName()); } void setJSSVGPathSegCurvetoCubicSmoothRelX2(ExecState* exec, JSObject* thisObject, JSValue value) { SVGPathSegCurvetoCubicSmoothRel* imp = static_cast(static_cast(thisObject)->impl()); imp->setX2(value.toFloat(exec)); if (static_cast(thisObject)->context()) static_cast(thisObject)->context()->svgAttributeChanged(static_cast(thisObject)->impl()->associatedAttributeName()); } void setJSSVGPathSegCurvetoCubicSmoothRelY2(ExecState* exec, JSObject* thisObject, JSValue value) { SVGPathSegCurvetoCubicSmoothRel* imp = static_cast(static_cast(thisObject)->impl()); imp->setY2(value.toFloat(exec)); if (static_cast(thisObject)->context()) static_cast(thisObject)->context()->svgAttributeChanged(static_cast(thisObject)->impl()->associatedAttributeName()); } } #endif // ENABLE(SVG)