2 * Copyright (C) 2010 Google Inc. All rights reserved.
4 * Redistribution and use in source and binary forms, with or without
5 * modification, are permitted provided that the following conditions are
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
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.
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.
34 #include "Clipboard.h"
35 #include "ClipboardEvent.h"
37 #include "EventHeaders.h"
38 #include "EventInterfaces.h"
39 #include "EventNames.h"
40 #include "V8Binding.h"
41 #include "V8Clipboard.h"
46 void V8Event::valueAccessorSetter(v8::Local<v8::String> name, v8::Local<v8::Value> value, const v8::AccessorInfo& info)
48 Event* event = V8Event::toNative(info.Holder());
49 event->setDefaultPrevented(!value->BooleanValue());
52 v8::Handle<v8::Value> V8Event::dataTransferAccessorGetter(v8::Local<v8::String> name, const v8::AccessorInfo& info)
54 Event* event = V8Event::toNative(info.Holder());
56 if (event->isDragEvent())
57 return toV8(static_cast<MouseEvent*>(event)->clipboard());
59 return v8::Undefined();
62 v8::Handle<v8::Value> V8Event::clipboardDataAccessorGetter(v8::Local<v8::String> name, const v8::AccessorInfo& info)
64 Event* event = V8Event::toNative(info.Holder());
66 if (event->isClipboardEvent())
67 return toV8(static_cast<ClipboardEvent*>(event)->clipboard());
69 return v8::Undefined();
72 #define TRY_TO_WRAP_WITH_INTERFACE(interfaceName) \
73 if (eventNames().interfaceFor##interfaceName == desiredInterface) \
74 return toV8(static_cast<interfaceName*>(event));
76 v8::Handle<v8::Value> toV8(Event* event)
81 String desiredInterface = event->interfaceName();
83 // We need to check Event first to avoid infinite recursion.
84 if (eventNames().interfaceForEvent == desiredInterface)
85 return V8Event::wrap(event);
87 DOM_EVENT_INTERFACES_FOR_EACH(TRY_TO_WRAP_WITH_INTERFACE)
89 return V8Event::wrap(event);
92 } // namespace WebCore