tizen beta release
[profile/ivi/webkit-efl.git] / Source / WebCore / bindings / v8 / custom / V8EventCustom.cpp
1 /*
2  * Copyright (C) 2010 Google Inc. All rights reserved.
3  *
4  * Redistribution and use in source and binary forms, with or without
5  * modification, are permitted provided that the following conditions are
6  * met:
7  *
8  *     * Redistributions of source code must retain the above copyright
9  * notice, this list of conditions and the following disclaimer.
10  *     * Redistributions in binary form must reproduce the above
11  * copyright notice, this list of conditions and the following disclaimer
12  * in the documentation and/or other materials provided with the
13  * distribution.
14  *     * Neither the name of Google Inc. nor the names of its
15  * contributors may be used to endorse or promote products derived from
16  * this software without specific prior written permission.
17  *
18  * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
19  * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
20  * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
21  * A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
22  * OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
23  * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
24  * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
25  * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
26  * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
27  * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
28  * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
29  */
30
31 #include "config.h"
32 #include "V8Event.h"
33
34 #include "Clipboard.h"
35 #include "ClipboardEvent.h"
36 #include "Event.h"
37 #include "EventHeaders.h"
38 #include "EventInterfaces.h"
39 #include "EventNames.h"
40 #include "V8Binding.h"
41 #include "V8Clipboard.h"
42 #include "V8Proxy.h"
43
44 namespace WebCore {
45
46 void V8Event::valueAccessorSetter(v8::Local<v8::String> name, v8::Local<v8::Value> value, const v8::AccessorInfo& info)
47 {
48     Event* event = V8Event::toNative(info.Holder());
49     event->setDefaultPrevented(!value->BooleanValue());
50 }
51
52 v8::Handle<v8::Value> V8Event::dataTransferAccessorGetter(v8::Local<v8::String> name, const v8::AccessorInfo& info)
53 {
54     Event* event = V8Event::toNative(info.Holder());
55
56     if (event->isDragEvent())
57         return toV8(static_cast<MouseEvent*>(event)->clipboard());
58
59     return v8::Undefined();
60 }
61
62 v8::Handle<v8::Value> V8Event::clipboardDataAccessorGetter(v8::Local<v8::String> name, const v8::AccessorInfo& info)
63 {
64     Event* event = V8Event::toNative(info.Holder());
65
66     if (event->isClipboardEvent())
67         return toV8(static_cast<ClipboardEvent*>(event)->clipboard());
68
69     return v8::Undefined();
70 }
71
72 #define TRY_TO_WRAP_WITH_INTERFACE(interfaceName) \
73     if (eventNames().interfaceFor##interfaceName == desiredInterface) \
74         return toV8(static_cast<interfaceName*>(event));
75
76 v8::Handle<v8::Value> toV8(Event* event)
77 {
78     if (!event)
79         return v8::Null();
80
81     String desiredInterface = event->interfaceName();
82
83     // We need to check Event first to avoid infinite recursion.
84     if (eventNames().interfaceForEvent == desiredInterface)
85         return V8Event::wrap(event);
86
87     DOM_EVENT_INTERFACES_FOR_EACH(TRY_TO_WRAP_WITH_INTERFACE)
88
89     return V8Event::wrap(event);
90 }
91
92 } // namespace WebCore