diff options
author | Alexis Menard <alexis.menard@nokia.com> | 2009-04-17 10:40:52 (GMT) |
---|---|---|
committer | Alexis Menard <alexis.menard@nokia.com> | 2009-04-17 10:40:52 (GMT) |
commit | bb2e4df9bee3148e819c98410aa36e22dad95d7a (patch) | |
tree | a6e6e8c070a72378d4b2e5f39ad3cc9c368b61ab /src/3rdparty/webkit/WebCore/generated/JSSVGScriptElement.cpp | |
download | Qt-bb2e4df9bee3148e819c98410aa36e22dad95d7a.zip Qt-bb2e4df9bee3148e819c98410aa36e22dad95d7a.tar.gz Qt-bb2e4df9bee3148e819c98410aa36e22dad95d7a.tar.bz2 |
Initial import of kinetic-animations branch from the old kinetic
repository to the new repository
Diffstat (limited to 'src/3rdparty/webkit/WebCore/generated/JSSVGScriptElement.cpp')
-rw-r--r-- | src/3rdparty/webkit/WebCore/generated/JSSVGScriptElement.cpp | 133 |
1 files changed, 133 insertions, 0 deletions
diff --git a/src/3rdparty/webkit/WebCore/generated/JSSVGScriptElement.cpp b/src/3rdparty/webkit/WebCore/generated/JSSVGScriptElement.cpp new file mode 100644 index 0000000..0ebf205 --- /dev/null +++ b/src/3rdparty/webkit/WebCore/generated/JSSVGScriptElement.cpp @@ -0,0 +1,133 @@ +/* + 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 "JSSVGScriptElement.h" + +#include <wtf/GetPtr.h> + +#include "JSSVGAnimatedBoolean.h" +#include "JSSVGAnimatedString.h" +#include "KURL.h" +#include "SVGScriptElement.h" + +#include <runtime/JSString.h> + +using namespace JSC; + +namespace WebCore { + +ASSERT_CLASS_FITS_IN_CELL(JSSVGScriptElement) + +/* Hash table */ + +static const HashTableValue JSSVGScriptElementTableValues[4] = +{ + { "type", DontDelete, (intptr_t)jsSVGScriptElementType, (intptr_t)setJSSVGScriptElementType }, + { "href", DontDelete|ReadOnly, (intptr_t)jsSVGScriptElementHref, (intptr_t)0 }, + { "externalResourcesRequired", DontDelete|ReadOnly, (intptr_t)jsSVGScriptElementExternalResourcesRequired, (intptr_t)0 }, + { 0, 0, 0, 0 } +}; + +static const HashTable JSSVGScriptElementTable = +#if ENABLE(PERFECT_HASH_SIZE) + { 3, JSSVGScriptElementTableValues, 0 }; +#else + { 8, 7, JSSVGScriptElementTableValues, 0 }; +#endif + +/* Hash table for prototype */ + +static const HashTableValue JSSVGScriptElementPrototypeTableValues[1] = +{ + { 0, 0, 0, 0 } +}; + +static const HashTable JSSVGScriptElementPrototypeTable = +#if ENABLE(PERFECT_HASH_SIZE) + { 0, JSSVGScriptElementPrototypeTableValues, 0 }; +#else + { 1, 0, JSSVGScriptElementPrototypeTableValues, 0 }; +#endif + +const ClassInfo JSSVGScriptElementPrototype::s_info = { "SVGScriptElementPrototype", 0, &JSSVGScriptElementPrototypeTable, 0 }; + +JSObject* JSSVGScriptElementPrototype::self(ExecState* exec) +{ + return getDOMPrototype<JSSVGScriptElement>(exec); +} + +const ClassInfo JSSVGScriptElement::s_info = { "SVGScriptElement", &JSSVGElement::s_info, &JSSVGScriptElementTable, 0 }; + +JSSVGScriptElement::JSSVGScriptElement(PassRefPtr<Structure> structure, PassRefPtr<SVGScriptElement> impl) + : JSSVGElement(structure, impl) +{ +} + +JSObject* JSSVGScriptElement::createPrototype(ExecState* exec) +{ + return new (exec) JSSVGScriptElementPrototype(JSSVGScriptElementPrototype::createStructure(JSSVGElementPrototype::self(exec))); +} + +bool JSSVGScriptElement::getOwnPropertySlot(ExecState* exec, const Identifier& propertyName, PropertySlot& slot) +{ + return getStaticValueSlot<JSSVGScriptElement, Base>(exec, &JSSVGScriptElementTable, this, propertyName, slot); +} + +JSValuePtr jsSVGScriptElementType(ExecState* exec, const Identifier&, const PropertySlot& slot) +{ + SVGScriptElement* imp = static_cast<SVGScriptElement*>(static_cast<JSSVGScriptElement*>(asObject(slot.slotBase()))->impl()); + return jsString(exec, imp->type()); +} + +JSValuePtr jsSVGScriptElementHref(ExecState* exec, const Identifier&, const PropertySlot& slot) +{ + SVGScriptElement* imp = static_cast<SVGScriptElement*>(static_cast<JSSVGScriptElement*>(asObject(slot.slotBase()))->impl()); + RefPtr<SVGAnimatedString> obj = imp->hrefAnimated(); + return toJS(exec, obj.get(), imp); +} + +JSValuePtr jsSVGScriptElementExternalResourcesRequired(ExecState* exec, const Identifier&, const PropertySlot& slot) +{ + SVGScriptElement* imp = static_cast<SVGScriptElement*>(static_cast<JSSVGScriptElement*>(asObject(slot.slotBase()))->impl()); + RefPtr<SVGAnimatedBoolean> obj = imp->externalResourcesRequiredAnimated(); + return toJS(exec, obj.get(), imp); +} + +void JSSVGScriptElement::put(ExecState* exec, const Identifier& propertyName, JSValuePtr value, PutPropertySlot& slot) +{ + lookupPut<JSSVGScriptElement, Base>(exec, propertyName, value, &JSSVGScriptElementTable, this, slot); +} + +void setJSSVGScriptElementType(ExecState* exec, JSObject* thisObject, JSValuePtr value) +{ + SVGScriptElement* imp = static_cast<SVGScriptElement*>(static_cast<JSSVGScriptElement*>(thisObject)->impl()); + imp->setType(valueToStringWithNullCheck(exec, value)); +} + + +} + +#endif // ENABLE(SVG) |