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

« back to all changes in this revision

Viewing changes to Source/WebKit2/WebProcess/WebPage/efl/WebPageEfl.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) 2010 Apple Inc. All rights reserved.
 
3
 * Portions Copyright (c) 2010 Motorola Mobility, Inc.  All rights reserved.
 
4
 * Copyright (C) 2011 Igalia S.L.
 
5
 *
 
6
 * Redistribution and use in source and binary forms, with or without
 
7
 * modification, are permitted provided that the following conditions
 
8
 * are met:
 
9
 * 1. Redistributions of source code must retain the above copyright
 
10
 *    notice, this list of conditions and the following disclaimer.
 
11
 * 2. Redistributions in binary form must reproduce the above copyright
 
12
 *    notice, this list of conditions and the following disclaimer in the
 
13
 *    documentation and/or other materials provided with the distribution.
 
14
 *
 
15
 * THIS SOFTWARE IS PROVIDED BY APPLE INC. AND ITS CONTRIBUTORS ``AS IS''
 
16
 * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO,
 
17
 * THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
 
18
 * PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL APPLE INC. OR ITS CONTRIBUTORS
 
19
 * BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
 
20
 * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
 
21
 * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
 
22
 * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
 
23
 * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
 
24
 * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF
 
25
 * THE POSSIBILITY OF SUCH DAMAGE.
 
26
 */
 
27
 
 
28
#include "config.h"
 
29
#include "WebPage.h"
 
30
 
 
31
#include "EditorState.h"
 
32
#include "NotImplemented.h"
 
33
#include "WebEvent.h"
 
34
#include "WindowsKeyboardCodes.h"
 
35
#include <WebCore/EflKeyboardUtilities.h>
 
36
#include <WebCore/FocusController.h>
 
37
#include <WebCore/Frame.h>
 
38
#include <WebCore/FrameView.h>
 
39
#include <WebCore/KeyboardEvent.h>
 
40
#include <WebCore/Page.h>
 
41
#include <WebCore/PlatformKeyboardEvent.h>
 
42
#include <WebCore/RenderThemeEfl.h>
 
43
#include <WebCore/Settings.h>
 
44
 
 
45
using namespace WebCore;
 
