summaryrefslogtreecommitdiffstats
path: root/src/3rdparty/webkit/WebCore/generated/JSSVGNumber.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/3rdparty/webkit/WebCore/generated/JSSVGNumber.cpp')
-rw-r--r--src/3rdparty/webkit/WebCore/generated/JSSVGNumber.cpp130
1 files changed, 130 insertions, 0 deletions
diff --git a/src/3rdparty/webkit/WebCore/generated/JSSVGNumber.cpp b/src/3rdparty/webkit/WebCore/generated/JSSVGNumber.cpp
new file mode 100644
index 0000000..6a770af
--- /dev/null
+++ b/src/3rdparty/webkit/WebCore/generated/JSSVGNumber.cpp
@@ -0,0 +1,130 @@
+/*
+ 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 <wtf/GetPtr.h>
+
+
+#include <runtime/JSNumberCell.h>
+
+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)
+{
+ return getDOMPrototype<JSSVGNumber>(exec);
+}
+
+const ClassInfo JSSVGNumber::s_info = { "SVGNumber", 0, &JSSVGNumberTable, 0 };
+
+JSSVGNumber::JSSVGNumber(PassRefPtr<Structure> structure, PassRefPtr<JSSVGPODTypeWrapper<float> > 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)
+{
+ return new (exec) JSSVGNumberPrototype(JSSVGNumberPrototype::createStructure(exec->lexicalGlobalObject()->objectPrototype()));
+}
+
+bool JSSVGNumber::getOwnPropertySlot(ExecState* exec, const Identifier& propertyName, PropertySlot& slot)
+{
+ return getStaticValueSlot<JSSVGNumber, Base>(exec, &JSSVGNumberTable, this, propertyName, slot);
+}
+
+JSValuePtr jsSVGNumberValue(ExecState* exec, const Identifier&, const PropertySlot& slot)
+{
+ float imp(*static_cast<JSSVGNumber*>(asObject(slot.slotBase()))->impl());
+ return jsNumber(exec, imp);
+}
+
+void JSSVGNumber::put(ExecState* exec, const Identifier& propertyName, JSValuePtr value, PutPropertySlot& slot)
+{
+ lookupPut<JSSVGNumber, Base>(exec, propertyName, value, &JSSVGNumberTable, this, slot);
+}
+
+void setJSSVGNumberValue(ExecState* exec, JSObject* thisObject, JSValuePtr value)
+{
+ float imp(*static_cast<JSSVGNumber*>(thisObject)->impl());
+ imp = value->toFloat(exec);
+ static_cast<JSSVGNumber*>(thisObject)->impl()->commitChange(imp, static_cast<JSSVGNumber*>(thisObject)->context());
+}
+
+JSC::JSValuePtr toJS(JSC::ExecState* exec, JSSVGPODTypeWrapper<float>* object, SVGElement* context)
+{
+ return getDOMObjectWrapper<JSSVGNumber, JSSVGPODTypeWrapper<float> >(exec, object, context);
+}
+float toSVGNumber(JSC::JSValuePtr value)
+{
+ return value->isObject(&JSSVGNumber::s_info) ? (float) *static_cast<JSSVGNumber*>(asObject(value))->impl() : 0;
+}
+
+}
+
+#endif // ENABLE(SVG)