1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
|
/*
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"
#include "JSCanvasGradient.h"
#include <wtf/GetPtr.h>
#include "CanvasGradient.h"
#include "PlatformString.h"
#include <runtime/Error.h>
using namespace JSC;
namespace WebCore {
ASSERT_CLASS_FITS_IN_CELL(JSCanvasGradient)
/* Hash table for prototype */
static const HashTableValue JSCanvasGradientPrototypeTableValues[2] =
{
{ "addColorStop", DontDelete|Function, (intptr_t)jsCanvasGradientPrototypeFunctionAddColorStop, (intptr_t)2 },
{ 0, 0, 0, 0 }
};
static const HashTable JSCanvasGradientPrototypeTable =
#if ENABLE(PERFECT_HASH_SIZE)
{ 0, JSCanvasGradientPrototypeTableValues, 0 };
#else
{ 2, 1, JSCanvasGradientPrototypeTableValues, 0 };
#endif
const ClassInfo JSCanvasGradientPrototype::s_info = { "CanvasGradientPrototype", 0, &JSCanvasGradientPrototypeTable, 0 };
JSObject* JSCanvasGradientPrototype::self(ExecState* exec)
{
return getDOMPrototype<JSCanvasGradient>(exec);
}
bool JSCanvasGradientPrototype::getOwnPropertySlot(ExecState* exec, const Identifier& propertyName, PropertySlot& slot)
{
return getStaticFunctionSlot<JSObject>(exec, &JSCanvasGradientPrototypeTable, this, propertyName, slot);
}
const ClassInfo JSCanvasGradient::s_info = { "CanvasGradient", 0, 0, 0 };
JSCanvasGradient::JSCanvasGradient(PassRefPtr<Structure> structure, PassRefPtr<CanvasGradient> impl)
: DOMObject(structure)
, m_impl(impl)
{
}
JSCanvasGradient::~JSCanvasGradient()
{
forgetDOMObject(*Heap::heap(this)->globalData(), m_impl.get());
}
JSObject* JSCanvasGradient::createPrototype(ExecState* exec)
{
return new (exec) JSCanvasGradientPrototype(JSCanvasGradientPrototype::createStructure(exec->lexicalGlobalObject()->objectPrototype()));
}
JSValuePtr jsCanvasGradientPrototypeFunctionAddColorStop(ExecState* exec, JSObject*, JSValuePtr thisValue, const ArgList& args)
{
if (!thisValue->isObject(&JSCanvasGradient::s_info))
return throwError(exec, TypeError);
JSCanvasGradient* castedThisObj = static_cast<JSCanvasGradient*>(asObject(thisValue));
CanvasGradient* imp = static_cast<CanvasGradient*>(castedThisObj->impl());
ExceptionCode ec = 0;
float offset = args.at(exec, 0)->toFloat(exec);
const UString& color = args.at(exec, 1)->toString(exec);
imp->addColorStop(offset, color, ec);
setDOMException(exec, ec);
return jsUndefined();
}
JSC::JSValuePtr toJS(JSC::ExecState* exec, CanvasGradient* object)
{
return getDOMObjectWrapper<JSCanvasGradient>(exec, object);
}
CanvasGradient* toCanvasGradient(JSC::JSValuePtr value)
{
return value->isObject(&JSCanvasGradient::s_info) ? static_cast<JSCanvasGradient*>(asObject(value))->impl() : 0;
}
}
|