46
 
 
47
namespace WebKit {
 
48
 
 
49
void WebPage::platformInitialize()
 
50
{
 
51
    notImplemented();
 
52
}
 
53
 
 
54
void WebPage::platformPreferencesDidChange(const WebPreferencesStore&)
 
55
{
 
56
    notImplemented();
 
57
}
 
58
 
 
59
static inline void scroll(Page* page, ScrollDirection direction, ScrollGranularity granularity)
 
60
{
 
61
    page->focusController()->focusedOrMainFrame()->eventHandler()->scrollRecursively(direction, granularity);
 
62
}
 
63
 
 
64
bool WebPage::performDefaultBehaviorForKeyEvent(const WebKeyboardEvent& keyboardEvent)
 
65
{
 
66
    if (keyboardEvent.type() != WebEvent::KeyDown && keyboardEvent.type() != WebEvent::RawKeyDown)
 
67
        return false;
 
68
 
 
69
    switch (keyboardEvent.windowsVirtualKeyCode()) {
 
70
    case VK_BACK:
 
71
        if (keyboardEvent.shiftKey())
 
72
            m_page->goForward();
 
73
        else
 
74
            m_page->goBack();
 
75
        break;
 
76
    case VK_SPACE:
 
77
        scroll(m_page.get(), keyboardEvent.shiftKey() ? ScrollUp : ScrollDown, ScrollByPage);
 
78
        break;
 
79
    case VK_LEFT:
 
80
        scroll(m_page.get(), ScrollLeft, ScrollByLine);
 
81
        break;
 
82
    case VK_RIGHT:
 
83
        scroll(m_page.get(), ScrollRight, ScrollByLine);
 
84
        break;
 
85
    case VK_UP:
 
86
        scroll(m_page.get(), ScrollUp, ScrollByLine);
 
87
        break;
 
88
    case VK_DOWN:
 
89
        scroll(m_page.get(), ScrollDown, ScrollByLine);
 
90
        break;
 
91
    case VK_HOME:
 
92
        scroll(m_page.get(), ScrollUp, ScrollByDocument);
 
93
        break;
 
94
    case VK_END:
 
95
        scroll(m_page.get(), ScrollDown, ScrollByDocument);
 
96
        break;
 
97
    case VK_PRIOR:
 
98
        scroll(m_page.get(), ScrollUp, ScrollByPage);
 
99
        break;
 
100
    case VK_NEXT:
 
101
        scroll(m_page.get(), ScrollDown, ScrollByPage);
 
102
        break;
 
103
    default:
 
104
        return false;
 
105
    }
 
106
 
 
107
    return true;
 
108
}
 
109
 
 
110
bool WebPage::platformHasLocalDataForURL(const KURL&)
 
111
{
 
112
    notImplemented();
 
113
    return false;
 
114
}
 
115
 
 
116
String WebPage::cachedResponseMIMETypeForURL(const KURL&)
 
117
{
 
118
    notImplemented();
 
119
    return String();
 
120
}
 
121
 
 
122
bool WebPage::platformCanHandleRequest(const ResourceRequest&)
 
123
{
 
124
    notImplemented();
 
125
    return true;
 
126
}
 
127
 
 
128
String WebPage::cachedSuggestedFilenameForURL(const KURL&)
 
129
{
 
130
    notImplemented();
 
131
    return String();
 
132
}
 
133
 
 
134
PassRefPtr<SharedBuffer> WebPage::cachedResponseDataForURL(const KURL&)
 
135
{
 
136
    notImplemented();
 
137
    return 0;
 
138
}
 
139
 
 
140
const char* WebPage::interpretKeyEvent(const KeyboardEvent* event)
 
141
{
 
142
    ASSERT(event->type() == eventNames().keydownEvent || event->type() == eventNames().keypressEvent);
 
143
 
 
144
    if (event->type() == eventNames().keydownEvent)
 
145
        return getKeyDownCommandName(event);
 
146
 
 
147
    return getKeyPressCommandName(event);
 
148
}
 
149
 
 
150
void WebPage::setThemePath(const String& themePath)
 
151
{
 
152
    WebCore::RenderThemeEfl* theme = static_cast<WebCore::RenderThemeEfl*>(m_page->theme());
 
153
    theme->setThemePath(themePath);
 
154
}
 
155
 
 
156
static Frame* targetFrameForEditing(WebPage* page)
 
157
{
 
158
    Frame* frame = page->corePage()->focusController()->focusedOrMainFrame();
 
159
    if (!frame)
 
160
        return 0;
 
161
 
 
162
    Editor* editor = frame->editor();
 
163
    if (!editor->canEdit())
 
164
        return 0;
 
165
 
 
166
    if (editor->hasComposition()) {
 
167
        // We should verify the parent node of this IME composition node are
 
168
        // editable because JavaScript may delete a parent node of the composition
 
169
        // node. In this case, WebKit crashes while deleting texts from the parent
 
170
        // node, which doesn't exist any longer.
 
171
        if (PassRefPtr<Range> range = editor->compositionRange()) {
 
172
            Node* node = range->startContainer();
 
173
            if (!node || !node->isContentEditable())
 
174
                return 0;
 
175
        }
 
176
    }
 
177
 
 
178
    return frame;
 
179
}
 
180
 
 
181
void WebPage::confirmComposition(const String& compositionString)
 
182
{
 
183
    Frame* targetFrame = targetFrameForEditing(this);
 
184
    if (!targetFrame)
 
185
        return;
 
186
 
 
187
    targetFrame->editor()->confirmComposition(compositionString);
 
188
}
 
189
 
 
190
void WebPage::setComposition(const String& compositionString, const Vector<WebCore::CompositionUnderline>& underlines, uint64_t cursorPosition)
 
191
{
 
192
    Frame* targetFrame = targetFrameForEditing(this);
 
193
    if (!targetFrame)
 
194
        return;
 
195
 
 
196
    targetFrame->editor()->setComposition(compositionString, underlines, cursorPosition, 0);
 
197
}
 
198
 
 
199
void WebPage::cancelComposition()
 
200
{
 
201
    Frame* frame = m_page->focusController()->focusedOrMainFrame();
 
202
    if (!frame)
 
203
        return;
 
204
 
 
205
    frame->editor()->cancelComposition();
 
206
}
 
207
 
 
208
} // namespace WebKit