Initial upstreaming of input handling for BlackBerry port
authorcommit-queue@webkit.org <commit-queue@webkit.org@268f45cc-cd09-0410-ab3c-d52691b4dbfc>
Wed, 8 Feb 2012 17:01:35 +0000 (17:01 +0000)
committercommit-queue@webkit.org <commit-queue@webkit.org@268f45cc-cd09-0410-ab3c-d52691b4dbfc>
Wed, 8 Feb 2012 17:01:35 +0000 (17:01 +0000)
https://bugs.webkit.org/show_bug.cgi?id=77992

Patch by Nima Ghanavatian <nghanavatian@rim.com> on 2012-02-08
Reviewed by Rob Buis.

* blackberry/WebKitSupport/InputHandler.cpp: Added.
* blackberry/WebKitSupport/InputHandler.h: Added.

git-svn-id: http://svn.webkit.org/repository/webkit/trunk@107095 268f45cc-cd09-0410-ab3c-d52691b4dbfc

Source/WebKit/ChangeLog
Source/WebKit/blackberry/WebKitSupport/InputHandler.cpp [new file with mode: 0644]
Source/WebKit/blackberry/WebKitSupport/InputHandler.h [new file with mode: 0644]

index 0008259..56eedad 100644 (file)
@@ -1,3 +1,13 @@
+2012-02-08  Nima Ghanavatian  <nghanavatian@rim.com>
+
+        Initial upstreaming of input handling for BlackBerry port
+        https://bugs.webkit.org/show_bug.cgi?id=77992
+
+        Reviewed by Rob Buis.
+
+        * blackberry/WebKitSupport/InputHandler.cpp: Added.
+        * blackberry/WebKitSupport/InputHandler.h: Added.
+
 2012-02-07  Robert Kroeger  <rjkroege@chromium.org>
 
         [chromium] Remove no longer necessary Chromium gesture recognizer code.
