/* 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" #include "JSRect.h" #include "CSSPrimitiveValue.h" #include "JSCSSPrimitiveValue.h" #include "Rect.h" #include using namespace JSC; namespace WebCore { ASSERT_CLASS_FITS_IN_CELL(JSRect); /* Hash table */ static const HashTableValue JSRectTableValues[6] = { { "top", DontDelete|ReadOnly, (intptr_t)jsRectTop, (intptr_t)0 }, { "right", DontDelete|ReadOnly, (intptr_t)jsRectRight, (intptr_t)0 }, { "bottom", DontDelete|ReadOnly, (intptr_t)jsRectBottom, (intptr_t)0 }, { "left", DontDelete|ReadOnly, (intptr_t)jsRectLeft, (intptr_t)0 }, { "constructor", DontEnum|ReadOnly, (intptr_t)jsRectConstructor, (intptr_t)0 }, { 0, 0, 0, 0 } }; static JSC_CONST_HASHTABLE HashTable JSRectTable = #if ENABLE(PERFECT_HASH_SIZE) { 7, JSRectTableValues, 0 }; #else { 16, 15, JSRectTableValues, 0 }; #endif /* Hash table for constructor */ static const HashTableValue JSRectConstructorTableValues[1] = { { 0, 0, 0, 0 } }; static JSC_CONST_HASHTABLE HashTable JSRectConstructorTable = #if ENABLE(PERFECT_HASH_SIZE) { 0, JSRectConstructorTableValues, 0 }; #else { 1, 0, JSRectConstructorTableValues, 0 }; #endif class JSRectConstructor : public DOMConstructorObject { public: JSRectConstructor(ExecState* exec, JSDOMGlobalObject* globalObject) : DOMConstructorObject(JSRectConstructor::createStructure(globalObject->objectPrototype()), globalObject) { putDirect(exec->propertyNames().prototype, JSRectPrototype::self(exec, globalObject), None); } virtual bool getOwnPropertySlot(ExecState*, const Identifier&, PropertySlot&); virtual const ClassInfo* classInfo() const { return &s_info; } static const ClassInfo s_info; static PassRefPtr createStructure(JSValue proto) { return Structure::create(proto, TypeInfo(ObjectType, ImplementsHasInstance)); } }; const ClassInfo JSRectConstructor::s_info = { "RectConstructor", 0, &JSRectConstructorTable, 0 }; bool JSRectConstructor::getOwnPropertySlot(ExecState* exec, const Identifier& propertyName, PropertySlot& slot) { return getStaticValueSlot(exec, &JSRectConstructorTable, this, propertyName, slot); } /* Hash table for prototype */ static const HashTableValue JSRectPrototypeTableValues[1] = { { 0, 0, 0, 0 } }; static JSC_CONST_HASHTABLE HashTable JSRectPrototypeTable = #if ENABLE(PERFECT_HASH_SIZE) { 0, JSRectPrototypeTableValues, 0 }; #else { 1, 0, JSRectPrototypeTableValues, 0 }; #endif const ClassInfo JSRectPrototype::s_info = { "RectPrototype", 0, &JSRectPrototypeTable, 0 }; JSObject* JSRectPrototype::self(ExecState* exec, JSGlobalObject* globalObject) { return getDOMPrototype(exec, globalObject); } const ClassInfo JSRect::s_info = { "Rect", 0, &JSRectTable, 0 }; JSRect::JSRect(PassRefPtr structure, JSDOMGlobalObject* globalObject, PassRefPtr impl) : DOMObjectWithGlobalPointer(structure, globalObject) , m_impl(impl) { } JSRect::~JSRect() { forgetDOMObject(*Heap::heap(this)->globalData(), m_impl.get()); } JSObject* JSRect::createPrototype(ExecState* exec, JSGlobalObject* globalObject) { return new (exec) JSRectPrototype(JSRectPrototype::createStructure(globalObject->objectPrototype())); } bool JSRect::getOwnPropertySlot(ExecState* exec, const Identifier& propertyName, PropertySlot& slot) { return getStaticValueSlot(exec, &JSRectTable, this, propertyName, slot); } JSValue jsRectTop(ExecState* exec, const Identifier&, const PropertySlot& slot) { JSRect* castedThis = static_cast(asObject(slot.slotBase())); UNUSED_PARAM(exec); Rect* imp = static_cast(castedThis->impl()); return toJS(exec, castedThis->globalObject(), WTF::getPtr(imp->top())); } JSValue jsRectRight(ExecState* exec, const Identifier&, const PropertySlot& slot) { JSRect* castedThis = static_cast(asObject(slot.slotBase())); UNUSED_PARAM(exec); Rect* imp = static_cast(castedThis->impl()); return toJS(exec, castedThis->globalObject(), WTF::getPtr(imp->right())); } JSValue jsRectBottom(ExecState* exec, const Identifier&, const PropertySlot& slot) { JSRect* castedThis = static_cast(asObject(slot.slotBase())); UNUSED_PARAM(exec); Rect* imp = static_cast(castedThis->impl()); return toJS(exec, castedThis->globalObject(), WTF::getPtr(imp->bottom())); } JSValue jsRectLeft(ExecState* exec, const Identifier&, const PropertySlot& slot) { JSRect* castedThis = static_cast(asObject(slot.slotBase())); UNUSED_PARAM(exec); Rect* imp = static_cast(castedThis->impl()); return toJS(exec, castedThis->globalObject(), WTF::getPtr(imp->left())); } JSValue jsRectConstructor(ExecState* exec, const Identifier&, const PropertySlot& slot) { JSRect* domObject = static_cast(asObject(slot.slotBase())); return JSRect::getConstructor(exec, domObject->globalObject()); } JSValue JSRect::getConstructor(ExecState* exec, JSGlobalObject* globalObject) { return getDOMConstructor(exec, static_cast(globalObject)); } JSC::JSValue toJS(JSC::ExecState* exec, JSDOMGlobalObject* globalObject, Rect* object) { return getDOMObjectWrapper(exec, globalObject, object); } Rect* toRect(JSC::JSValue value) { return value.isObject(&JSRect::s_info) ? static_cast(asObject(value))->impl() : 0; } }