tizen beta release
[profile/ivi/webkit-efl.git] / DerivedSources / WebCore / JSSVGTransform.h
1 /*
2     This file is part of the WebKit open source project.
3     This file has been generated by generate-bindings.pl. DO NOT MODIFY!
4
5     This library is free software; you can redistribute it and/or
6     modify it under the terms of the GNU Library General Public
7     License as published by the Free Software Foundation; either
8     version 2 of the License, or (at your option) any later version.
9
10     This library is distributed in the hope that it will be useful,
11     but WITHOUT ANY WARRANTY; without even the implied warranty of
12     MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
13     Library General Public License for more details.
14
15     You should have received a copy of the GNU Library General Public License
16     along with this library; see the file COPYING.LIB.  If not, write to
17     the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
18     Boston, MA 02110-1301, USA.
19 */
20
21 #ifndef JSSVGTransform_h
22 #define JSSVGTransform_h
23
24 #if ENABLE(SVG)
25
26 #include "JSDOMBinding.h"
27 #include "SVGAnimatedPropertyTearOff.h"
28 #include "SVGElement.h"
29 #include "SVGTransform.h"
30 #include <runtime/JSGlobalObject.h>
31 #include <runtime/JSObject.h>
32 #include <runtime/ObjectPrototype.h>
33
34 namespace WebCore {
35
36 class JSSVGTransform : public JSDOMWrapper {
37 public:
38     typedef JSDOMWrapper Base;
39     static JSSVGTransform* create(JSC::Structure* structure, JSDOMGlobalObject* globalObject, PassRefPtr<SVGPropertyTearOff<SVGTransform> > impl)
40     {
41         JSSVGTransform* ptr = new (JSC::allocateCell<JSSVGTransform>(globalObject->globalData().heap)) JSSVGTransform(structure, globalObject, impl);
42         ptr->finishCreation(globalObject->globalData());
43         return ptr;
44     }
45
46     static JSC::JSObject* createPrototype(JSC::ExecState*, JSC::JSGlobalObject*);
47     static bool getOwnPropertySlot(JSC::JSCell*, JSC::ExecState*, const JSC::Identifier& propertyName, JSC::PropertySlot&);
48     static bool getOwnPropertyDescriptor(JSC::JSObject*, JSC::ExecState*, const JSC::Identifier& propertyName, JSC::PropertyDescriptor&);
49     static const JSC::ClassInfo s_info;
50
51     static JSC::Structure* createStructure(JSC::JSGlobalData& globalData, JSC::JSGlobalObject* globalObject, JSC::JSValue prototype)
52     {
53         return JSC::Structure::create(globalData, globalObject, prototype, JSC::TypeInfo(JSC::ObjectType, StructureFlags), &s_info);
54     }
55
56     static JSC::JSValue getConstructor(JSC::ExecState*, JSC::JSGlobalObject*);
57     SVGPropertyTearOff<SVGTransform> * impl() const { return m_impl; }
58     void releaseImpl() { m_impl->deref(); m_impl = 0; }
59
60 private:
61     SVGPropertyTearOff<SVGTransform> * m_impl;
62 protected:
63     JSSVGTransform(JSC::Structure*, JSDOMGlobalObject*, PassRefPtr<SVGPropertyTearOff<SVGTransform> >);
64     void finishCreation(JSC::JSGlobalData&);
65     static const unsigned StructureFlags = JSC::OverridesGetOwnPropertySlot | Base::StructureFlags;
66 };
67
68 class JSSVGTransformOwner : public JSC::WeakHandleOwner {
69     virtual bool isReachableFromOpaqueRoots(JSC::Handle<JSC::Unknown>, void* context, JSC::SlotVisitor&);
70     virtual void finalize(JSC::Handle<JSC::Unknown>, void* context);
71 };
72
73 inline JSC::WeakHandleOwner* wrapperOwner(DOMWrapperWorld*, SVGPropertyTearOff<SVGTransform> *)
74 {
75     DEFINE_STATIC_LOCAL(JSSVGTransformOwner, jsSVGTransformOwner, ());
76     return &jsSVGTransformOwner;
77 }
78
79 inline void* wrapperContext(DOMWrapperWorld* world, SVGPropertyTearOff<SVGTransform> *)
80 {
81     return world;
82 }
83
84 JSC::JSValue toJS(JSC::ExecState*, JSDOMGlobalObject*, SVGPropertyTearOff<SVGTransform> *);
85 SVGPropertyTearOff<SVGTransform> * toSVGTransform(JSC::JSValue);
86
87 class JSSVGTransformPrototype : public JSC::JSNonFinalObject {
88 public:
89     typedef JSC::JSNonFinalObject Base;
90     static JSC::JSObject* self(JSC::ExecState*, JSC::JSGlobalObject*);
91     static JSSVGTransformPrototype* create(JSC::JSGlobalData& globalData, JSC::JSGlobalObject* globalObject, JSC::Structure* structure)
92     {
93         JSSVGTransformPrototype* ptr = new (JSC::allocateCell<JSSVGTransformPrototype>(globalData.heap)) JSSVGTransformPrototype(globalData, globalObject, structure);
94         ptr->finishCreation(globalData);
95         return ptr;
96     }
97
98     static const JSC::ClassInfo s_info;
99     static bool getOwnPropertySlot(JSC::JSCell*, JSC::ExecState*, const JSC::Identifier&, JSC::PropertySlot&);
100     static bool getOwnPropertyDescriptor(JSC::JSObject*, JSC::ExecState*, const JSC::Identifier&, JSC::PropertyDescriptor&);
101     static JSC::Structure* createStructure(JSC::JSGlobalData& globalData, JSC::JSGlobalObject* globalObject, JSC::JSValue prototype)
102     {
103         return JSC::Structure::create(globalData, globalObject, prototype, JSC::TypeInfo(JSC::ObjectType, StructureFlags), &s_info);
104     }
105
106 private:
107     JSSVGTransformPrototype(JSC::JSGlobalData& globalData, JSC::JSGlobalObject*, JSC::Structure* structure) : JSC::JSNonFinalObject(globalData, structure) { }
108 protected:
109     static const unsigned StructureFlags = JSC::OverridesGetOwnPropertySlot | Base::StructureFlags;
110 };
111
112 class JSSVGTransformConstructor : public DOMConstructorObject {
113 private:
114     JSSVGTransformConstructor(JSC::Structure*, JSDOMGlobalObject*);
115     void finishCreation(JSC::ExecState*, JSDOMGlobalObject*);
116
117 public:
118     typedef DOMConstructorObject Base;
119     static JSSVGTransformConstructor* create(JSC::ExecState* exec, JSC::Structure* structure, JSDOMGlobalObject* globalObject)
120     {
121         JSSVGTransformConstructor* ptr = new (JSC::allocateCell<JSSVGTransformConstructor>(*exec->heap())) JSSVGTransformConstructor(structure, globalObject);
122         ptr->finishCreation(exec, globalObject);
123         return ptr;
124     }
125
126     static bool getOwnPropertySlot(JSC::JSCell*, JSC::ExecState*, const JSC::Identifier&, JSC::PropertySlot&);
127     static bool getOwnPropertyDescriptor(JSC::JSObject*, JSC::ExecState*, const JSC::Identifier&, JSC::PropertyDescriptor&);
128     static const JSC::ClassInfo s_info;
129     static JSC::Structure* createStructure(JSC::JSGlobalData& globalData, JSC::JSGlobalObject* globalObject, JSC::JSValue prototype)
130     {
131         return JSC::Structure::create(globalData, globalObject, prototype, JSC::TypeInfo(JSC::ObjectType, StructureFlags), &s_info);
132     }
133 protected:
134     static const unsigned StructureFlags = JSC::OverridesGetOwnPropertySlot | JSC::ImplementsHasInstance | DOMConstructorObject::StructureFlags;
135 };
136
137 // Functions
138
139 JSC::EncodedJSValue JSC_HOST_CALL jsSVGTransformPrototypeFunctionSetMatrix(JSC::ExecState*);
140 JSC::EncodedJSValue JSC_HOST_CALL jsSVGTransformPrototypeFunctionSetTranslate(JSC::ExecState*);
141 JSC::EncodedJSValue JSC_HOST_CALL jsSVGTransformPrototypeFunctionSetScale(JSC::ExecState*);
142 JSC::EncodedJSValue JSC_HOST_CALL jsSVGTransformPrototypeFunctionSetRotate(JSC::ExecState*);
143 JSC::EncodedJSValue JSC_HOST_CALL jsSVGTransformPrototypeFunctionSetSkewX(JSC::ExecState*);
144 JSC::EncodedJSValue JSC_HOST_CALL jsSVGTransformPrototypeFunctionSetSkewY(JSC::ExecState*);
145 // Attributes
146
147 JSC::JSValue jsSVGTransformType(JSC::ExecState*, JSC::JSValue, const JSC::Identifier&);
148 JSC::JSValue jsSVGTransformMatrix(JSC::ExecState*, JSC::JSValue, const JSC::Identifier&);
149 JSC::JSValue jsSVGTransformAngle(JSC::ExecState*, JSC::JSValue, const JSC::Identifier&);
150 JSC::JSValue jsSVGTransformConstructor(JSC::ExecState*, JSC::JSValue, const JSC::Identifier&);
151 // Constants
152
153 JSC::JSValue jsSVGTransformSVG_TRANSFORM_UNKNOWN(JSC::ExecState*, JSC::JSValue, const JSC::Identifier&);
154 JSC::JSValue jsSVGTransformSVG_TRANSFORM_MATRIX(JSC::ExecState*, JSC::JSValue, const JSC::Identifier&);
155 JSC::JSValue jsSVGTransformSVG_TRANSFORM_TRANSLATE(JSC::ExecState*, JSC::JSValue, const JSC::Identifier&);
156 JSC::JSValue jsSVGTransformSVG_TRANSFORM_SCALE(JSC::ExecState*, JSC::JSValue, const JSC::Identifier&);
157 JSC::JSValue jsSVGTransformSVG_TRANSFORM_ROTATE(JSC::ExecState*, JSC::JSValue, const JSC::Identifier&);
158 JSC::JSValue jsSVGTransformSVG_TRANSFORM_SKEWX(JSC::ExecState*, JSC::JSValue, const JSC::Identifier&);
159 JSC::JSValue jsSVGTransformSVG_TRANSFORM_SKEWY(JSC::ExecState*, JSC::JSValue, const JSC::Identifier&);
160
161 } // namespace WebCore
162
163 #endif // ENABLE(SVG)
164
165 #endif