~oif-team/ubuntu/natty/qt4-x11/xi2.1

« back to all changes in this revision

Viewing changes to src/3rdparty/webkit/WebCore/generated/JSSVGFESpotLightElement.h

  • Committer: Bazaar Package Importer
  • Author(s): Alessandro Ghersi
  • Date: 2009-11-02 18:30:08 UTC
  • mfrom: (1.2.2 upstream)
  • mto: (15.2.5 experimental)
  • mto: This revision was merged to the branch mainline in revision 88.
  • Revision ID: james.westby@ubuntu.com-20091102183008-b6a4gcs128mvfb3m
Tags: upstream-4.6.0~beta1
ImportĀ upstreamĀ versionĀ 4.6.0~beta1

Show diffs side-by-side

added added

removed removed

Lines of Context:
21
21
#ifndef JSSVGFESpotLightElement_h
22
22
#define JSSVGFESpotLightElement_h
23
23
 
24
 
 
25
 
#if ENABLE(SVG) && ENABLE(SVG_FILTERS)
 
24
#if ENABLE(SVG) && ENABLE(FILTERS)
26
25
 
27
26
#include "JSSVGElement.h"
 
27
#include "SVGElement.h"
28
28
 
29
29
namespace WebCore {
30
30
 
33
33
class JSSVGFESpotLightElement : public JSSVGElement {
34
34
    typedef JSSVGElement Base;
35
35
public:
36
 
    JSSVGFESpotLightElement(PassRefPtr<JSC::Structure>, PassRefPtr<SVGFESpotLightElement>);
 
36
    JSSVGFESpotLightElement(NonNullPassRefPtr<JSC::Structure>, JSDOMGlobalObject*, PassRefPtr<SVGFESpotLightElement>);
37
37
    static JSC::JSObject* createPrototype(JSC::ExecState*, JSC::JSGlobalObject*);
38
38
    virtual bool getOwnPropertySlot(JSC::ExecState*, const JSC::Identifier& propertyName, JSC::PropertySlot&);
 
39
    virtual bool getOwnPropertyDescriptor(JSC::ExecState*, const JSC::Identifier& propertyName, JSC::PropertyDescriptor&);
39
40
    virtual const JSC::ClassInfo* classInfo() const { return &s_info; }
40
41
    static const JSC::ClassInfo s_info;
41
42
 
42
 
    static PassRefPtr<JSC::Structure> createStructure(JSC::JSValuePtr prototype)
 
43
    static PassRefPtr<JSC::Structure> createStructure(JSC::JSValue prototype)
43
44
    {
44
45
        return JSC::Structure::create(prototype, JSC::TypeInfo(JSC::ObjectType));
45
46
    }
48
49
 
49
50
 
50
51
class JSSVGFESpotLightElementPrototype : public JSC::JSObject {
 
52
    typedef JSC::JSObject Base;
51
53
public:
52
54
    static JSC::JSObject* self(JSC::ExecState*, JSC::JSGlobalObject*);
53
55
    virtual const JSC::ClassInfo* classInfo() const { return &s_info; }
54
56
    static const JSC::ClassInfo s_info;
55
 
    JSSVGFESpotLightElementPrototype(PassRefPtr<JSC::Structure> structure) : JSC::JSObject(structure) { }
 
57
    JSSVGFESpotLightElementPrototype(NonNullPassRefPtr<JSC::Structure> structure) : JSC::JSObject(structure) { }
56
58
};
57
59
 
58
60
// Attributes
59
61
 
60
 
JSC::JSValuePtr jsSVGFESpotLightElementX(JSC::ExecState*, const JSC::Identifier&, const JSC::PropertySlot&);
61
 
JSC::JSValuePtr jsSVGFESpotLightElementY(JSC::ExecState*, const JSC::Identifier&, const JSC::PropertySlot&);
62
 
JSC::JSValuePtr jsSVGFESpotLightElementZ(JSC::ExecState*, const JSC::Identifier&, const JSC::PropertySlot&);
63
 
JSC::JSValuePtr jsSVGFESpotLightElementPointsAtX(JSC::ExecState*, const JSC::Identifier&, const JSC::PropertySlot&);
64
 
JSC::JSValuePtr jsSVGFESpotLightElementPointsAtY(JSC::ExecState*, const JSC::Identifier&, const JSC::PropertySlot&);
65
 
JSC::JSValuePtr jsSVGFESpotLightElementPointsAtZ(JSC::ExecState*, const JSC::Identifier&, const JSC::PropertySlot&);
66
 
JSC::JSValuePtr jsSVGFESpotLightElementSpecularExponent(JSC::ExecState*, const JSC::Identifier&, const JSC::PropertySlot&);
67
 
JSC::JSValuePtr jsSVGFESpotLightElementLimitingConeAngle(JSC::ExecState*, const JSC::Identifier&, const JSC::PropertySlot&);
 
62
JSC::JSValue jsSVGFESpotLightElementX(JSC::ExecState*, const JSC::Identifier&, const JSC::PropertySlot&);
 
63
JSC::JSValue jsSVGFESpotLightElementY(JSC::ExecState*, const JSC::Identifier&, const JSC::PropertySlot&);
 
64
JSC::JSValue jsSVGFESpotLightElementZ(JSC::ExecState*, const JSC::Identifier&, const JSC::PropertySlot&);
 
65
JSC::JSValue jsSVGFESpotLightElementPointsAtX(JSC::ExecState*, const JSC::Identifier&, const JSC::PropertySlot&);
 
66
JSC::JSValue jsSVGFESpotLightElementPointsAtY(JSC::ExecState*, const JSC::Identifier&, const JSC::PropertySlot&);
 
67
JSC::JSValue jsSVGFESpotLightElementPointsAtZ(JSC::ExecState*, const JSC::Identifier&, const JSC::PropertySlot&);
 
68
JSC::JSValue jsSVGFESpotLightElementSpecularExponent(JSC::ExecState*, const JSC::Identifier&, const JSC::PropertySlot&);
 
69
JSC::JSValue jsSVGFESpotLightElementLimitingConeAngle(JSC::ExecState*, const JSC::Identifier&, const JSC::PropertySlot&);
68
70
 
69
71
} // namespace WebCore
70
72
 
71
 
#endif // ENABLE(SVG) && ENABLE(SVG_FILTERS)
 
73
#endif // ENABLE(SVG) && ENABLE(FILTERS)
72
74
 
73
75
#endif