/* 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 "JSSVGTextElement.h" #include "ExceptionCode.h" #include "JSDOMBinding.h" #include "JSSVGAnimatedTransformList.h" #include "JSSVGElement.h" #include "JSSVGMatrix.h" #include "JSSVGRect.h" #include "SVGElement.h" #include "SVGMatrix.h" #include "SVGRect.h" #include "SVGTextElement.h" #include #include using namespace JSC; namespace WebCore { ASSERT_CLASS_FITS_IN_CELL(JSSVGTextElement); /* Hash table */ #if ENABLE(JIT) #define THUNK_GENERATOR(generator) , generator #else #define THUNK_GENERATOR(generator) #endif static const HashTableValue JSSVGTextElementTableValues[5] = { { "transform", DontDelete | ReadOnly, (intptr_t)static_cast(jsSVGTextElementTransform), (intptr_t)0 THUNK_GENERATOR(0) }, { "nearestViewportElement", DontDelete | ReadOnly, (intptr_t)static_cast(jsSVGTextElementNearestViewportElement), (intptr_t)0 THUNK_GENERATOR(0) }, { "farthestViewportElement", DontDelete | ReadOnly, (intptr_t)static_cast(jsSVGTextElementFarthestViewportElement), (intptr_t)0 THUNK_GENERATOR(0) }, { "constructor", DontEnum | ReadOnly, (intptr_t)static_cast(jsSVGTextElementConstructor), (intptr_t)0 THUNK_GENERATOR(0) }, { 0, 0, 0, 0 THUNK_GENERATOR(0) } }; #undef THUNK_GENERATOR static JSC_CONST_HASHTABLE HashTable JSSVGTextElementTable = { 9, 7, JSSVGTextElementTableValues, 0 }; /* Hash table for constructor */ #if ENABLE(JIT) #define THUNK_GENERATOR(generator) , generator #else #define THUNK_GENERATOR(generator) #endif static const HashTableValue JSSVGTextElementConstructorTableValues[1] = { { 0, 0, 0, 0 THUNK_GENERATOR(0) } }; #undef THUNK_GENERATOR static JSC_CONST_HASHTABLE HashTable JSSVGTextElementConstructorTable = { 1, 0, JSSVGTextElementConstructorTableValues, 0 }; class JSSVGTextElementConstructor : public DOMConstructorObject { public: JSSVGTextElementConstructor(JSC::ExecState*, JSC::Structure*, JSDOMGlobalObject*); virtual bool getOwnPropertySlot(JSC::ExecState*, const JSC::Identifier&, JSC::PropertySlot&); virtual bool getOwnPropertyDescriptor(JSC::ExecState*, const JSC::Identifier&, JSC::PropertyDescriptor&); static const JSC::ClassInfo s_info; static JSC::Structure* createStructure(JSC::JSGlobalData& globalData, JSC::JSValue prototype) { return JSC::Structure::create(globalData, prototype, JSC::TypeInfo(JSC::ObjectType, StructureFlags), AnonymousSlotCount, &s_info); } protected: static const unsigned StructureFlags = JSC::OverridesGetOwnPropertySlot | JSC::ImplementsHasInstance | DOMConstructorObject::StructureFlags; }; const ClassInfo JSSVGTextElementConstructor::s_info = { "SVGTextElementConstructor", &DOMConstructorObject::s_info, &JSSVGTextElementConstructorTable, 0 }; JSSVGTextElementConstructor::JSSVGTextElementConstructor(ExecState* exec, Structure* structure, JSDOMGlobalObject* globalObject) : DOMConstructorObject(structure, globalObject) { ASSERT(inherits(&s_info)); putDirect(exec->globalData(), exec->propertyNames().prototype, JSSVGTextElementPrototype::self(exec, globalObject), DontDelete | ReadOnly); } bool JSSVGTextElementConstructor::getOwnPropertySlot(ExecState* exec, const Identifier& propertyName, PropertySlot& slot) { return getStaticValueSlot(exec, &JSSVGTextElementConstructorTable, this, propertyName, slot); } bool JSSVGTextElementConstructor::getOwnPropertyDescriptor(ExecState* exec, const Identifier& propertyName, PropertyDescriptor& descriptor) { return getStaticValueDescriptor(exec, &JSSVGTextElementConstructorTable, this, propertyName, descriptor); } /* Hash table for prototype */ #if ENABLE(JIT) #define THUNK_GENERATOR(generator) , generator #else #define THUNK_GENERATOR(generator) #endif static const HashTableValue JSSVGTextElementPrototypeTableValues[5] = { { "getBBox", DontDelete | Function, (intptr_t)static_cast(jsSVGTextElementPrototypeFunctionGetBBox), (intptr_t)0 THUNK_GENERATOR(0) }, { "getCTM", DontDelete | Function, (intptr_t)static_cast(jsSVGTextElementPrototypeFunctionGetCTM), (intptr_t)0 THUNK_GENERATOR(0) }, { "getScreenCTM", DontDelete | Function, (intptr_t)static_cast(jsSVGTextElementPrototypeFunctionGetScreenCTM), (intptr_t)0 THUNK_GENERATOR(0) }, { "getTransformToElement", DontDelete | Function, (intptr_t)static_cast(jsSVGTextElementPrototypeFunctionGetTransformToElement), (intptr_t)1 THUNK_GENERATOR(0) }, { 0, 0, 0, 0 THUNK_GENERATOR(0) } }; #undef THUNK_GENERATOR static JSC_CONST_HASHTABLE HashTable JSSVGTextElementPrototypeTable = { 8, 7, JSSVGTextElementPrototypeTableValues, 0 }; const ClassInfo JSSVGTextElementPrototype::s_info = { "SVGTextElementPrototype", &JSC::JSObjectWithGlobalObject::s_info, &JSSVGTextElementPrototypeTable, 0 }; JSObject* JSSVGTextElementPrototype::self(ExecState* exec, JSGlobalObject* globalObject) { return getDOMPrototype(exec, globalObject); } bool JSSVGTextElementPrototype::getOwnPropertySlot(ExecState* exec, const Identifier& propertyName, PropertySlot& slot) { return getStaticFunctionSlot(exec, &JSSVGTextElementPrototypeTable, this, propertyName, slot); } bool JSSVGTextElementPrototype::getOwnPropertyDescriptor(ExecState* exec, const Identifier& propertyName, PropertyDescriptor& descriptor) { return getStaticFunctionDescriptor(exec, &JSSVGTextElementPrototypeTable, this, propertyName, descriptor); } const ClassInfo JSSVGTextElement::s_info = { "SVGTextElement", &JSSVGTextPositioningElement::s_info, &JSSVGTextElementTable, 0 }; JSSVGTextElement::JSSVGTextElement(Structure* structure, JSDOMGlobalObject* globalObject, PassRefPtr impl) : JSSVGTextPositioningElement(structure, globalObject, impl) { ASSERT(inherits(&s_info)); } JSObject* JSSVGTextElement::createPrototype(ExecState* exec, JSGlobalObject* globalObject) { return new (exec) JSSVGTextElementPrototype(exec->globalData(), globalObject, JSSVGTextElementPrototype::createStructure(exec->globalData(), JSSVGTextPositioningElementPrototype::self(exec, globalObject))); } bool JSSVGTextElement::getOwnPropertySlot(ExecState* exec, const Identifier& propertyName, PropertySlot& slot) { return getStaticValueSlot(exec, &JSSVGTextElementTable, this, propertyName, slot); } bool JSSVGTextElement::getOwnPropertyDescriptor(ExecState* exec, const Identifier& propertyName, PropertyDescriptor& descriptor) { return getStaticValueDescriptor(exec, &JSSVGTextElementTable, this, propertyName, descriptor); } JSValue jsSVGTextElementTransform(ExecState* exec, JSValue slotBase, const Identifier&) { JSSVGTextElement* castedThis = static_cast(asObject(slotBase)); UNUSED_PARAM(exec); SVGTextElement* imp = static_cast(castedThis->impl()); RefPtr obj = imp->transformAnimated(); JSValue result = toJS(exec, castedThis->globalObject(), obj.get()); return result; } JSValue jsSVGTextElementNearestViewportElement(ExecState* exec, JSValue slotBase, const Identifier&) { JSSVGTextElement* castedThis = static_cast(asObject(slotBase)); UNUSED_PARAM(exec); SVGTextElement* imp = static_cast(castedThis->impl()); JSValue result = toJS(exec, castedThis->globalObject(), WTF::getPtr(imp->nearestViewportElement())); return result; } JSValue jsSVGTextElementFarthestViewportElement(ExecState* exec, JSValue slotBase, const Identifier&) { JSSVGTextElement* castedThis = static_cast(asObject(slotBase)); UNUSED_PARAM(exec); SVGTextElement* imp = static_cast(castedThis->impl()); JSValue result = toJS(exec, castedThis->globalObject(), WTF::getPtr(imp->farthestViewportElement())); return result; } JSValue jsSVGTextElementConstructor(ExecState* exec, JSValue slotBase, const Identifier&) { JSSVGTextElement* domObject = static_cast(asObject(slotBase)); return JSSVGTextElement::getConstructor(exec, domObject->globalObject()); } JSValue JSSVGTextElement::getConstructor(ExecState* exec, JSGlobalObject* globalObject) { return getDOMConstructor(exec, static_cast(globalObject)); } EncodedJSValue JSC_HOST_CALL jsSVGTextElementPrototypeFunctionGetBBox(ExecState* exec) { JSValue thisValue = exec->hostThisValue(); if (!thisValue.inherits(&JSSVGTextElement::s_info)) return throwVMTypeError(exec); JSSVGTextElement* castedThis = static_cast(asObject(thisValue)); SVGTextElement* imp = static_cast(castedThis->impl()); JSC::JSValue result = toJS(exec, castedThis->globalObject(), WTF::getPtr(SVGPropertyTearOff::create(imp->getBBox()))); return JSValue::encode(result); } EncodedJSValue JSC_HOST_CALL jsSVGTextElementPrototypeFunctionGetCTM(ExecState* exec) { JSValue thisValue = exec->hostThisValue(); if (!thisValue.inherits(&JSSVGTextElement::s_info)) return throwVMTypeError(exec); JSSVGTextElement* castedThis = static_cast(asObject(thisValue)); SVGTextElement* imp = static_cast(castedThis->impl()); JSC::JSValue result = toJS(exec, castedThis->globalObject(), WTF::getPtr(SVGPropertyTearOff::create(imp->getCTM()))); return JSValue::encode(result); } EncodedJSValue JSC_HOST_CALL jsSVGTextElementPrototypeFunctionGetScreenCTM(ExecState* exec) { JSValue thisValue = exec->hostThisValue(); if (!thisValue.inherits(&JSSVGTextElement::s_info)) return throwVMTypeError(exec); JSSVGTextElement* castedThis = static_cast(asObject(thisValue)); SVGTextElement* imp = static_cast(castedThis->impl()); JSC::JSValue result = toJS(exec, castedThis->globalObject(), WTF::getPtr(SVGPropertyTearOff::create(imp->getScreenCTM()))); return JSValue::encode(result); } EncodedJSValue JSC_HOST_CALL jsSVGTextElementPrototypeFunctionGetTransformToElement(ExecState* exec) { JSValue thisValue = exec->hostThisValue(); if (!thisValue.inherits(&JSSVGTextElement::s_info)) return throwVMTypeError(exec); JSSVGTextElement* castedThis = static_cast(asObject(thisValue)); SVGTextElement* imp = static_cast(castedThis->impl()); ExceptionCode ec = 0; SVGElement* element(toSVGElement(exec->argument(0))); if (exec->hadException()) return JSValue::encode(jsUndefined()); JSC::JSValue result = toJS(exec, castedThis->globalObject(), WTF::getPtr(SVGPropertyTearOff::create(imp->getTransformToElement(element, ec)))); setDOMException(exec, ec); return JSValue::encode(result); } } #endif // ENABLE(SVG)