webengine/osswebengine/DerivedSources/WebCore/JSSVGFEGaussianBlurElement.cpp
changeset 0 dd21522fd290
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/webengine/osswebengine/DerivedSources/WebCore/JSSVGFEGaussianBlurElement.cpp	Mon Mar 30 12:54:55 2009 +0300
@@ -0,0 +1,312 @@
+/*
+    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) && ENABLE(SVG_EXPERIMENTAL_FEATURES)
+
+#include "Document.h"
+#include "Frame.h"
+#include "SVGDocumentExtensions.h"
+#include "SVGElement.h"
+#include "SVGAnimatedTemplate.h"
+#include "JSSVGFEGaussianBlurElement.h"
+
+#include <wtf/GetPtr.h>
+
+#include "CSSMutableStyleDeclaration.h"
+#include "CSSStyleDeclaration.h"
+#include "JSCSSStyleDeclaration.h"
+#include "JSSVGAnimatedLength.h"
+#include "JSSVGAnimatedNumber.h"
+#include "JSSVGAnimatedString.h"
+#include "SVGFEGaussianBlurElement.h"
+
+using namespace KJS;
+
+namespace WebCore {
+
+/* Hash table */
+
+static const HashEntry JSSVGFEGaussianBlurElementTableEntries[] =
+{
+    { "stdDeviationY", JSSVGFEGaussianBlurElement::StdDeviationYAttrNum, DontDelete|ReadOnly, 0, 0 },
+    { "width", JSSVGFEGaussianBlurElement::WidthAttrNum, DontDelete|ReadOnly, 0, 0 },
+    { 0, 0, 0, 0, 0 },
+    { "x", JSSVGFEGaussianBlurElement::XAttrNum, DontDelete|ReadOnly, 0, 0 },
+    { "stdDeviationX", JSSVGFEGaussianBlurElement::StdDeviationXAttrNum, DontDelete|ReadOnly, 0, 0 },
+    { 0, 0, 0, 0, 0 },
+    { "in1", JSSVGFEGaussianBlurElement::In1AttrNum, DontDelete|ReadOnly, 0, &JSSVGFEGaussianBlurElementTableEntries[10] },
+    { "height", JSSVGFEGaussianBlurElement::HeightAttrNum, DontDelete|ReadOnly, 0, 0 },
+    { "result", JSSVGFEGaussianBlurElement::ResultAttrNum, DontDelete|ReadOnly, 0, 0 },
+    { 0, 0, 0, 0, 0 },
+    { "y", JSSVGFEGaussianBlurElement::YAttrNum, DontDelete|ReadOnly, 0, &JSSVGFEGaussianBlurElementTableEntries[11] },
+    { "className", JSSVGFEGaussianBlurElement::ClassNameAttrNum, DontDelete|ReadOnly, 0, &JSSVGFEGaussianBlurElementTableEntries[12] },
+    { "style", JSSVGFEGaussianBlurElement::StyleAttrNum, DontDelete|ReadOnly, 0, 0 }
+};
+
+static const HashTable JSSVGFEGaussianBlurElementTable = 
+{
+    2, 13, JSSVGFEGaussianBlurElementTableEntries, 10
+};
+
+/* Hash table for prototype */
+
+static const HashEntry JSSVGFEGaussianBlurElementPrototypeTableEntries[] =
+{
+    { "setStdDeviation", JSSVGFEGaussianBlurElement::SetStdDeviationFuncNum, DontDelete|Function, 2, 0 }
+};
+
+static const HashTable JSSVGFEGaussianBlurElementPrototypeTable = 
+{
+    2, 1, JSSVGFEGaussianBlurElementPrototypeTableEntries, 1
+};
+
+const ClassInfo JSSVGFEGaussianBlurElementPrototype::info = { "SVGFEGaussianBlurElementPrototype", 0, &JSSVGFEGaussianBlurElementPrototypeTable, 0 };
+
+JSObject* JSSVGFEGaussianBlurElementPrototype::self(ExecState* exec)
+{
+    return KJS::cacheGlobalObject<JSSVGFEGaussianBlurElementPrototype>(exec, "[[JSSVGFEGaussianBlurElement.prototype]]");
+}
+
+bool JSSVGFEGaussianBlurElementPrototype::getOwnPropertySlot(ExecState* exec, const Identifier& propertyName, PropertySlot& slot)
+{
+    return getStaticFunctionSlot<JSSVGFEGaussianBlurElementPrototypeFunction, JSObject>(exec, &JSSVGFEGaussianBlurElementPrototypeTable, this, propertyName, slot);
+}
+
+const ClassInfo JSSVGFEGaussianBlurElement::info = { "SVGFEGaussianBlurElement", &JSSVGElement::info, &JSSVGFEGaussianBlurElementTable, 0 };
+
+JSSVGFEGaussianBlurElement::JSSVGFEGaussianBlurElement(ExecState* exec, SVGFEGaussianBlurElement* impl)
+    : JSSVGElement(exec, impl)
+{
+    setPrototype(JSSVGFEGaussianBlurElementPrototype::self(exec));
+}
+
+bool JSSVGFEGaussianBlurElement::getOwnPropertySlot(ExecState* exec, const Identifier& propertyName, PropertySlot& slot)
+{
+    return getStaticValueSlot<JSSVGFEGaussianBlurElement, JSSVGElement>(exec, &JSSVGFEGaussianBlurElementTable, this, propertyName, slot);
+}
+
+JSValue* JSSVGFEGaussianBlurElement::getValueProperty(ExecState* exec, int token) const
+{
+    switch (token) {
+    case In1AttrNum: {
+        SVGFEGaussianBlurElement* imp = static_cast<SVGFEGaussianBlurElement*>(impl());
+
+        ASSERT(exec && exec->dynamicInterpreter());
+
+        RefPtr<SVGAnimatedString> obj = imp->in1Animated();
+        Frame* activeFrame = static_cast<ScriptInterpreter*>(exec->dynamicInterpreter())->frame();
+        if (activeFrame) {
+            SVGDocumentExtensions* extensions = (activeFrame->document() ? activeFrame->document()->accessSVGExtensions() : 0);
+            if (extensions) {
+                if (extensions->hasGenericContext<SVGAnimatedString>(obj.get()))
+                    ASSERT(extensions->genericContext<SVGAnimatedString>(obj.get()) == imp);
+                else
+                    extensions->setGenericContext<SVGAnimatedString>(obj.get(), imp);
+            }
+        }
+
+        return toJS(exec, obj.get());
+    }
+    case StdDeviationXAttrNum: {
+        SVGFEGaussianBlurElement* imp = static_cast<SVGFEGaussianBlurElement*>(impl());
+
+        ASSERT(exec && exec->dynamicInterpreter());
+
+        RefPtr<SVGAnimatedNumber> obj = imp->stdDeviationXAnimated();
+        Frame* activeFrame = static_cast<ScriptInterpreter*>(exec->dynamicInterpreter())->frame();
+        if (activeFrame) {
+            SVGDocumentExtensions* extensions = (activeFrame->document() ? activeFrame->document()->accessSVGExtensions() : 0);
+            if (extensions) {
+                if (extensions->hasGenericContext<SVGAnimatedNumber>(obj.get()))
+                    ASSERT(extensions->genericContext<SVGAnimatedNumber>(obj.get()) == imp);
+                else
+                    extensions->setGenericContext<SVGAnimatedNumber>(obj.get(), imp);
+            }
+        }
+
+        return toJS(exec, obj.get());
+    }
+    case StdDeviationYAttrNum: {
+        SVGFEGaussianBlurElement* imp = static_cast<SVGFEGaussianBlurElement*>(impl());
+
+        ASSERT(exec && exec->dynamicInterpreter());
+
+        RefPtr<SVGAnimatedNumber> obj = imp->stdDeviationYAnimated();
+        Frame* activeFrame = static_cast<ScriptInterpreter*>(exec->dynamicInterpreter())->frame();
+        if (activeFrame) {
+            SVGDocumentExtensions* extensions = (activeFrame->document() ? activeFrame->document()->accessSVGExtensions() : 0);
+            if (extensions) {
+                if (extensions->hasGenericContext<SVGAnimatedNumber>(obj.get()))
+                    ASSERT(extensions->genericContext<SVGAnimatedNumber>(obj.get()) == imp);
+                else
+                    extensions->setGenericContext<SVGAnimatedNumber>(obj.get(), imp);
+            }
+        }
+
+        return toJS(exec, obj.get());
+    }
+    case XAttrNum: {
+        SVGFEGaussianBlurElement* imp = static_cast<SVGFEGaussianBlurElement*>(impl());
+
+        ASSERT(exec && exec->dynamicInterpreter());
+
+        RefPtr<SVGAnimatedLength> obj = imp->xAnimated();
+        Frame* activeFrame = static_cast<ScriptInterpreter*>(exec->dynamicInterpreter())->frame();
+        if (activeFrame) {
+            SVGDocumentExtensions* extensions = (activeFrame->document() ? activeFrame->document()->accessSVGExtensions() : 0);
+            if (extensions) {
+                if (extensions->hasGenericContext<SVGAnimatedLength>(obj.get()))
+                    ASSERT(extensions->genericContext<SVGAnimatedLength>(obj.get()) == imp);
+                else
+                    extensions->setGenericContext<SVGAnimatedLength>(obj.get(), imp);
+            }
+        }
+
+        return toJS(exec, obj.get());
+    }
+    case YAttrNum: {
+        SVGFEGaussianBlurElement* imp = static_cast<SVGFEGaussianBlurElement*>(impl());
+
+        ASSERT(exec && exec->dynamicInterpreter());
+
+        RefPtr<SVGAnimatedLength> obj = imp->yAnimated();
+        Frame* activeFrame = static_cast<ScriptInterpreter*>(exec->dynamicInterpreter())->frame();
+        if (activeFrame) {
+            SVGDocumentExtensions* extensions = (activeFrame->document() ? activeFrame->document()->accessSVGExtensions() : 0);
+            if (extensions) {
+                if (extensions->hasGenericContext<SVGAnimatedLength>(obj.get()))
+                    ASSERT(extensions->genericContext<SVGAnimatedLength>(obj.get()) == imp);
+                else
+                    extensions->setGenericContext<SVGAnimatedLength>(obj.get(), imp);
+            }
+        }
+
+        return toJS(exec, obj.get());
+    }
+    case WidthAttrNum: {
+        SVGFEGaussianBlurElement* imp = static_cast<SVGFEGaussianBlurElement*>(impl());
+
+        ASSERT(exec && exec->dynamicInterpreter());
+
+        RefPtr<SVGAnimatedLength> obj = imp->widthAnimated();
+        Frame* activeFrame = static_cast<ScriptInterpreter*>(exec->dynamicInterpreter())->frame();
+        if (activeFrame) {
+            SVGDocumentExtensions* extensions = (activeFrame->document() ? activeFrame->document()->accessSVGExtensions() : 0);
+            if (extensions) {
+                if (extensions->hasGenericContext<SVGAnimatedLength>(obj.get()))
+                    ASSERT(extensions->genericContext<SVGAnimatedLength>(obj.get()) == imp);
+                else
+                    extensions->setGenericContext<SVGAnimatedLength>(obj.get(), imp);
+            }
+        }
+
+        return toJS(exec, obj.get());
+    }
+    case HeightAttrNum: {
+        SVGFEGaussianBlurElement* imp = static_cast<SVGFEGaussianBlurElement*>(impl());
+
+        ASSERT(exec && exec->dynamicInterpreter());
+
+        RefPtr<SVGAnimatedLength> obj = imp->heightAnimated();
+        Frame* activeFrame = static_cast<ScriptInterpreter*>(exec->dynamicInterpreter())->frame();
+        if (activeFrame) {
+            SVGDocumentExtensions* extensions = (activeFrame->document() ? activeFrame->document()->accessSVGExtensions() : 0);
+            if (extensions) {
+                if (extensions->hasGenericContext<SVGAnimatedLength>(obj.get()))
+                    ASSERT(extensions->genericContext<SVGAnimatedLength>(obj.get()) == imp);
+                else
+                    extensions->setGenericContext<SVGAnimatedLength>(obj.get(), imp);
+            }
+        }
+
+        return toJS(exec, obj.get());
+    }
+    case ResultAttrNum: {
+        SVGFEGaussianBlurElement* imp = static_cast<SVGFEGaussianBlurElement*>(impl());
+
+        ASSERT(exec && exec->dynamicInterpreter());
+
+        RefPtr<SVGAnimatedString> obj = imp->resultAnimated();
+        Frame* activeFrame = static_cast<ScriptInterpreter*>(exec->dynamicInterpreter())->frame();
+        if (activeFrame) {
+            SVGDocumentExtensions* extensions = (activeFrame->document() ? activeFrame->document()->accessSVGExtensions() : 0);
+            if (extensions) {
+                if (extensions->hasGenericContext<SVGAnimatedString>(obj.get()))
+                    ASSERT(extensions->genericContext<SVGAnimatedString>(obj.get()) == imp);
+                else
+                    extensions->setGenericContext<SVGAnimatedString>(obj.get(), imp);
+            }
+        }
+
+        return toJS(exec, obj.get());
+    }
+    case ClassNameAttrNum: {
+        SVGFEGaussianBlurElement* imp = static_cast<SVGFEGaussianBlurElement*>(impl());
+
+        ASSERT(exec && exec->dynamicInterpreter());
+
+        RefPtr<SVGAnimatedString> obj = imp->classNameAnimated();
+        Frame* activeFrame = static_cast<ScriptInterpreter*>(exec->dynamicInterpreter())->frame();
+        if (activeFrame) {
+            SVGDocumentExtensions* extensions = (activeFrame->document() ? activeFrame->document()->accessSVGExtensions() : 0);
+            if (extensions) {
+                if (extensions->hasGenericContext<SVGAnimatedString>(obj.get()))
+                    ASSERT(extensions->genericContext<SVGAnimatedString>(obj.get()) == imp);
+                else
+                    extensions->setGenericContext<SVGAnimatedString>(obj.get(), imp);
+            }
+        }
+
+        return toJS(exec, obj.get());
+    }
+    case StyleAttrNum: {
+        SVGFEGaussianBlurElement* imp = static_cast<SVGFEGaussianBlurElement*>(impl());
+
+        return toJS(exec, WTF::getPtr(imp->style()));
+    }
+    }
+    return 0;
+}
+
+JSValue* JSSVGFEGaussianBlurElementPrototypeFunction::callAsFunction(ExecState* exec, JSObject* thisObj, const List& args)
+{
+    if (!thisObj->inherits(&JSSVGFEGaussianBlurElement::info))
+      return throwError(exec, TypeError);
+
+    SVGFEGaussianBlurElement* imp = static_cast<SVGFEGaussianBlurElement*>(static_cast<JSSVGFEGaussianBlurElement*>(thisObj)->impl());
+
+    switch (id) {
+    case JSSVGFEGaussianBlurElement::SetStdDeviationFuncNum: {
+        float stdDeviationX = args[0]->toFloat(exec);
+        float stdDeviationY = args[1]->toFloat(exec);
+
+        imp->setStdDeviation(stdDeviationX, stdDeviationY);
+        return jsUndefined();
+    }
+    }
+    return 0;
+}
+
+}
+
+#endif // ENABLE(SVG) && ENABLE(SVG_EXPERIMENTAL_FEATURES)