diff --git a/Source/WebKit/blackberry/WebKitSupport/InputHandler.cpp b/Source/WebKit/blackberry/WebKitSupport/InputHandler.cpp
new file mode 100644 (file)
index 0000000..ad555da
--- /dev/null
@@ -0,0 +1,1745 @@
+/*
+ * Copyright (C) 2009, 2010, 2011, 2012 Research In Motion Limited. All rights reserved.
+ *
+ * This library is free software; you can redistribute it and/or
+ * modify it under the terms of the GNU Lesser General Public
+ * License as published by the Free Software Foundation; either
+ * version 2 of the License, or (at your option) any later version.
+ *
+ * This library is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
+ * Lesser General Public License for more details.
+ *
+ * You should have received a copy of the GNU Lesser General Public
+ * License along with this library; if not, write to the Free Software
+ * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301  USA
+ */
+
+#include "config.h"
+#include "InputHandler.h"
+
+#include "BackingStore.h"
+#include "BackingStoreClient.h"
+#include "CSSStyleDeclaration.h"
+#include "CString.h"
+#include "Chrome.h"
+#include "DOMSupport.h"
+#include "Document.h"
+#include "DocumentLoader.h"
+#include "DocumentMarkerController.h"
+#include "FocusController.h"
+#include "Frame.h"
+#include "FrameView.h"
+#include "HTMLInputElement.h"
+#include "HTMLNames.h"
+#include "HTMLOptGroupElement.h"
+#include "HTMLOptionElement.h"
+#include "HTMLSelectElement.h"
+#include "HTMLTextAreaElement.h"
+#include "NotImplemented.h"
+#include "Page.h"
+#include "PlatformKeyboardEvent.h"
+#include "PluginView.h"
+#include "Range.h"
+#include "RenderLayer.h"
+#include "RenderMenuList.h"
+#include "RenderPart.h"
+#include "RenderText.h"
+#include "RenderTextControl.h"
+#include "RenderWidget.h"
+#include "ScopePointer.h"
+#include "SelectionHandler.h"
+#include "TextIterator.h"
+#include "WebPageClient.h"
+#include "WebPage_p.h"
+#include "WebSettings.h"
+
+#include <BlackBerryPlatformKeyboardEvent.h>
+#include <BlackBerryPlatformMisc.h>
+#include <BlackBerryPlatformSettings.h>
+#include <imf/events.h>
+#include <sys/keycodes.h>
+
+#define ENABLE_INPUT_LOG 0
+#define ENABLE_FOCUS_LOG 0
+
+#if ENABLE_INPUT_LOG
+#define InputLog(severity, format, ...) BlackBerry::Platform::logAlways(severity, format, ## __VA_ARGS__)
+#else
+#define InputLog(severity, format, ...)
+#endif // ENABLE_INPUT_LOG
+
+#if ENABLE_FOCUS_LOG
+#define FocusLog(severity, format, ...) BlackBerry::Platform::logAlways(severity, format, ## __VA_ARGS__)
+#else
+#define FocusLog(severity, format, ...)
+#endif // ENABLE_FOCUS_LOG
+
+static const int MaxLearnTextDataSize = 500;
+
+using namespace BlackBerry::Platform;
+using namespace WebCore;
+
+namespace BlackBerry {
+namespace WebKit {
+
+class ProcessingChangeGuard {
+public:
+    ProcessingChangeGuard(InputHandler* inputHandler)
+        : m_inputHandler(inputHandler)
+        , m_savedProcessingChange(false)
+    {
+        ASSERT(m_inputHandler);
+
+        m_savedProcessingChange = m_inputHandler->processingChange();
+        m_inputHandler->setProcessingChange(true);
+    }
+
+    ~ProcessingChangeGuard()
+    {
+        m_inputHandler->setProcessingChange(m_savedProcessingChange);
+    }
+
+private:
+    InputHandler* m_inputHandler;
+    bool m_savedProcessingChange;
+};
+
+InputHandler::InputHandler(WebPagePrivate* page)
+    : m_webPage(page)
+    , m_currentFocusElement(0)
+    , m_processingChange(false)
+    , m_navigationMode(false)
+    , m_currentFocusElementType(TextEdit)
+    , m_currentFocusElementTextEditMask(DEFAULT_STYLE)
+    , m_composingTextStart(0)
+    , m_composingTextEnd(0)
+{
+}
+
+InputHandler::~InputHandler()
+{
+}
+
+static BlackBerryInputType convertInputType(const HTMLInputElement* inputElement)
+{
+    if (inputElement->isPasswordField())
+        return InputTypePassword;
+    if (inputElement->isSearchField())
+        return InputTypeSearch;
+    if (inputElement->isEmailField())
+        return InputTypeEmail;
+    if (inputElement->isMonthControl())
+        return InputTypeMonth;
+    if (inputElement->isNumberField())
+        return InputTypeNumber;
+    if (inputElement->isTelephoneField())
+        return InputTypeTelephone;
+    if (inputElement->isURLField())
+        return InputTypeURL;
+#if ENABLE(INPUT_COLOR)
+    if (inputElement->isColorControl())
+        return InputTypeColor;
+#endif
+    if (inputElement->isDateControl())
+        return InputTypeDate;
+    if (inputElement->isDateTimeControl())
+        return InputTypeDateTime;
+    if (inputElement->isDateTimeLocalControl())
+        return InputTypeDateTimeLocal;
+    if (inputElement->isTimeControl())
+        return InputTypeTime;
+    // FIXME: missing WEEK popup selector
+
+    return InputTypeText;
+}
+
+static int inputStyle(BlackBerryInputType type, const Element* element)
+{
+    switch (type) {
+    case InputTypeText:
+    case InputTypeSearch:
+        {
+            // Regular input mode, disable help if autocomplete is off.
+            int imfMask = 0;
+            if (DOMSupport::elementSupportsAutocomplete(element) == DOMSupport::Off)
+                imfMask = NO_AUTO_TEXT | NO_PREDICTION;
+            else if (DOMSupport::elementSupportsAutocomplete(element) != DOMSupport::On
+                     && DOMSupport::elementIdOrNameIndicatesNoAutocomplete(element))
+                imfMask = NO_AUTO_TEXT | NO_PREDICTION;
+
+            // Disable autocorrection if it's specifically off, of if it is in default mode
+            // and we have disabled auto text and prediction.
+            if (DOMSupport::elementSupportsAutocorrect(element) == DOMSupport::Off
+                || (imfMask && DOMSupport::elementSupportsAutocorrect(element) == DOMSupport::Default))
+                imfMask |= NO_AUTO_CORRECTION;
+
+            if (imfMask)
+                return imfMask;
+            break;
+        }
+    case InputTypeIsIndex:
+    case InputTypePassword:
+    case InputTypeEmail:
+    case InputTypeNumber:
+    case InputTypeTelephone:
+    case InputTypeURL:
+        // Disable special handling.
+        return NO_AUTO_TEXT | NO_PREDICTION | NO_AUTO_CORRECTION;
+    case InputTypeTextArea:
+    default:
+        break;
+    }
+    return DEFAULT_STYLE;
+}
+
+WTF::String InputHandler::elementText()
+{
+    if (!isActiveTextEdit())
+        return WTF::String();
+
+    return DOMSupport::inputElementText(m_currentFocusElement.get());
+}
+
+BlackBerryInputType InputHandler::elementType(Element* element) const
+{
+    // <isIndex> is bundled with input so we need to check the formControlName
+    // first to differentiate it from input which is essentially the same as
+    // isIndex has been deprecated.
+    if (element->formControlName() == HTMLNames::isindexTag)
+        return InputTypeIsIndex;
+
+    if (const HTMLInputElement* inputElement = static_cast<const HTMLInputElement*>(element->toInputElement()))
+        return convertInputType(inputElement);
+
+    if (element->hasTagName(HTMLNames::textareaTag))
+        return InputTypeTextArea;
+
+    // Default to InputTypeTextArea for content editable fields.
+    return InputTypeTextArea;
+}
+
+void InputHandler::nodeFocused(Node* node)
+{
+    if (isActiveTextEdit() && m_currentFocusElement == node) {
+        setNavigationMode(true);
+        return;
+    }
+
+    if (node && node->isElementNode()) {
+        Element* element = static_cast<Element*>(node);
+        if (DOMSupport::isElementTypePlugin(element)) {
+            setPluginFocused(element);
+            return;
+        }
+
+        if (DOMSupport::isTextBasedContentEditableElement(element)) {
+            // Focused node is a text based input field, textarea or content editable field.
+            setElementFocused(element);
+            return;
+        }
+    }
+
+    if (isActiveTextEdit() && m_currentFocusElement->isContentEditable()) {
+        // This is a special handler for content editable fields. The focus node is the top most
+        // field that is content editable, however, by enabling / disabling designmode and
+        // content editable, it is possible through javascript or selection to trigger the focus node to
+        // change even while maintaining editing on the same selection point. If the focus element
+        // isn't contentEditable, but the current selection is, don't send a change notification.
+
+        // When processing changes selection changes occur that may reset the focus element
+        // and could potentially cause a crash as m_currentFocusElement should not be
+        // changed during processing of an EditorCommand.
+        if (processingChange())
+            return;
+
+        Frame* frame = m_currentFocusElement->document()->frame();
+        ASSERT(frame);
+
+        // Test the current selection to make sure that the content in focus is still content
+        // editable. This may mean Javascript triggered a focus change by modifying the
+        // top level parent of this object's content editable state without actually modifying
+        // this particular object.
+        // Example site: html5demos.com/contentEditable - blur event triggers focus change.
+        if (frame == m_webPage->focusedOrMainFrame() && frame->selection()->start().anchorNode()
+            && frame->selection()->start().anchorNode()->isContentEditable())
+                return;
+    }
+
+    // No valid focus element found for handling.
+    setElementUnfocused();
+}
+
+void InputHandler::setPluginFocused(Element* element)
+{
+    ASSERT(DOMSupport::isElementTypePlugin(element));
+
+    if (isActiveTextEdit())
+        setElementUnfocused();
+
+    m_currentFocusElementType = Plugin;
+    m_currentFocusElement = element;
+}
+
+static bool convertStringToWchar(const String& string, wchar_t* dest, int destCapacity, int* destLength)
+{
+    ASSERT(dest);
+
+    if (!string.length()) {
+        destLength = 0;
+        return true;
+    }
+
+    UErrorCode ec = U_ZERO_ERROR;
+    // wchar_t strings sent to IMF are 32 bit so casting to UChar32 is safe.
+    u_strToUTF32(reinterpret_cast<UChar32*>(dest), destCapacity, destLength, string.characters(), string.length(), &ec);
+    if (ec) {
+        InputLog(BlackBerry::Platform::LogLevelInfo, "InputHandler::convertStringToWchar Error converting string ec (%d).", ec);
+        destLength = 0;
+        return false;
+    }
+    return true;
+}
+
+static bool convertStringToWcharVector(const String& string, WTF::Vector<wchar_t>& wcharString)
+{
+    ASSERT(wcharString.isEmpty());
+
+    int length = string.length();
+    if (!length)
+        return true;
+
+    if (!wcharString.tryReserveCapacity(length + 1)) {
+        BlackBerry::Platform::logAlways(BlackBerry::Platform::LogLevelWarn, "InputHandler::convertStringToWcharVector Cannot allocate memory for string.\n");
+        return false;
+    }
+
+    int destLength = 0;
+    if (!convertStringToWchar(string, wcharString.data(), length + 1, &destLength))
+        return false;
+
+    wcharString.resize(destLength);
+    return true;
+}
+
+static String convertSpannableStringToString(spannable_string_t* src)
+{
+    if (!src || !src->str || !src->length)
+        return String();
+
+    WTF::Vector<UChar> dest;
+    int destCapacity = (src->length * 2) + 1;
+    if (!dest.tryReserveCapacity(destCapacity)) {
+        BlackBerry::Platform::logAlways(BlackBerry::Platform::LogLevelWarn, "InputHandler::convertSpannableStringToString Cannot allocate memory for string.\n");
+        return String();
+    }
+
+    int destLength = 0;
+    UErrorCode ec = U_ZERO_ERROR;
+    // wchar_t strings sent from IMF are 32 bit so casting to UChar32 is safe.
+    u_strFromUTF32(dest.data(), destCapacity, &destLength, reinterpret_cast<UChar32*>(src->str), src->length, &ec);
+    if (ec) {
+        InputLog(BlackBerry::Platform::LogLevelInfo, "InputHandler::convertSpannableStringToString Error converting string ec (%d).", ec);
+        return String();
+    }
+    dest.resize(destLength);
+    return String(dest.data(), destLength);
+}
+
+void InputHandler::sendLearnTextDetails(const WTF::String& string)
+{
+    Vector<wchar_t> wcharString;
+    if (!convertStringToWcharVector(string, wcharString) || wcharString.isEmpty())
+        return;
+
+    m_webPage->m_client->inputLearnText(wcharString.data(), wcharString.size());
+}
+
+void InputHandler::learnText()
+{
+    if (!isActiveTextEdit())
+        return;
+
+    // Do not send (or calculate) the text when the field is NO_PREDICTION or NO_AUTO_TEXT.
+    if (m_currentFocusElementTextEditMask & NO_PREDICTION || m_currentFocusElementTextEditMask & NO_AUTO_TEXT)
+        return;
+
+    String textInField(elementText());
+    textInField = textInField.substring(std::max(0, static_cast<int>(textInField.length()) - MaxLearnTextDataSize), textInField.length());
+    textInField.remove(0, textInField.find(" "));
+
+    // Build up the 500 character strings in word chunks.
+    // Spec says 1000, but memory corruption has been observed.
+    ASSERT(textInField.length() <= MaxLearnTextDataSize);
+
+    if (textInField.isEmpty())
+        return;
+
+    InputLog(BlackBerry::Platform::LogLevelInfo, "InputHandler::learnText %s", textInField.latin1().data());
+    sendLearnTextDetails(textInField);
+}
+
+void InputHandler::setElementUnfocused(bool refocusOccuring)
+{
+    if (isActiveTextEdit()) {
+        FocusLog(BlackBerry::Platform::LogLevelInfo, "InputHandler::setElementUnfocused");
+
+        // Pass any text into the field to IMF to learn.
+        learnText();
+
+        // End any composition that is in progress.
+        finishComposition();
+
+        // Send change notifications. Only cancel navigation mode if we are not
+        // refocusing to avoid flashing the keyboard when switching between two
+        // input fields.
+        setNavigationMode(false, !refocusOccuring);
+        m_webPage->m_client->inputFocusLost();
+        m_webPage->m_selectionHandler->selectionPositionChanged();
+    }
+
+    // Clear the node details.
+    m_currentFocusElement = 0;
+    m_currentFocusElementType = TextEdit;
+}
+
+bool InputHandler::shouldAcceptInputFocus()
+{
+    // If the DRT is running, always accept focus.
+    if (m_webPage->m_dumpRenderTree)
+        return true;
+
+    if (BlackBerry::Platform::Settings::get()->alwaysShowKeyboardOnFocus())
+        return true;
+
+    Frame* mainFrame = m_webPage->m_page->mainFrame();
+    Frame* focusedFrame = m_webPage->focusedOrMainFrame();
+    if (mainFrame && mainFrame->document() && focusedFrame && focusedFrame->document()) {
+        // Any user action should be respected. Mouse will be down when touch is
+        // used to focus.
+        if (focusedFrame->eventHandler()->mousePressed())
+            return true;
+
+        // Make sure the main frame is not still loading.
+        if (mainFrame->loader()->isLoading())
+            return false;
+
+        // Make sure the focused frame is loaded.
+        if (!focusedFrame->loader()->frameHasLoaded())
+            return false;
+
+        // Make sure the focused frame is not processing load events.
+        return !focusedFrame->document()->processingLoadEvent();
+    }
+    return false;
+}
+
+void InputHandler::setElementFocused(Element* element)
+{
+    ASSERT(DOMSupport::isTextBasedContentEditableElement(element));
+    ASSERT(element->document() && element->document()->frame());
+
+    if (!shouldAcceptInputFocus()) {
+        // Remove the focus from this element.
+        element->blur();
+        return;
+    }
+
+    // Clear the existing focus node details.
+    setElementUnfocused(true /*refocusOccuring*/);
+
+    // Mark this element as active and add to frame set.
+    m_currentFocusElement = element;
+    m_currentFocusElementType = TextEdit;
+
+    // Send details to the client about this element.
+    BlackBerryInputType type = elementType(element);
+    m_currentFocusElementTextEditMask = inputStyle(type, element);
+
+    FocusLog(BlackBerry::Platform::LogLevelInfo, "InputHandler::setElementFocused, Type=%d, Style=%d", type, m_currentFocusElementTextEditMask);
+
+    m_webPage->m_client->inputFocusGained(type, m_currentFocusElementTextEditMask);
+    m_navigationMode = true;
+
+    handleInputLocaleChanged(m_webPage->m_webSettings->isWritingDirectionRTL());
+}
+
+bool InputHandler::openDatePopup(HTMLInputElement* element, BlackBerryInputType type)
+{
+    if (!element || element->disabled() || !DOMSupport::isDateTimeInputField(element))
+        return false;
+
+    if (isActiveTextEdit())
+        clearCurrentFocusElement();
+
+    m_currentFocusElement = element;
+    m_currentFocusElementType = TextPopup;
+
+    WTF::String value = element->value();
+    WTF::String min = element->getAttribute(HTMLNames::minAttr).string();
+    WTF::String max = element->getAttribute(HTMLNames::maxAttr).string();
+    double step = element->getAttribute(HTMLNames::stepAttr).toDouble();
+    m_webPage->m_client->openDateTimePopup(type, value, min, max, step);
+    return true;
+}
+
+bool InputHandler::openColorPopup(HTMLInputElement* element)
+{
+    if (!element || element->disabled() || !DOMSupport::isColorInputField(element))
+        return false;
+
+    if (isActiveTextEdit())
+        clearCurrentFocusElement();
+
+    m_currentFocusElement = element;
+    m_currentFocusElementType = TextPopup;
+
+    m_webPage->m_client->openColorPopup(element->value());
+    return true;
+}
+
+void InputHandler::setInputValue(const WTF::String& value)
+{
+    if (!isActiveTextPopup())
+        return;
+
+    HTMLInputElement* inputElement = static_cast<HTMLInputElement*>(m_currentFocusElement.get());
+    inputElement->setValue(value);
+    clearCurrentFocusElement();
+}
+
+void InputHandler::nodeTextChanged(const Node* node)
+{
+    if (processingChange() || !node)
+        return;
+
+    if (node != m_currentFocusElement)
+        return;
+
+    InputLog(BlackBerry::Platform::LogLevelInfo, "InputHandler::nodeTextChanged");
+
+    m_webPage->m_client->inputTextChanged();
+
+    // Remove the attributed text markers as the previous call triggered an end to
+    // the composition.
+    removeAttributedTextMarker();
+}
+
+void InputHandler::ensureFocusTextElementVisible(CaretScrollType scrollType)
+{
+    if (!m_currentFocusElement || !m_navigationMode || !m_currentFocusElement->document())
+        return;
+
+    if (!BlackBerry::Platform::Settings::get()->allowCenterScrollAdjustmentForInputFields() && scrollType != EdgeIfNeeded)
+        return;
+
+    Frame* elementFrame = m_currentFocusElement->document()->frame();
+    if (!elementFrame)
+        return;
+
+    Frame* mainFrame = m_webPage->mainFrame();
+    if (!mainFrame)
+        return;
+
+    FrameView* mainFrameView = mainFrame->view();
+    if (!mainFrameView)
+        return;
+
+    WebCore::IntRect selectionFocusRect;
+    switch (elementFrame->selection()->selectionType()) {
+    case VisibleSelection::CaretSelection:
+        selectionFocusRect = elementFrame->selection()->absoluteCaretBounds();
+        break;
+    case VisibleSelection::RangeSelection: {
+        Position selectionPosition;
+        if (m_webPage->m_selectionHandler->lastUpdatedEndPointIsValid())
+            selectionPosition = elementFrame->selection()->end();
+        else
+            selectionPosition = elementFrame->selection()->start();
+        selectionFocusRect = VisiblePosition(selectionPosition).absoluteCaretBounds();
+        break;
+    }
+    case VisibleSelection::NoSelection:
+        return;
+    }
+
+    int fontHeight = selectionFocusRect.height();
+
+    if (elementFrame != mainFrame) { // Element is in a subframe.
+        // Remove any scroll offset within the subframe to get the point relative to the main frame.
+        selectionFocusRect.move(-elementFrame->view()->scrollPosition().x(), -elementFrame->view()->scrollPosition().y());
+
+        // Adjust the selection rect based on the frame offset in relation to the main frame if it's a subframe.
+        if (elementFrame->ownerRenderer()) {
+            WebCore::IntPoint frameOffset = elementFrame->ownerRenderer()->absoluteContentBox().location();
+            selectionFocusRect.move(frameOffset.x(), frameOffset.y());
+        }
+    }
+
+    Position start = elementFrame->selection()->start();
+    if (start.anchorNode() && start.anchorNode()->renderer()) {
+        if (RenderLayer* layer = start.anchorNode()->renderer()->enclosingLayer()) {
+            WebCore::IntRect actualScreenRect = WebCore::IntRect(mainFrameView->scrollPosition(), m_webPage->actualVisibleSize());
+            ScrollAlignment horizontalScrollAlignment = ScrollAlignment::alignToEdgeIfNeeded;
+            ScrollAlignment verticalScrollAlignment = ScrollAlignment::alignToEdgeIfNeeded;
+
+            if (scrollType != EdgeIfNeeded) {
+                // Align the selection rect if possible so that we show the field's
+                // outline if the caret is at the edge of the field.
+                if (RenderObject* focusedRenderer = m_currentFocusElement->renderer()) {
+                    WebCore::IntRect nodeOutlineBounds = focusedRenderer->absoluteOutlineBounds();
+                    WebCore::IntRect caretAtEdgeRect = rectForCaret(0);
+                    int paddingX = abs(caretAtEdgeRect.x() - nodeOutlineBounds.x());
+                    int paddingY = abs(caretAtEdgeRect.y() - nodeOutlineBounds.y());
+
+                    if (selectionFocusRect.x() - paddingX == nodeOutlineBounds.x())
+                        selectionFocusRect.setX(nodeOutlineBounds.x());
+                    else if (selectionFocusRect.maxX() + paddingX == nodeOutlineBounds.maxX())
+                        selectionFocusRect.setX(nodeOutlineBounds.maxX() - selectionFocusRect.width());
+                    if (selectionFocusRect.y() - paddingY == nodeOutlineBounds.y())
+                        selectionFocusRect.setY(nodeOutlineBounds.y() - selectionFocusRect.height());
+                    else if (selectionFocusRect.maxY() + paddingY == nodeOutlineBounds.maxY())
+                        selectionFocusRect.setY(nodeOutlineBounds.maxY() - selectionFocusRect.height());
+
+                    // If the editing point is on the left hand side of the screen when the node's
+                    // rect is edge aligned, edge align the node rect.
+                    if (selectionFocusRect.x() - caretAtEdgeRect.x() < actualScreenRect.width() / 2)
+                        selectionFocusRect.setX(nodeOutlineBounds.x());
+                    else
+                        horizontalScrollAlignment = ScrollAlignment::alignCenterIfNeeded;
+
+                }
+                verticalScrollAlignment = (scrollType == CenterAlways) ? ScrollAlignment::alignCenterAlways : ScrollAlignment::alignCenterIfNeeded;
+            }
+
+            // Pad the rect to improve the visual appearance.
+            selectionFocusRect.inflate(4 /* padding in pixels */);
+            WebCore::IntRect revealRect = layer->getRectToExpose(actualScreenRect, selectionFocusRect,
+                                                                 horizontalScrollAlignment,
+                                                                 verticalScrollAlignment);
+
+            mainFrameView->setScrollPosition(revealRect.location());
+        }
+    }
+
+    // If the text is too small, zoom in to make it a minimum size.
+    static const int s_minimumTextHeightInPixels = 6;
+    if (fontHeight && fontHeight < s_minimumTextHeightInPixels)
+        m_webPage->zoomAboutPoint(s_minimumTextHeightInPixels / fontHeight, m_webPage->centerOfVisibleContentsRect());
+}
+
+void InputHandler::ensureFocusPluginElementVisible()
+{
+    if (!isActivePlugin() || !m_currentFocusElement->document())
+        return;
+
+    Frame* elementFrame = m_currentFocusElement->document()->frame();
+    if (!elementFrame)
+        return;
+
+    Frame* mainFrame = m_webPage->mainFrame();
+    if (!mainFrame)
+        return;
+
+    FrameView* mainFrameView = mainFrame->view();
+    if (!mainFrameView)
+        return;
+
+    WebCore::IntRect selectionFocusRect;
+
+    RenderWidget* renderWidget = static_cast<RenderWidget*>(m_currentFocusElement->renderer());
+    if (renderWidget) {
+        PluginView* pluginView = static_cast<PluginView*>(renderWidget->widget());
+
+        if (pluginView)
+            selectionFocusRect = pluginView->ensureVisibleRect();
+    }
+
+    if (selectionFocusRect.isEmpty())
+        return;
+
+    // FIXME: We may need to scroll the subframe (recursively) in the future. Revisit this...
+    if (elementFrame != mainFrame) { // Element is in a subframe.
+        // Remove any scroll offset within the subframe to get the point relative to the main frame.
+        selectionFocusRect.move(-elementFrame->view()->scrollPosition().x(), -elementFrame->view()->scrollPosition().y());
+
+        // Adjust the selection rect based on the frame offset in relation to the main frame if it's a subframe.
+        if (elementFrame->ownerRenderer()) {
+            WebCore::IntPoint frameOffset = elementFrame->ownerRenderer()->absoluteContentBox().location();
+            selectionFocusRect.move(frameOffset.x(), frameOffset.y());
+        }
+    }
+
+    WebCore::IntRect actualScreenRect = WebCore::IntRect(mainFrameView->scrollPosition(), m_webPage->actualVisibleSize());
+    if (actualScreenRect.contains(selectionFocusRect))
+        return;
+
+    // Calculate a point such that the center of the requested rectangle
+    // is at the center of the screen. FIXME: If the element was partially on screen
+    // we might want to just bring the offscreen portion into view, someone needs
+    // to decide if that's the behavior we want or not.
+    WebCore::IntPoint pos(selectionFocusRect.center().x() - actualScreenRect.width() / 2,
+                 selectionFocusRect.center().y() - actualScreenRect.height() / 2);
+
+    mainFrameView->setScrollPosition(pos);
+}
+
+void InputHandler::ensureFocusElementVisible(bool centerInView)
+{
+    if (isActivePlugin())
+        ensureFocusPluginElementVisible();
+    else
+        ensureFocusTextElementVisible(centerInView ? CenterAlways : CenterIfNeeded);
+}
+
+void InputHandler::frameUnloaded(Frame* frame)
+{
+    if (!isActiveTextEdit())
+        return;
+
+    if (m_currentFocusElement->document()->frame() != frame)
+        return;
+
+    FocusLog(BlackBerry::Platform::LogLevelInfo, "InputHandler::frameUnloaded");
+
+    setElementUnfocused(false /*refocusOccuring*/);
+}
+
+void InputHandler::setNavigationMode(bool active, bool sendMessage)
+{
+    if (active && !isActiveTextEdit()) {
+        if (!m_navigationMode)
+            return;
+
+        // We can't be active if there is no element. Send out notification that we
+        // aren't in navigation mode.
+        active = false;
+    }
+
+    // Don't send the change if it's setting the event setting navigationMode true
+    // if we are already in navigation mode and this is a navigation move event.
+    // We need to send the event when it's triggered by a touch event or mouse
+    // event to allow display of the VKB, but do not want to send it when it's
+    // triggered by a navigation event as it has no effect.
+    // Touch events are simulated as mouse events so mousePressed will be active
+    // when it is a re-entry event.
+    // See RIM Bugs #369 & #878.
+    if (active && active == m_navigationMode && !m_webPage->m_mainFrame->eventHandler()->mousePressed())
+        return;
+
+    m_navigationMode = active;
+
+    InputLog(BlackBerry::Platform::LogLevelInfo, "InputHandler::setNavigationMode %s, %s", active ? "true" : "false", sendMessage ? "message sent" : "message not sent");
+
+    if (sendMessage)
+        m_webPage->m_client->inputSetNavigationMode(active);
+}
+
+bool InputHandler::selectionAtStartOfElement()
+{
+    if (!isActiveTextEdit())
+        return false;
+
+    ASSERT(m_currentFocusElement->document() && m_currentFocusElement->document()->frame());
+
+    if (!selectionStart())
+        return true;
+
+    return false;
+}
+
+bool InputHandler::selectionAtEndOfElement()
+{
+    if (!isActiveTextEdit())
+        return false;
+
+    ASSERT(m_currentFocusElement->document() && m_currentFocusElement->document()->frame());
+
+    return selectionStart() == static_cast<int>(elementText().length());
+}
+
+int InputHandler::selectionStart() const
+{
+    return selectionPosition(true);
+}
+
+int InputHandler::selectionEnd() const
+{
+    return selectionPosition(false);
+}
+
+int InputHandler::selectionPosition(bool start) const
+{
+    if (!m_currentFocusElement->document() || !m_currentFocusElement->document()->frame())
+        return 0;
+
+    if (HTMLTextFormControlElement* controlElement = DOMSupport::toTextControlElement(m_currentFocusElement.get()))
+        return start ? controlElement->selectionStart() : controlElement->selectionEnd();
+
+    FrameSelection caretSelection;
+    caretSelection.setSelection(m_currentFocusElement->document()->frame()->selection()->selection());
+    RefPtr<Range> rangeSelection = caretSelection.selection().toNormalizedRange();
+    if (!rangeSelection)
+        return 0;
+
+    int selectionPointInNode = start ? rangeSelection->startOffset() : rangeSelection->endOffset();
+    Node* containerNode = start ? rangeSelection->startContainer() : rangeSelection->endContainer();
+
+    ExceptionCode ec;
+    RefPtr<Range> rangeForNode = rangeOfContents(m_currentFocusElement.get());
+    rangeForNode->setEnd(containerNode, selectionPointInNode, ec);
+    ASSERT(!ec);
+
+    return TextIterator::rangeLength(rangeForNode.get());
+}
+
+void InputHandler::selectionChanged()
+{
+    // This method can get called during WebPage shutdown process.
+    // If that is the case, just bail out since the client is not
+    // in a safe state of trust to request anything else from it.
+    if (!m_webPage->m_mainFrame)
+        return;
+
+    if (!isActiveTextEdit())
+        return;
+
+    if (processingChange())
+        return;
+
+    // Scroll the field if necessary. This must be done even if we are processing
+    // a change as the text change may have moved the caret. IMF doesn't require
+    // the update, but the user needs to see the caret.
+    ensureFocusTextElementVisible(EdgeIfNeeded);
+
+    ASSERT(m_currentFocusElement->document() && m_currentFocusElement->document()->frame());
+
+    int newSelectionStart = selectionStart();
+    int newSelectionEnd = selectionEnd();
+
+    InputLog(BlackBerry::Platform::LogLevelInfo, "InputHandler::selectionChanged selectionStart=%u, selectionEnd=%u", newSelectionStart, newSelectionEnd);
+
+    m_webPage->m_client->inputSelectionChanged(newSelectionStart, newSelectionEnd);
+
+    // Remove the attributed text markers as the previous call triggered an end to
+    // the composition.
+    removeAttributedTextMarker();
+}
+
+bool InputHandler::setCursorPosition(int location)
+{
+    return setSelection(location, location);
+}
+
+bool InputHandler::setSelection(int start, int end, bool changeIsPartOfComposition)
+{
+    if (!isActiveTextEdit())
+        return false;
+
+    ASSERT(m_currentFocusElement->document() && m_currentFocusElement->document()->frame());
+
+    ProcessingChangeGuard guard(this);
+
+    VisibleSelection newSelection = DOMSupport::visibleSelectionForRangeInputElement(m_currentFocusElement.get(), start, end);
+    m_currentFocusElement->document()->frame()->selection()->setSelection(newSelection, changeIsPartOfComposition ? 0 : FrameSelection::CloseTyping | FrameSelection::ClearTypingStyle);
+
+    InputLog(BlackBerry::Platform::LogLevelInfo, "InputHandler::setSelection selectionStart=%u, selectionEnd=%u", start, end);
+
+    return start == selectionStart() && end == selectionEnd();
+}
+
+WebCore::IntRect InputHandler::rectForCaret(int index)
+{
+    if (!isActiveTextEdit())
+        return WebCore::IntRect();
+
+    ASSERT(m_currentFocusElement->document() && m_currentFocusElement->document()->frame());
+
+    if (index < 0 || index > elementText().length()) {
+        // Invalid request.
+        return WebCore::IntRect();
+    }
+
+    FrameSelection caretSelection;
+    caretSelection.setSelection(DOMSupport::visibleSelectionForRangeInputElement(m_currentFocusElement.get(), index, index).visibleStart());
+    caretSelection.modify(FrameSelection::AlterationExtend, DirectionForward, CharacterGranularity);
+    return caretSelection.selection().visibleStart().absoluteCaretBounds();
+}
+
+void InputHandler::cancelSelection()
+{
+    if (!isActiveTextEdit())
+        return;
+
+    ASSERT(m_currentFocusElement->document() && m_currentFocusElement->document()->frame());
+
+    int selectionStartPosition = selectionStart();
+    ProcessingChangeGuard guard(this);
+    setCursorPosition(selectionStartPosition);
+}
+
+bool InputHandler::handleKeyboardInput(const BlackBerry::Platform::KeyboardEvent& keyboardEvent, bool changeIsPartOfComposition)
+{
+    InputLog(BlackBerry::Platform::LogLevelInfo, "InputHandler::handleKeyboardInput received character=%lc, type=%d", keyboardEvent.character(), keyboardEvent.type());
+
+    // If we aren't specifically part of a composition, fail, IMF should never send key input
+    // while composing text. If IMF has failed, we should have already finished the
+    // composition manually.
+    if (!changeIsPartOfComposition && compositionActive())
+        return false;
+
+    ProcessingChangeGuard guard(this);
+
+    unsigned adjustedModifiers = keyboardEvent.modifiers();
+    if (WTF::isASCIIUpper(keyboardEvent.character()))
+        adjustedModifiers |= KEYMOD_SHIFT;
+
+    ASSERT(m_webPage->m_page->focusController());
+    bool keyboardEventHandled = false;
+    if (Frame* focusedFrame = m_webPage->m_page->focusController()->focusedFrame()) {
+        bool isKeyChar = keyboardEvent.type() == BlackBerry::Platform::KeyboardEvent::KeyChar;
+        BlackBerry::Platform::KeyboardEvent::Type type = keyboardEvent.type();
+
+        // If this is a KeyChar type then we handle it as a keydown followed by a key up.
+        if (isKeyChar)
+            type = BlackBerry::Platform::KeyboardEvent::KeyDown;
+
+        BlackBerry::Platform::KeyboardEvent adjustedKeyboardEvent(keyboardEvent.character(), type, adjustedModifiers);
+        keyboardEventHandled = focusedFrame->eventHandler()->keyEvent(PlatformKeyboardEvent(adjustedKeyboardEvent));
+
+        if (isKeyChar) {
+            type = BlackBerry::Platform::KeyboardEvent::KeyUp;
+            adjustedKeyboardEvent = BlackBerry::Platform::KeyboardEvent(keyboardEvent.character(), type, adjustedModifiers);
+            keyboardEventHandled = focusedFrame->eventHandler()->keyEvent(PlatformKeyboardEvent(adjustedKeyboardEvent)) || keyboardEventHandled;
+        }
+
+        if (!changeIsPartOfComposition && type == BlackBerry::Platform::KeyboardEvent::KeyUp)
+            ensureFocusTextElementVisible(EdgeIfNeeded);
+    }
+    return keyboardEventHandled;
+}
+
+bool InputHandler::handleNavigationMove(unsigned short character, bool shiftDown, bool altDown, bool canExitField)
+{
+    InputLog(BlackBerry::Platform::LogLevelInfo, "InputHandler::handleNavigationMove received character=%lc", character);
+
+    bool eventHandled = false;
+    ASSERT(m_webPage->m_page->focusController());
+    if (Frame* focusedFrame = m_webPage->m_page->focusController()->focusedFrame()) {
+        // If alt is down, do not break out of the field.
+        if (canExitField && !altDown) {
+            if ((character == KEYCODE_LEFT || character == KEYCODE_UP) && selectionAtStartOfElement()
+                || (character == KEYCODE_RIGHT || character == KEYCODE_DOWN) && selectionAtEndOfElement()) {
+                setNavigationMode(false);
+                return true;
+            }
+        }
+
+        switch (character) {
+        case KEYCODE_LEFT:
+            if (altDown && shiftDown)
+                eventHandled = focusedFrame->editor()->command("MoveToBeginningOfLineAndModifySelection").execute();
+            else if (altDown)
+                eventHandled = focusedFrame->editor()->command("MoveToBeginningOfLine").execute();
+            else if (shiftDown)
+                eventHandled = focusedFrame->editor()->command("MoveLeftAndModifySelection").execute();
+            else
+                eventHandled = focusedFrame->editor()->command("MoveLeft").execute();
+            break;
+        case KEYCODE_RIGHT:
+            if (altDown && shiftDown)
+                eventHandled = focusedFrame->editor()->command("MoveToEndOfLineAndModifySelection").execute();
+            else if (altDown)
+                eventHandled = focusedFrame->editor()->command("MoveToEndOfLine").execute();
+            else if (shiftDown)
+                eventHandled = focusedFrame->editor()->command("MoveRightAndModifySelection").execute();
+            else
+                eventHandled = focusedFrame->editor()->command("MoveRight").execute();
+            break;
+        case KEYCODE_UP:
+            if (altDown && shiftDown)
+                eventHandled = focusedFrame->editor()->command("MoveToBeginningOfDocumentAndModifySelection").execute();
+            else if (altDown)
+                eventHandled = focusedFrame->editor()->command("MoveToBeginningOfDocument").execute();
+            else if (shiftDown)
+                eventHandled = focusedFrame->editor()->command("MoveUpAndModifySelection").execute();
+            else
+                eventHandled = focusedFrame->editor()->command("MoveUp").execute();
+            break;
+        case KEYCODE_DOWN:
+            if (altDown && shiftDown)
+                eventHandled = focusedFrame->editor()->command("MoveToEndOfDocumentAndModifySelection").execute();
+            else if (altDown)
+                eventHandled = focusedFrame->editor()->command("MoveToEndOfDocument").execute();
+            else if (shiftDown)
+                eventHandled = focusedFrame->editor()->command("MoveDownAndModifySelection").execute();
+            else
+                eventHandled = focusedFrame->editor()->command("MoveDown").execute();
+            break;
+        }
+    }
+    return eventHandled;
+}
+
+bool InputHandler::deleteSelection()
+{
+    if (!isActiveTextEdit())
+        return false;
+
+    ASSERT(m_currentFocusElement->document() && m_currentFocusElement->document()->frame());
+    Frame* frame = m_currentFocusElement->document()->frame();
+
+    if (frame->selection()->selectionType() != VisibleSelection::RangeSelection)
+        return false;
+
+    ASSERT(frame->editor());
+    return frame->editor()->command("DeleteBackward").execute();
+}
+
+void InputHandler::insertText(const WTF::String& string)
+{
+    if (!isActiveTextEdit())
+        return;
+
+    ASSERT(m_currentFocusElement->document() && m_currentFocusElement->document()->frame() && m_currentFocusElement->document()->frame()->editor());
+    Editor* editor = m_currentFocusElement->document()->frame()->editor();
+
+    editor->command("InsertText").execute(string);
+}
+
+void InputHandler::clearField()
+{
+    if (!isActiveTextEdit())
+        return;
+
+    ASSERT(m_currentFocusElement->document() && m_currentFocusElement->document()->frame() && m_currentFocusElement->document()->frame()->editor());
+    Editor* editor = m_currentFocusElement->document()->frame()->editor();
+
+    editor->command("SelectAll").execute();
+    editor->command("DeleteBackward").execute();
+}
+
+bool InputHandler::executeTextEditCommand(const WTF::String& commandName)
+{
+    ASSERT(m_webPage->focusedOrMainFrame() && m_webPage->focusedOrMainFrame()->editor());
+    Editor* editor = m_webPage->focusedOrMainFrame()->editor();
+
+    return editor->command(commandName).execute();
+}
+
+void InputHandler::cut()
+{
+    executeTextEditCommand("Cut");
+}
+
+void InputHandler::copy()
+{
+    executeTextEditCommand("Copy");
+}
+
+void InputHandler::paste()
+{
+    executeTextEditCommand("Paste");
+}
+
+void InputHandler::addAttributedTextMarker(int start, int end, const AttributeTextStyle& style)
+{
+    if ((end - start) < 1 || end > static_cast<int>(elementText().length()))
+        return;
+
+    RefPtr<Range> markerRange = DOMSupport::visibleSelectionForRangeInputElement(m_currentFocusElement.get(), start, end).toNormalizedRange();
+    m_currentFocusElement->document()->markers()->addMarker(markerRange.get(), DocumentMarker::AttributeText, WTF::String("Input Marker"), style);
+}
+
+void InputHandler::removeAttributedTextMarker()
+{
+    // Remove all attribute text markers.
+    if (m_currentFocusElement && m_currentFocusElement->document())
+        m_currentFocusElement->document()->markers()->removeMarkers(DocumentMarker::AttributeText);
+
+    m_composingTextStart = 0;
+    m_composingTextEnd = 0;
+}
+
+void InputHandler::handleInputLocaleChanged(bool isRTL)
+{
+    if (!isActiveTextEdit())
+        return;
+
+    ASSERT(m_currentFocusElement->document() && m_currentFocusElement->document()->frame());
+    RenderObject* renderer = m_currentFocusElement->renderer();
+    if (!renderer)
+        return;
+
+    Editor* editor = m_currentFocusElement->document()->frame()->editor();
+    ASSERT(editor);
+    if ((renderer->style()->direction() == RTL) != isRTL)
+        editor->setBaseWritingDirection(isRTL ? RightToLeftWritingDirection : LeftToRightWritingDirection);
+}
+
+void InputHandler::clearCurrentFocusElement()
+{
+    if (m_currentFocusElement)
+        m_currentFocusElement->blur();
+}
+
+bool InputHandler::willOpenPopupForNode(Node* node)
+{
+    // This method must be kept synchronized with InputHandler::didNodeOpenPopup.
+    if (!node)
+        return false;
+
+    ASSERT(!node->isInShadowTree());
+
+    if (node->hasTagName(HTMLNames::selectTag) || node->hasTagName(HTMLNames::optionTag)) {
+        // We open list popups for options and selects.
+        return true;
+    }
+
+    if (node->isElementNode()) {
+        Element* element = static_cast<Element*>(node);
+        if (DOMSupport::isPopupInputField(element))
+            return true;
+    }
+
+    return false;
+}
+
+bool InputHandler::didNodeOpenPopup(Node* node)
+{
+    // This method must be kept synchronized with InputHandler::willOpenPopupForNode.
+    if (!node)
+        return false;
+
+    ASSERT(!node->isInShadowTree());
+
+    if (node->hasTagName(HTMLNames::selectTag))
+        return openSelectPopup(static_cast<HTMLSelectElement*>(node));
+
+    if (node->hasTagName(HTMLNames::optionTag)) {
+        HTMLOptionElement* optionElement = static_cast<HTMLOptionElement*>(node);
+        return openSelectPopup(optionElement->ownerSelectElement());
+    }
+
+    if (HTMLInputElement* element = node->toInputElement()) {
+        if (DOMSupport::isDateTimeInputField(element))
+            return openDatePopup(element, elementType(element));
+
+        if (DOMSupport::isColorInputField(element))
+            return openColorPopup(element);
+    }
+    return false;
+}
+
+bool InputHandler::openSelectPopup(HTMLSelectElement* select)
+{
+    if (!select || select->disabled())
+        return false;
+
+    if (isActiveTextEdit())
+        clearCurrentFocusElement();
+
+    m_currentFocusElement = select;
+    m_currentFocusElementType = SelectPopup;
+    const WTF::Vector<HTMLElement*>& listItems = select->listItems();
+    int size = listItems.size();
+    if (!size) {
+        ScopeArray<WebString> labels;
+        bool* enableds = 0;
+        int* itemTypes = 0;
+        bool* selecteds = 0;
+        m_webPage->m_client->openPopupList(false, size, labels, enableds, itemTypes, selecteds);
+        return true;
+    }
+
+    bool multiple = select->multiple();
+
+    ScopeArray<WebString> labels;
+    labels.reset(new WebString[size]);
+    bool* enableds = new bool[size];
+    int* itemTypes = new int[size];
+    bool* selecteds = new bool[size];
+
+    for (int i = 0; i < size; i++) {
+        if (listItems[i]->hasTagName(HTMLNames::optionTag)) {
+            HTMLOptionElement* option = static_cast<HTMLOptionElement*>(listItems[i]);
+            labels[i] = option->textIndentedToRespectGroupLabel();
+            enableds[i] = option->disabled() ? 0 : 1;
+            selecteds[i] = option->selected();
+            itemTypes[i] = TypeOption;
+        } else if (listItems[i]->hasTagName(HTMLNames::optgroupTag)) {
+            HTMLOptGroupElement* optGroup = static_cast<HTMLOptGroupElement*>(listItems[i]);
+            labels[i] = optGroup->groupLabelText();
+            enableds[i] = optGroup->disabled() ? 0 : 1;
+            selecteds[i] = false;
+            itemTypes[i] = TypeGroup;
+        } else if (listItems[i]->hasTagName(HTMLNames::hrTag)) {
+            enableds[i] = false;
+            selecteds[i] = false;
+            itemTypes[i] = TypeSeparator;
+        }
+    }
+
+    m_webPage->m_client->openPopupList(multiple, size, labels, enableds, itemTypes, selecteds);
+    return true;
+}
+
+void InputHandler::setPopupListIndex(int index)
+{
+    if (index == -2) // Abandon
+        return clearCurrentFocusElement();
+
+    if (!isActiveSelectPopup())
+        return clearCurrentFocusElement();
+
+    RenderObject* renderer = m_currentFocusElement->renderer();
+    if (renderer && renderer->isMenuList()) {
+        RenderMenuList* renderMenu = toRenderMenuList(renderer);
+        renderMenu->hidePopup();
+    }
+
+    HTMLSelectElement* selectElement = static_cast<HTMLSelectElement*>(m_currentFocusElement.get());
+    int optionIndex = selectElement->listToOptionIndex(index);
+    selectElement->optionSelectedByUser(optionIndex, true /* deselect = true */, true /* fireOnChangeNow = false */);
+    clearCurrentFocusElement();
+}
+
+void InputHandler::setPopupListIndexes(int size, bool* selecteds)
+{
+    if (!isActiveSelectPopup())
+        return clearCurrentFocusElement();
+
+    if (size < 0)
+        return;
+
+    HTMLSelectElement* selectElement = static_cast<HTMLSelectElement*>(m_currentFocusElement.get());
+    const WTF::Vector<HTMLElement*>& items = selectElement->listItems();
+    if (items.size() != static_cast<unsigned int>(size))
+        return;
+
+    HTMLOptionElement* option;
+    for (int i = 0; i < size; i++) {
+        if (items[i]->hasTagName(HTMLNames::optionTag)) {
+            option = static_cast<HTMLOptionElement*>(items[i]);
+            option->setSelectedState(selecteds[i]);
+        }
+    }
+
+    // Force repaint because we do not send mouse events to the select element
+    // and the element doesn't automatically repaint itself.
+    selectElement->dispatchFormControlChangeEvent();
+    selectElement->renderer()->repaint();
+    clearCurrentFocusElement();
+}
+
+bool InputHandler::setBatchEditingActive(bool active)
+{
+    if (!isActiveTextEdit())
+        return false;
+
+    ASSERT(m_currentFocusElement->document());
+    ASSERT(m_currentFocusElement->document()->frame());
+
+    // FIXME switch this to m_currentFocusElement->document()->frame() when we have separate
+    // backingstore for each frame.
+    BackingStoreClient* backingStoreClientForFrame = m_webPage->backingStoreClientForFrame(m_webPage->mainFrame());
+    ASSERT(backingStoreClientForFrame);
+
+    // Enable / Disable the backingstore to prevent visual updates.
+    if (!active)
+        backingStoreClientForFrame->backingStore()->resumeScreenAndBackingStoreUpdates(BackingStore::RenderAndBlit);
+    else
+        backingStoreClientForFrame->backingStore()->suspendScreenAndBackingStoreUpdates();
+
+    return true;
+}
+
+int InputHandler::caretPosition() const
+{
+    if (!isActiveTextEdit())
+        return -1;
+
+    // NOTE: This function is expected to return the start of the selection if
+    // a selection is applied.
+    return selectionStart();
+}
+
+int relativeLeftOffset(int caretPosition, int leftOffset)
+{
+    ASSERT(caretPosition >= 0);
+
+    return std::max(0, caretPosition - leftOffset);
+}
+
+int relativeRightOffset(int caretPosition, unsigned totalLengthOfText, int rightOffset)
+{
+    ASSERT(caretPosition >= 0);
+    ASSERT(totalLengthOfText < INT_MAX);
+
+    return std::min(caretPosition + rightOffset, static_cast<int>(totalLengthOfText));
+}
+
+bool InputHandler::deleteTextRelativeToCursor(int leftOffset, int rightOffset)
+{
+    if (!isActiveTextEdit() || compositionActive())
+        return false;
+
+    ProcessingChangeGuard guard(this);
+
+    InputLog(BlackBerry::Platform::LogLevelInfo, "InputHandler::deleteTextRelativeToCursor left %d right %d", leftOffset, rightOffset);
+
+    int caretOffset = caretPosition();
+    int start = relativeLeftOffset(caretOffset, leftOffset);
+    int end = relativeRightOffset(caretOffset, elementText().length(), rightOffset);
+    if (!deleteText(start, end))
+        return false;
+
+    // Scroll the field if necessary. The automatic update is suppressed
+    // by the processing change guard.
+    ensureFocusTextElementVisible(EdgeIfNeeded);
+
+    return true;
+}
+
+bool InputHandler::deleteText(int start, int end)
+{
+    if (!isActiveTextEdit())
+        return false;
+
+    ProcessingChangeGuard guard(this);
+
+    if (!setSelection(start, end, true /*changeIsPartOfComposition*/))
+        return false;
+
+    InputLog(BlackBerry::Platform::LogLevelInfo, "InputHandler::deleteText start %d end %d", start, end);
+
+    return deleteSelection();
+}
+
+spannable_string_t* InputHandler::spannableTextInRange(int start, int end, int32_t flags)
+{
+    if (!isActiveTextEdit())
+        return 0;
+
+    if (start == end)
+        return 0;
+
+    ASSERT(end > start);
+    int length = end - start;
+
+    WTF::String textString = elementText().substring(start, length);
+
+    spannable_string_t* pst = (spannable_string_t*)malloc(sizeof(spannable_string_t));
+    if (!pst) {
+        InputLog(BlackBerry::Platform::LogLevelInfo, "InputHandler::spannableTextInRange error allocating spannable string.");
+        return 0;
+    }
+
+    pst->str = (wchar_t*)malloc(sizeof(wchar_t) * (length + 1));
+    if (!pst->str) {
+        InputLog(BlackBerry::Platform::LogLevelInfo, "InputHandler::spannableTextInRange Cannot allocate memory for string.\n");
+        free(pst);
+        return 0;
+    }
+
+    int stringLength = 0;
+    if (!convertStringToWchar(textString, pst->str, length + 1, &stringLength)) {
+        free(pst->str);
+        free(pst);
+        return 0;
+    }
+
+    pst->length = stringLength;
+    pst->spans_count = 0;
+    pst->spans = 0;
+    return pst;
+}
+
+spannable_string_t* InputHandler::selectedText(int32_t flags)
+{
+    if (!isActiveTextEdit())
+        return 0;
+
+    return spannableTextInRange(selectionStart(), selectionEnd(), flags);
+}
+
+spannable_string_t* InputHandler::textBeforeCursor(int32_t length, int32_t flags)
+{
+    if (!isActiveTextEdit())
+        return 0;
+
+    int caretOffset = caretPosition();
+    int start = relativeLeftOffset(caretOffset, length);
+    int end = caretOffset;
+
+    return spannableTextInRange(start, end, flags);
+}
+
+spannable_string_t* InputHandler::textAfterCursor(int32_t length, int32_t flags)
+{
+    if (!isActiveTextEdit())
+        return 0;
+
+    int caretOffset = caretPosition();
+    int start = caretOffset;
+    int end = relativeRightOffset(caretOffset, elementText().length(), length);
+
+    return spannableTextInRange(start, end, flags);
+}
+
+extracted_text_t* InputHandler::extractedTextRequest(extracted_text_request_t* request, int32_t flags)
+{
+    if (!isActiveTextEdit())
+        return 0;
+
+    extracted_text_t* extractedText = (extracted_text_t *)malloc(sizeof(extracted_text_t));
+
+    // 'flags' indicates whether the text is being monitored. This is not currently used.
+
+    // FIXME add smart limiting based on the hint sizes. Currently return all text.
+
+    extractedText->text = spannableTextInRange(0, elementText().length(), flags);
+
+    // FIXME confirm these should be 0 on this requested. Text changes will likely require
+    // the end be the length.
+    extractedText->partial_start_offset = 0;
+    extractedText->partial_end_offset = 0;
+    extractedText->start_offset = 0;
+
+    // Adjust selection values relative to the start offset, which may be a subset
+    // of the text in the field.
+    extractedText->selection_start = selectionStart() - extractedText->start_offset;
+    extractedText->selection_end = selectionEnd() - extractedText->start_offset;
+
+    // selectionActive is not limited to inside the extracted text.
+    bool selectionActive = extractedText->selection_start != extractedText->selection_end;
+    bool singleLine = m_currentFocusElement->hasTagName(HTMLNames::inputTag);
+
+    // FIXME flags has two values in doc, enum not in header yet.
+    extractedText->flags = selectionActive & singleLine;
+
+    return extractedText;
+}
+
+static void addCompositionTextStyleToAttributeTextStyle(AttributeTextStyle& style)
+{
+    style.setUnderline(AttributeTextStyle::StandardUnderline);
+}
+
+static void addActiveTextStyleToAttributeTextStyle(AttributeTextStyle& style)
+{
+    style.setBackgroundColor(Color("blue"));
+    style.setTextColor(Color("white"));
+}
+
+static AttributeTextStyle compositionTextStyle()
+{
+    AttributeTextStyle style;
+    addCompositionTextStyleToAttributeTextStyle(style);
+    return style;
+}
+
+static AttributeTextStyle textStyleFromMask(int64_t mask)
+{
+    AttributeTextStyle style;
+    if (mask & COMPOSED_TEXT_ATTRIB)
+        addCompositionTextStyleToAttributeTextStyle(style);
+
+    if (mask & ACTIVE_REGION_ATTRIB)
+        addActiveTextStyleToAttributeTextStyle(style);
+
+    return style;
+}
+
+bool InputHandler::removeComposedText()
+{
+    if (compositionActive()) {
+        if (!deleteText(m_composingTextStart, m_composingTextEnd)) {
+            // Could not remove the existing composition region.
+            return false;
+        }
+        removeAttributedTextMarker();
+    }
+
+    return true;
+}
+
+int32_t InputHandler::setComposingRegion(int32_t start, int32_t end)
+{
+    if (!isActiveTextEdit())
+        return -1;
+
+    if (!removeComposedText()) {
+        // Could not remove the existing composition region.
+        return -1;
+    }
+
+    m_composingTextStart = start;
+    m_composingTextEnd = end;
+
+    if (compositionActive())
+        addAttributedTextMarker(start, end, compositionTextStyle());
+
+    InputLog(BlackBerry::Platform::LogLevelInfo, "InputHandler::setComposingRegion start %d end %d", start, end);
+
+    return 0;
+}
+
+int32_t InputHandler::finishComposition()
+{
+    if (!isActiveTextEdit())
+        return -1;
+
+    // FIXME if no composition is active, should we return failure -1?
+    if (!compositionActive())
+        return 0;
+
+    // Remove all markers.
+    removeAttributedTextMarker();
+
+    InputLog(BlackBerry::Platform::LogLevelInfo, "InputHandler::finishComposition completed");
+
+    return 0;
+}
+
+span_t* InputHandler::firstSpanInString(spannable_string_t* spannableString, SpannableStringAttribute attrib)
+{
+    span_t* span = spannableString->spans;
+    for (unsigned int i = 0; i < spannableString->spans_count; i++) {
+        if (span->attributes_mask & attrib)
+            return span;
+        span++;
+    }
+
+    return 0;
+}
+
+bool InputHandler::isTrailingSingleCharacter(span_t* span, unsigned stringLength, unsigned composingTextLength)
+{
+    // Make sure the new string is one character larger than the old.
+    if (composingTextLength != stringLength - 1)
+        return false;
+
+    if (!span)
+        return false;
+
+    // Has only 1 character changed?
+    if (span->start == span->end) {
+        // Is this character the last character in the string?
+        if (span->start == stringLength - 1)
+            return true;
+    }
+    // Return after the first changed_attrib is found.
+    return false;
+}
+
+bool InputHandler::setText(spannable_string_t* spannableString)
+{
+    if (!isActiveTextEdit() || !spannableString)
+        return false;
+
+    ASSERT(m_currentFocusElement->document() && m_currentFocusElement->document()->frame());
+    Frame* frame = m_currentFocusElement->document()->frame();
+
+    Editor* editor = frame->editor();
+    ASSERT(editor);
+
+    // Disable selectionHandler's active selection as we will be resetting and these
+    // changes should not be handled as notification event.
+    m_webPage->m_selectionHandler->setSelectionActive(false);
+
+    String textToInsert = convertSpannableStringToString(spannableString);
+    int textLength = textToInsert.length();
+
+    span_t* changedSpan = firstSpanInString(spannableString, CHANGED_ATTRIB);
+    int composingTextStart = m_composingTextStart;
+    int composingTextEnd = m_composingTextEnd;
+    int composingTextLength = compositionLength();
+    removeAttributedTextMarker();
+
+    if (isTrailingSingleCharacter(changedSpan, textLength, composingTextLength)) {
+        // Handle the case where text is being composed.
+        if (firstSpanInString(spannableString, COMPOSED_TEXT_ATTRIB))
+            return editor->command("InsertText").execute(textToInsert.right(1));
+        return handleKeyboardInput(BlackBerry::Platform::KeyboardEvent(textToInsert[textLength - 1], BlackBerry::Platform::KeyboardEvent::KeyChar, 0), false /* changeIsPartOfComposition */);
+    }
+
+    // If no spans have changed, treat it as a delete operation.
+    if (!changedSpan) {
+        // If the composition length is the same as our string length, then we don't need to do anything.
+        if (composingTextLength == textLength)
+            return true;
+
+        if (composingTextLength - textLength == 1)
+            return editor->command("DeleteBackward").execute();
+    }
+
+    if (composingTextLength && !setSelection(composingTextStart, composingTextEnd, true /* changeIsPartOfComposition */))
+        return false;
+
+    // If there is no text to add just delete.
+    if (!textLength) {
+        if (selectionActive())
+            return editor->command("DeleteBackward").execute();
+
+        // Nothing to do.
+        return true;
+    }
+
+    InputLog(BlackBerry::Platform::LogLevelInfo, "setText spannableString is %s, %d \n", textToInsert.latin1().data(), textLength);
+
+    // Triggering an insert of the text with a space character trailing
+    // causes new text to adopt the previous text style.
+    // Remove it and apply it as a keypress later.
+    // Upstream Webkit bug created https://bugs.webkit.org/show_bug.cgi?id=70823
+    bool requiresSpaceKeyPress = false;
+    if (textLength > 0 && textToInsert[textLength - 1] == 32 /* space */) {
+        requiresSpaceKeyPress = true;
+        textLength--;
+        textToInsert.remove(textLength, 1);
+    }
+
+    InputLog(BlackBerry::Platform::LogLevelInfo, "InputHandler::setText Request being processed Text before %s", elementText().latin1().data());
+
+    if (textLength == 1 && !spannableString->spans_count) {
+        // Handle single key non-attributed entry as key press rather than insert to allow
+        // triggering of javascript events.
+
+        return handleKeyboardInput(BlackBerry::Platform::KeyboardEvent(textToInsert[0], BlackBerry::Platform::KeyboardEvent::KeyChar, 0), true /* changeIsPartOfComposition */);
+    }
+
+    // Perform the text change as a single command if there is one.
+    if (!textToInsert.isEmpty() && !editor->command("InsertText").execute(textToInsert)) {
+        InputLog(BlackBerry::Platform::LogLevelWarn, "InputHandler::setText Failed to insert text %s", textToInsert.latin1().data());
+        return false;
+    }
+
+    InputLog(BlackBerry::Platform::LogLevelInfo, "InputHandler::setText Request being processed Text after insert %s", elementText().latin1().data());
+
+    if (requiresSpaceKeyPress)
+        handleKeyboardInput(BlackBerry::Platform::KeyboardEvent(32 /* space */, BlackBerry::Platform::KeyboardEvent::KeyChar, 0), true /* changeIsPartOfComposition */);
+
+    InputLog(BlackBerry::Platform::LogLevelInfo, "InputHandler::setText Text after %s", elementText().latin1().data());
+
+    return true;
+}
+
+bool InputHandler::setTextAttributes(int insertionPoint, spannable_string_t* spannableString)
+{
+    // Apply the attributes to the field.
+    span_t* span = spannableString->spans;
+    for (unsigned int i = 0; i < spannableString->spans_count; i++) {
+        unsigned int startPosition = insertionPoint + span->start;
+        // The end point includes the character that it is before. Ie, 0, 0
+        // applies to the first character as the end point includes the character
+        // at the position. This means the endPosition is always +1.
+        unsigned int endPosition = insertionPoint + span->end + 1;
+        if (endPosition < startPosition || endPosition > elementText().length())
+            return false;
+
+        if (!span->attributes_mask)
+            continue; // Nothing to do.
+
+        // MISSPELLED_WORD_ATTRIB is present as an option, but it is not currently
+        // used by IMF. When they add support for on the fly spell checking we can
+        // use it to apply spelling markers and disable continuous spell checking.
+
+        InputLog(BlackBerry::Platform::LogLevelInfo, "InputHandler::setTextAttributes adding marker %d to %d - %d", startPosition, endPosition, span->attributes_mask);
+        addAttributedTextMarker(startPosition, endPosition, textStyleFromMask(span->attributes_mask));
+
+        span++;
+    }
+
+    InputLog(BlackBerry::Platform::LogLevelInfo, "InputHandler::setTextAttributes attribute count %d", spannableString->spans_count);
+
+    return true;
+}
+
+bool InputHandler::setRelativeCursorPosition(int insertionPoint, int relativeCursorPosition)
+{
+    if (!isActiveTextEdit())
+        return false;
+
+    // 1 place cursor at end of insertion text.
+    if (relativeCursorPosition == 1) {
+        m_currentFocusElement->document()->frame()->selection()->revealSelection(ScrollAlignment::alignToEdgeIfNeeded);
+        return true;
+    }
+
+    int cursorPosition = 0;
+    if (relativeCursorPosition <= 0) {
+        // Zero = insertionPoint
+        // Negative value, move the cursor the requested number of characters before
+        // the start of the inserted text.
+        cursorPosition = insertionPoint + relativeCursorPosition;
+    } else {
+        // Positive value, move the cursor the requested number of characters after
+        // the end of the inserted text minus 1.
+        cursorPosition = caretPosition() + relativeCursorPosition - 1;
+    }
+
+    if (cursorPosition < 0 || cursorPosition > (int)elementText().length())
+        return false;
+
+    InputLog(BlackBerry::Platform::LogLevelInfo, "InputHandler::setRelativeCursorPosition cursor position %d", cursorPosition);
+
+    return setCursorPosition(cursorPosition);
+}
+
+bool InputHandler::setSpannableTextAndRelativeCursor(spannable_string_t* spannableString, int relativeCursorPosition, bool markTextAsComposing)
+{
+    InputLog(BlackBerry::Platform::LogLevelInfo, "InputHandler::setSpannableTextAndRelativeCursor(%d, %d, %d)\n", spannableString->length, relativeCursorPosition, markTextAsComposing);
+    int insertionPoint = compositionActive() ? m_composingTextStart : selectionStart();
+
+    ProcessingChangeGuard guard(this);
+
+    if (!setText(spannableString))
+        return false;
+
+    if (!setTextAttributes(insertionPoint, spannableString))
+        return false;
+
+    if (!setRelativeCursorPosition(insertionPoint, relativeCursorPosition))
+        return false;
+
+    if (markTextAsComposing) {
+        m_composingTextStart = insertionPoint;
+        m_composingTextEnd = insertionPoint + spannableString->length;
+    }
+
+    // Scroll the field if necessary. The automatic update is suppressed
+    // by the processing change guard.
+    ensureFocusTextElementVisible(EdgeIfNeeded);
+
+    return true;
+}
+
+int32_t InputHandler::setComposingText(spannable_string_t* spannableString, int32_t relativeCursorPosition)
+{
+    if (!isActiveTextEdit())
+        return -1;
+
+    if (!spannableString)
+        return -1;
+
+    InputLog(BlackBerry::Platform::LogLevelInfo, "InputHandler::setComposingText at relativeCursorPosition: %d", relativeCursorPosition);
+
+    return setSpannableTextAndRelativeCursor(spannableString, relativeCursorPosition, true /* markTextAsComposing */) ? 0 : -1;
+}
+
+int32_t InputHandler::commitText(spannable_string_t* spannableString, int32_t relativeCursorPosition)
+{
+    if (!isActiveTextEdit())
+        return -1;
+
+    if (!spannableString)
+        return -1;
+
+    InputLog(BlackBerry::Platform::LogLevelInfo, "InputHandler::commitText");
+
+    return setSpannableTextAndRelativeCursor(spannableString, relativeCursorPosition, false /* markTextAsComposing */) ? 0 : -1;
+}
+
+}
+}
diff --git a/Source/WebKit/blackberry/WebKitSupport/InputHandler.h b/Source/WebKit/blackberry/WebKitSupport/InputHandler.h
new file mode 100644 (file)
index 0000000..ba7eb3e
--- /dev/null
@@ -0,0 +1,189 @@
+/*
+ * Copyright (C) 2009, 2010, 2011, 2012 Research In Motion Limited. All rights reserved.
+ *
+ * This library is free software; you can redistribute it and/or
+ * modify it under the terms of the GNU Lesser General Public
+ * License as published by the Free Software Foundation; either
+ * version 2 of the License, or (at your option) any later version.
+ *
+ * This library is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
+ * Lesser General Public License for more details.
+ *
+ * You should have received a copy of the GNU Lesser General Public
+ * License along with this library; if not, write to the Free Software
+ * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301  USA
+ */
+
+#ifndef InputHandler_h
+#define InputHandler_h
+
+#include <BlackBerryPlatformInputEvents.h>
+
+#include <imf/input_data.h>
+
+#include <wtf/RefPtr.h>
+
+namespace WTF {
+class String;
+}
+
+namespace WebCore {
+class AttributeTextStyle;
+class Element;
+class Frame;
+class HTMLInputElement;
+class HTMLSelectElement;
+class IntRect;
+class Node;
+}
+
+namespace BlackBerry {
+
+namespace Platform {
+class KeyboardEvent;
+}
+
+namespace WebKit {
+
+class WebPagePrivate;
+
+class InputHandler {
+public:
+    InputHandler(WebPagePrivate*);
+    ~InputHandler();
+
+    enum FocusElementType { TextEdit, TextPopup /* Date/Time & Color */, SelectPopup, Plugin };
+    enum CaretScrollType { CenterAlways, CenterIfNeeded, EdgeIfNeeded };
+
+    void nodeFocused(WebCore::Node*);
+    void nodeTextChanged(const WebCore::Node*);
+    void selectionChanged();
+    void frameUnloaded(WebCore::Frame*);
+
+    bool handleKeyboardInput(const BlackBerry::Platform::KeyboardEvent&, bool changeIsPartOfComposition = false);
+    bool handleNavigationMove(const unsigned short character, bool shiftDown, bool altDown, bool canExitField = true);
+
+    bool deleteSelection();
+    void insertText(const WTF::String&);
+    void clearField();
+
+    void cut();
+    void copy();
+    void paste();
+
+    void cancelSelection();
+
+    void setInputValue(const WTF::String&);
+
+    bool isInputMode() const { return isActiveTextEdit(); }
+    bool isMultilineInputMode() const { return isActiveTextEdit() && elementType(m_currentFocusElement.get()) == BlackBerry::Platform::InputTypeTextArea; }
+
+    void setNavigationMode(bool active, bool sendMessage = true);
+
+    void ensureFocusElementVisible(bool centerFieldInDisplay = true);
+    void handleInputLocaleChanged(bool isRTL);
+
+    // PopupMenu methods.
+    bool willOpenPopupForNode(WebCore::Node*);
+    bool didNodeOpenPopup(WebCore::Node*);
+    bool openLineInputPopup(WebCore::HTMLInputElement*);
+    bool openSelectPopup(WebCore::HTMLSelectElement*);
+    void setPopupListIndex(int);
+    void setPopupListIndexes(int size, bool* selecteds);
+
+    bool processingChange() const { return m_processingChange; }
+    void setProcessingChange(bool processingChange) { m_processingChange = processingChange; }
+
+    WTF::String elementText();
+
+    // IMF driven calls.
+    bool setBatchEditingActive(bool);
+    bool setSelection(int start, int end, bool changeIsPartOfComposition = false);
+    int caretPosition() const;
+    bool deleteTextRelativeToCursor(int leftOffset, int rightOffset);
+
+    spannable_string_t* selectedText(int32_t flags);
+    spannable_string_t* textBeforeCursor(int32_t length, int32_t flags);
+    spannable_string_t* textAfterCursor(int32_t length, int32_t flags);
+    extracted_text_t* extractedTextRequest(extracted_text_request_t*, int32_t flags);
+
+    int32_t setComposingRegion(int32_t start, int32_t end);
+    int32_t finishComposition();
+    int32_t setComposingText(spannable_string_t*, int32_t relativeCursorPosition);
+    int32_t commitText(spannable_string_t*, int32_t relativeCursorPosition);
+
+    bool shouldAcceptInputFocus();
+
+private:
+    void setElementFocused(WebCore::Element*);
+    void setPluginFocused(WebCore::Element*);
+    void setElementUnfocused(bool refocusOccuring = false);
+
+    void ensureFocusTextElementVisible(CaretScrollType = CenterAlways);
+    void ensureFocusPluginElementVisible();
+
+    void clearCurrentFocusElement();
+
+    bool selectionAtStartOfElement();
+    bool selectionAtEndOfElement();
+
+    WebCore::IntRect rectForCaret(int index);
+
+    bool isActiveTextEdit() const { return m_currentFocusElement && m_currentFocusElementType == TextEdit; }
+    bool isActiveTextPopup() const { return m_currentFocusElement && m_currentFocusElementType == TextPopup; }
+    bool isActiveSelectPopup() const { return m_currentFocusElement && m_currentFocusElementType == SelectPopup; }
+    bool isActivePlugin() const { return m_currentFocusElement && m_currentFocusElementType == Plugin; }
+
+    bool openDatePopup(WebCore::HTMLInputElement*, BlackBerry::Platform::BlackBerryInputType);
+    bool openColorPopup(WebCore::HTMLInputElement*);
+
+    bool executeTextEditCommand(const WTF::String&);
+
+    BlackBerry::Platform::BlackBerryInputType elementType(WebCore::Element*) const;
+
+    int selectionStart() const;
+    int selectionEnd() const;
+    int selectionPosition(bool start) const;
+    bool selectionActive() const { return selectionStart() != selectionEnd(); }
+
+    bool compositionActive() const { return compositionLength(); }
+    unsigned compositionLength() const { return m_composingTextEnd - m_composingTextStart; }
+
+    spannable_string_t* spannableTextInRange(int start, int end, int32_t flags);
+
+    void addAttributedTextMarker(int start, int end, const WebCore::AttributeTextStyle&);
+    void removeAttributedTextMarker();
+
+    bool deleteText(int start, int end);
+    bool setTextAttributes(int insertionPoint, spannable_string_t*);
+    bool setText(spannable_string_t*);
+    bool setSpannableTextAndRelativeCursor(spannable_string_t*, int relativeCursorPosition, bool markTextAsComposing);
+    bool removeComposedText();
+    bool setRelativeCursorPosition(int insertionPoint, int relativeCursorPosition);
+    bool setCursorPosition(int location);
+
+    span_t* firstSpanInString(spannable_string_t*, SpannableStringAttribute);
+    bool isTrailingSingleCharacter(span_t*, unsigned, unsigned);
+
+    void learnText();
+    void sendLearnTextDetails(const WTF::String&);
+
+    WebPagePrivate* m_webPage;
+
+    RefPtr<WebCore::Element> m_currentFocusElement;
+
+    bool m_processingChange;
+    bool m_navigationMode;
+    FocusElementType m_currentFocusElementType;
+    int m_currentFocusElementTextEditMask;
+
+    int m_composingTextStart;
+    int m_composingTextEnd;
+};
+
+}
+}
+
+#endif // InputHandler_h