blob: ade38565fe2558262fed984a8450c6101ad84fea [file] [log] [blame]
Torne (Richard Coles)53e740f2013-05-09 18:38:43 +01001/*
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/dom/UIEvent.h"
25
Torne (Richard Coles)53e740f2013-05-09 18:38:43 +010026#include "core/page/DOMWindow.h"
27
28namespace WebCore {
29
30UIEventInit::UIEventInit()
31 : view(0)
32 , detail(0)
33{
34}
35
36UIEvent::UIEvent()
37 : m_detail(0)
38{
39 ScriptWrappable::init(this);
40}
41
42UIEvent::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
50UIEvent::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
58UIEvent::~UIEvent()
59{
60}
61
62void 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
73bool UIEvent::isUIEvent() const
74{
75 return true;
76}
77
78const AtomicString& UIEvent::interfaceName() const
79{
80 return eventNames().interfaceForUIEvent;
81}
82
83int UIEvent::keyCode() const
84{
85 return 0;
86}
87
88int UIEvent::charCode() const
89{
90 return 0;
91}
92
93int UIEvent::layerX()
94{
95 return 0;
96}
97
98int UIEvent::layerY()
99{
100 return 0;
101}
102
103int UIEvent::pageX() const
104{
105 return 0;
106}
107
108int UIEvent::pageY() const
109{
110 return 0;
111}
112
113int UIEvent::which() const
114{
115 return 0;
116}
117
118} // namespace WebCore