~ubuntu-branches/ubuntu/raring/qtwebkit-source/raring-proposed

« back to all changes in this revision

Viewing changes to Source/WebCore/dom/UIEvent.cpp

  • Committer: Package Import Robot
  • Author(s): Jonathan Riddell
  • Date: 2013-02-18 14:24:18 UTC
  • Revision ID: package-import@ubuntu.com-20130218142418-eon0jmjg3nj438uy
Tags: upstream-2.3
ImportĀ upstreamĀ versionĀ 2.3

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
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 "UIEvent.h"
 
25
 
 
26
#include "Console.h"
 
27
#include "DOMWindow.h"
 
28
#include "EventDispatcher.h"
 
29
#include "Node.h"
 
30
 
 
31
namespace WebCore {
 
32
 
 
33
UIEvent::UIEvent()
 
34
    : m_detail(0)
 
35
{
 
36
}
 
37
 
 
38
UIEvent::UIEvent(const AtomicString& eventType, bool canBubbleArg, bool cancelableArg, PassRefPtr<AbstractView> viewArg, int detailArg)
 
39
    : Event(eventType, canBubbleArg, cancelableArg)
 
40
    , m_view(viewArg)
 
41
    , m_detail(detailArg)
 
42
{
 
43
}
 
44
 
 
45
UIEvent::~UIEvent()
 
46
{
 
47
}
 
48
 
 
49
void UIEvent::initUIEvent(const AtomicString& typeArg, bool canBubbleArg, bool cancelableArg, PassRefPtr<AbstractView> viewArg, int detailArg)
 
50
{
 
51
    if (dispatched())
 
52
        return;
 
53
 
 
54
    initEvent(typeArg, canBubbleArg, cancelableArg);
 
55
 
 
56
    m_view = viewArg;
 
57
    m_detail = detailArg;
 
58
}
 
59
 
 
60
bool UIEvent::isUIEvent() const
 
61
{
 
62
    return true;
 
63
}
 
64
 
 
65
const AtomicString& UIEvent::interfaceName() const
 
66
{
 
67
    return eventNames().interfaceForUIEvent;
 
68
}
 
69
 
 
70
int UIEvent::keyCode() const
 
71
{
 
72
    return 0;
 
73
}
 
74
 
 
75
int UIEvent::charCode() const
 
76
{
 
77
    return 0;
 
78
}
 
79
 
 
80
int UIEvent::layerX()
 
81
{
 
82
    return 0;
 
83
}
 
84
 
 
85
int UIEvent::layerY()
 
86
{
 
87
    return 0;
 
88
}
 
89
 
 
90
int UIEvent::pageX() const
 
91
{
 
92
    return 0;
 
93
}
 
94
 
 
95
int UIEvent::pageY() const
 
96
{
 
97
    return 0;
 
98
}
 
99
 
 
100
int UIEvent::which() const
 
101
{
 
102
    return 0;
 
103
}
 
104
 
 
105
PassRefPtr<FocusInEventDispatchMediator> FocusInEventDispatchMediator::create(PassRefPtr<Event> event, PassRefPtr<Node> oldFocusedNode)
 
106
{
 
107
    return adoptRef(new FocusInEventDispatchMediator(event, oldFocusedNode));
 
108
}
 
109
 
 
110
FocusInEventDispatchMediator::FocusInEventDispatchMediator(PassRefPtr<Event> event, PassRefPtr<Node> oldFocusedNode)
 
111
    : EventDispatchMediator(event)
 
112
    , m_oldFocusedNode(oldFocusedNode)
 
113
{
 
114
}
 
115
 
 
116
bool FocusInEventDispatchMediator::dispatchEvent(EventDispatcher* dispatcher) const
 
117
{
 
118
    dispatcher->adjustRelatedTarget(event(), m_oldFocusedNode);
 
119
    return EventDispatchMediator::dispatchEvent(dispatcher);
 
120
}
 
121
 
 
122
PassRefPtr<FocusOutEventDispatchMediator> FocusOutEventDispatchMediator::create(PassRefPtr<Event> event, PassRefPtr<Node> newFocusedNode)
 
123
{
 
124
    return adoptRef(new FocusOutEventDispatchMediator(event, newFocusedNode));
 
125
}
 
126
 
 
127
FocusOutEventDispatchMediator::FocusOutEventDispatchMediator(PassRefPtr<Event> event, PassRefPtr<Node> newFocusedNode)
 
128
    : EventDispatchMediator(event)
 
129
    , m_newFocusedNode(newFocusedNode)
 
130
{
 
131
}
 
132
 
 
133
bool FocusOutEventDispatchMediator::dispatchEvent(EventDispatcher* dispatcher) const
 
134
{
 
135
    dispatcher->adjustRelatedTarget(event(), m_newFocusedNode);
 
136
    return EventDispatchMediator::dispatchEvent(dispatcher);
 
137
}
 
138
 
 
139
} // namespace WebCore