- add third_party src.
[platform/framework/web/crosswalk.git] / src / third_party / WebKit / Source / core / events / UIEvent.cpp
1 /*
2  * Copyright (C) 2001 Peter Kelly (pmk@post.com)
3  * Copyright (C) 2001 Tobias Anton (anton@stud.fbi.fh-darmstadt.de)
4  * Copyright (C) 2006 Samuel Weinig (sam.weinig@gmail.com)
5  * Copyright (C) 2003, 2005, 2006, 2008 Apple Inc. All rights reserved.
6  *
7  * This library is free software; you can redistribute it and/or
8  * modify it under the terms of the GNU Library General Public
9  * License as published by the Free Software Foundation; either
10  * version 2 of the License, or (at your option) any later version.
11  *
12  * This library is distributed in the hope that it will be useful,
13  * but WITHOUT ANY WARRANTY; without even the implied warranty of
14  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
15  * Library General Public License for more details.
16  *
17  * You should have received a copy of the GNU Library General Public License
18  * along with this library; see the file COPYING.LIB.  If not, write to
19  * the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
20  * Boston, MA 02110-1301, USA.
21  */
22
23 #include "config.h"
24 #include "core/events/UIEvent.h"
25
26 #include "core/frame/DOMWindow.h"
27
28 namespace WebCore {
29
30 UIEventInit::UIEventInit()
31     : view(0)
32     , detail(0)
33 {
34 }
35
36 UIEvent::UIEvent()
37     : m_detail(0)
38 {
39     ScriptWrappable::init(this);
40 }
41
42 UIEvent::UIEvent(const AtomicString& eventType, bool canBubbleArg, bool cancelableArg, PassRefPtr<AbstractView> viewArg, int detailArg)
43     : Event(eventType, canBubbleArg, cancelableArg)
44     , m_view(viewArg)
45     , m_detail(detailArg)
46 {
47     ScriptWrappable::init(this);
48 }
49
50 UIEvent::UIEvent(const AtomicString& eventType, const UIEventInit& initializer)
51     : Event(eventType, initializer)
52     , m_view(initializer.view)
53     , m_detail(initializer.detail)
54 {
55     ScriptWrappable::init(this);
56 }
57
58 UIEvent::~UIEvent()
59 {
60 }
61
62 void UIEvent::initUIEvent(const AtomicString& typeArg, bool canBubbleArg, bool cancelableArg, PassRefPtr<AbstractView> viewArg, int detailArg)
63 {
64     if (dispatched())
65         return;
66
67     initEvent(typeArg, canBubbleArg, cancelableArg);
68
69     m_view = viewArg;
70     m_detail = detailArg;
71 }
72
73 bool UIEvent::isUIEvent() const
74 {
75     return true;
76 }
77
78 const AtomicString& UIEvent::interfaceName() const
79 {
80     return EventNames::UIEvent;
81 }
82
83 int UIEvent::keyCode() const
84 {
85     return 0;
86 }
87
88 int UIEvent::charCode() const
89 {
90     return 0;
91 }
92
93 int UIEvent::layerX()
94 {
95     return 0;
96 }
97
98 int UIEvent::layerY()
99 {
100     return 0;
101 }
102
103 int UIEvent::pageX() const
104 {
105     return 0;
106 }
107
108 int UIEvent::pageY() const
109 {
110     return 0;
111 }
112
113 int UIEvent::which() const
114 {
115     return 0;
116 }
117
118 } // namespace WebCore