Modified: trunk/Source/WebKit/efl/WebCoreSupport/DumpRenderTreeSupportEfl.cpp (116474 => 116475)
--- trunk/Source/WebKit/efl/WebCoreSupport/DumpRenderTreeSupportEfl.cpp 2012-05-09 00:58:08 UTC (rev 116474)
+++ trunk/Source/WebKit/efl/WebCoreSupport/DumpRenderTreeSupportEfl.cpp 2012-05-09 01:32:43 UTC (rev 116475)
@@ -43,6 +43,7 @@
#include <PrintContext.h>
#include <RenderTreeAsText.h>
#include <Settings.h>
+#include <TextIterator.h>
#include <WebKitMutationObserver.h>
#include <bindings/js/GCController.h>
#include <history/HistoryItem.h>
@@ -615,3 +616,117 @@
corePage->settings()->setAuthorAndUserStylesEnabled(enabled);
}
+
+void DumpRenderTreeSupportEfl::setComposition(Evas_Object* ewkView, const char* text, int start, int length)
+{
+ WebCore::Page* page = EWKPrivate::corePage(ewkView);
+ if (!page || !page->focusController() || !page->focusController()->focusedOrMainFrame())
+ return;
+
+ WebCore::Editor* editor = page->focusController()->focusedOrMainFrame()->editor();
+ if (!editor || (!editor->canEdit() && !editor->hasComposition()))
+ return;
+
+ const String compositionString = String::fromUTF8(text);
+ Vector<WebCore::CompositionUnderline> underlines;
+ underlines.append(WebCore::CompositionUnderline(0, compositionString.length(), WebCore::Color(0, 0, 0), false));
+ editor->setComposition(compositionString, underlines, start, start + length);
+}
+
+bool DumpRenderTreeSupportEfl::hasComposition(const Evas_Object* ewkView)
+{
+ const WebCore::Page* page = EWKPrivate::corePage(ewkView);
+ if (!page || !page->focusController() || !page->focusController()->focusedOrMainFrame())
+ return false;
+
+ const WebCore::Editor* editor = page->focusController()->focusedOrMainFrame()->editor();
+ if (!editor)
+ return false;
+
+ return editor->hasComposition();
+}
+
+bool DumpRenderTreeSupportEfl::compositionRange(Evas_Object* ewkView, int* start, int* length)
+{
+ *start = *length = 0;
+
+ WebCore::Page* page = EWKPrivate::corePage(ewkView);
+ if (!page || !page->focusController() || !page->focusController()->focusedOrMainFrame())
+ return false;
+
+ WebCore::Editor* editor = page->focusController()->focusedOrMainFrame()->editor();
+ if (!editor || !editor->hasComposition())
+ return false;
+
+ *start = editor->compositionStart();
+ *length = editor->compositionEnd() - *start;
+ return true;
+}
+
+void DumpRenderTreeSupportEfl::confirmComposition(Evas_Object* ewkView, const char* text)
+{
+ WebCore::Page* page = EWKPrivate::corePage(ewkView);
+ if (!page || !page->focusController() || !page->focusController()->focusedOrMainFrame())
+ return;
+
+ WebCore::Editor* editor = page->focusController()->focusedOrMainFrame()->editor();
+ if (!editor)
+ return;
+
+ if (!editor->hasComposition()) {
+ editor->insertText(String::fromUTF8(text), 0);
+ return;
+ }
+
+ if (text) {
+ editor->confirmComposition(String::fromUTF8(text));
+ return;
+ }
+ editor->confirmComposition();
+}
+
+WebCore::IntRect DumpRenderTreeSupportEfl::firstRectForCharacterRange(Evas_Object* ewkView, int location, int length)
+{
+ WebCore::Page* page = EWKPrivate::corePage(ewkView);
+ if (!page || !page->focusController() || !page->focusController()->focusedOrMainFrame() || !page->focusController()->focusedOrMainFrame()->editor())
+ return WebCore::IntRect();
+
+ if ((location + length < location) && (location + length))
+ length = 0;
+
+ WebCore::Frame* frame = page->focusController()->focusedOrMainFrame();
+ WebCore::Editor* editor = frame->editor();
+
+ RefPtr<WebCore::Range> range = WebCore::TextIterator::rangeFromLocationAndLength(frame->selection()->rootEditableElementOrDocumentElement(), location, length);
+ if (!range)
+ return WebCore::IntRect();
+
+ return editor->firstRectForRange(range.get());
+}
+
+bool DumpRenderTreeSupportEfl::selectedRange(Evas_Object* ewkView, int* start, int* length)
+{
+ if (!(start && length))
+ return false;
+
+ WebCore::Page* page = EWKPrivate::corePage(ewkView);
+ if (!page || !page->focusController() || !page->focusController()->focusedOrMainFrame())
+ return false;
+
+ WebCore::Frame* frame = page->focusController()->focusedOrMainFrame();
+ RefPtr<WebCore::Range> range = frame->selection()->toNormalizedRange().get();
+ if (!range)
+ return false;
+
+ WebCore::Element* selectionRoot = frame->selection()->rootEditableElement();
+ WebCore::Element* scope = selectionRoot ? selectionRoot : frame->document()->documentElement();
+
+ RefPtr<WebCore::Range> testRange = WebCore::Range::create(scope->document(), scope, 0, range->startContainer(), range->startOffset());
+ *start = WebCore::TextIterator::rangeLength(testRange.get());
+
+ WebCore::ExceptionCode ec;
+ testRange->setEnd(range->endContainer(), range->endOffset(), ec);
+ *length = WebCore::TextIterator::rangeLength(testRange.get());
+
+ return true;
+}
Added: trunk/Tools/DumpRenderTree/efl/TextInputController.cpp (0 => 116475)
--- trunk/Tools/DumpRenderTree/efl/TextInputController.cpp (rev 0)
+++ trunk/Tools/DumpRenderTree/efl/TextInputController.cpp 2012-05-09 01:32:43 UTC (rev 116475)
@@ -0,0 +1,178 @@
+/*
+ * Copyright (C) 2010 Google Inc. All rights reserved.
+ * Copyright (C) 2011 Igalia S.L.
+ * Copyright (C) 2012 Samsung Electronics
+ *
+ * Redistribution and use in source and binary forms, with or without
+ * modification, are permitted provided that the following conditions
+ * are met:
+ *
+ * 1. Redistributions of source code must retain the above copyright
+ * notice, this list of conditions and the following disclaimer.
+ * 2. Redistributions in binary form must reproduce the above copyright
+ * notice, this list of conditions and the following disclaimer in the
+ * documentation and/or other materials provided with the distribution.
+ *
+ * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
+ * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
+ * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
+ * A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
+ * OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
+ * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
+ * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
+ * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
+ * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
+ * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
+ * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
+ */
+
+#include "config.h"
+#include "TextInputController.h"
+
+#include "DumpRenderTree.h"
+#include "DumpRenderTreeChrome.h"
+#include "WebCoreSupport/DumpRenderTreeSupportEfl.h"
+#include <_javascript_Core/JSObjectRef.h>
+#include <_javascript_Core/JSRetainPtr.h>
+#include <_javascript_Core/JSStringRef.h>
+#include <_javascript_Core/OpaqueJSString.h>
+
+static JSValueRef setMarkedTextCallback(JSContextRef context, JSObjectRef function, JSObjectRef thisObject, size_t argumentCount, const JSValueRef arguments[], JSValueRef* exception)
+{
+ if (!browser->mainView() || argumentCount < 3)
+ return JSValueMakeUndefined(context);
+
+ JSStringRef string = JSValueToStringCopy(context, arguments[0], exception);
+
+ size_t bufferSize = JSStringGetMaximumUTF8CStringSize(string);
+ char* text = new char[bufferSize];
+ JSStringGetUTF8CString(string, text, bufferSize);
+ JSStringRelease(string);
+
+ int start = static_cast<int>(JSValueToNumber(context, arguments[1], exception));
+ int length = static_cast<int>(JSValueToNumber(context, arguments[2], exception));
+
+ DumpRenderTreeSupportEfl::setComposition(browser->mainView(), text, start, length);
+
+ delete[] text;
+ return JSValueMakeUndefined(context);
+}
+
+static JSValueRef hasMarkedTextCallback(JSContextRef context, JSObjectRef function, JSObjectRef thisObject, size_t argumentCount, const JSValueRef arguments[], JSValueRef* exception)
+{
+ if (!browser->mainView())
+ return JSValueMakeUndefined(context);
+
+ return JSValueMakeBoolean(context, DumpRenderTreeSupportEfl::hasComposition(browser->mainView()));
+}
+
+static JSValueRef markedRangeCallback(JSContextRef context, JSObjectRef function, JSObjectRef thisObject, size_t argumentCount, const JSValueRef arguments[], JSValueRef* exception)
+{
+ if (!browser->mainView())
+ return JSValueMakeUndefined(context);
+
+ int start, length;
+ if (!DumpRenderTreeSupportEfl::compositionRange(browser->mainView(), &start, &length))
+ return JSValueMakeUndefined(context);
+
+ JSValueRef arrayValues[2];
+ arrayValues[0] = JSValueMakeNumber(context, start);
+ arrayValues[1] = JSValueMakeNumber(context, length);
+ JSObjectRef arrayObject = JSObjectMakeArray(context, 2, arrayValues, exception);
+ return arrayObject;
+}
+
+static JSValueRef insertTextCallback(JSContextRef context, JSObjectRef function, JSObjectRef thisObject, size_t argumentCount, const JSValueRef arguments[], JSValueRef* exception)
+{
+ if (!browser->mainView() || argumentCount < 1)
+ return JSValueMakeUndefined(context);
+
+ JSStringRef string = JSValueToStringCopy(context, arguments[0], exception);
+
+ size_t bufferSize = JSStringGetMaximumUTF8CStringSize(string);
+ char* text = new char[bufferSize];
+ JSStringGetUTF8CString(string, text, bufferSize);
+ JSStringRelease(string);
+
+ DumpRenderTreeSupportEfl::confirmComposition(browser->mainView(), text);
+
+ delete[] text;
+ return JSValueMakeUndefined(context);
+}
+
+static JSValueRef unmarkTextCallback(JSContextRef context, JSObjectRef function, JSObjectRef thisObject, size_t argumentCount, const JSValueRef arguments[], JSValueRef* exception)
+{
+ if (!browser->mainView())
+ return JSValueMakeUndefined(context);
+
+ DumpRenderTreeSupportEfl::confirmComposition(browser->mainView(), 0);
+ return JSValueMakeUndefined(context);
+}
+
+static JSValueRef firstRectForCharacterRangeCallback(JSContextRef context, JSObjectRef function, JSObjectRef thisObject, size_t argumentCount, const JSValueRef arguments[], JSValueRef* exception)
+{
+ if (!browser->mainView() || argumentCount < 2)
+ return JSValueMakeUndefined(context);
+
+ int location = static_cast<int>(JSValueToNumber(context, arguments[0], exception));
+ int length = static_cast<int>(JSValueToNumber(context, arguments[1], exception));
+
+ WebCore::IntRect rect = DumpRenderTreeSupportEfl::firstRectForCharacterRange(browser->mainView(), location, length);
+
+ JSValueRef arrayValues[4];
+ arrayValues[0] = JSValueMakeNumber(context, rect.x());
+ arrayValues[1] = JSValueMakeNumber(context, rect.y());
+ arrayValues[2] = JSValueMakeNumber(context, rect.width());
+ arrayValues[3] = JSValueMakeNumber(context, rect.height());
+ JSObjectRef arrayObject = JSObjectMakeArray(context, 4, arrayValues, exception);
+ return arrayObject;
+}
+
+static JSValueRef selectedRangeCallback(JSContextRef context, JSObjectRef function, JSObjectRef thisObject, size_t argumentCount, const JSValueRef arguments[], JSValueRef* exception)
+{
+ if (!browser->mainView())
+ return JSValueMakeUndefined(context);
+
+ int start, length;
+ if (!DumpRenderTreeSupportEfl::selectedRange(browser->mainView(), &start, &length))
+ return JSValueMakeUndefined(context);
+
+ JSValueRef arrayValues[2];
+ arrayValues[0] = JSValueMakeNumber(context, start);
+ arrayValues[1] = JSValueMakeNumber(context, length);
+ JSObjectRef arrayObject = JSObjectMakeArray(context, 2, arrayValues, exception);
+ return arrayObject;
+}
+
+static JSStaticFunction staticFunctions[] = {
+ { "setMarkedText", setMarkedTextCallback, kJSPropertyAttributeReadOnly | kJSPropertyAttributeDontDelete },
+ { "hasMarkedText", hasMarkedTextCallback, kJSPropertyAttributeReadOnly | kJSPropertyAttributeDontDelete },
+ { "markedRange", markedRangeCallback, kJSPropertyAttributeReadOnly | kJSPropertyAttributeDontDelete },
+ { "insertText", insertTextCallback, kJSPropertyAttributeReadOnly | kJSPropertyAttributeDontDelete },
+ { "unmarkText", unmarkTextCallback, kJSPropertyAttributeReadOnly | kJSPropertyAttributeDontDelete },
+ { "firstRectForCharacterRange", firstRectForCharacterRangeCallback, kJSPropertyAttributeReadOnly | kJSPropertyAttributeDontDelete },
+ { "selectedRange", selectedRangeCallback, kJSPropertyAttributeReadOnly | kJSPropertyAttributeDontDelete },
+ { 0, 0, 0 }
+};
+
+static JSClassRef getClass(JSContextRef context)
+{
+ static JSClassRef textInputControllerClass = 0;
+
+ if (!textInputControllerClass) {
+ JSClassDefinition classDefinition = {
+ 0, 0, 0, 0, 0, 0,
+ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0};
+ classDefinition.staticFunctions = staticFunctions;
+
+ textInputControllerClass = JSClassCreate(&classDefinition);
+ }
+
+ return textInputControllerClass;
+}
+
+JSObjectRef makeTextInputController(JSContextRef context)
+{
+ return JSObjectMake(context, getClass(context), 0);
+}
+
Added: trunk/Tools/DumpRenderTree/efl/TextInputController.h (0 => 116475)
--- trunk/Tools/DumpRenderTree/efl/TextInputController.h (rev 0)
+++ trunk/Tools/DumpRenderTree/efl/TextInputController.h 2012-05-09 01:32:43 UTC (rev 116475)
@@ -0,0 +1,37 @@
+/*
+ * Copyright (C) 2010 Google Inc. All rights reserved.
+ * Copyright (C) 2011 Igalia S.L.
+ * Copyright (C) 2012 Samsung Electronics
+ *
+ * Redistribution and use in source and binary forms, with or without
+ * modification, are permitted provided that the following conditions
+ * are met:
+ *
+ * 1. Redistributions of source code must retain the above copyright
+ * notice, this list of conditions and the following disclaimer.
+ * 2. Redistributions in binary form must reproduce the above copyright
+ * notice, this list of conditions and the following disclaimer in the
+ * documentation and/or other materials provided with the distribution.
+ *
+ * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
+ * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
+ * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
+ * A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
+ * OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
+ * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
+ * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
+ * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
+ * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
+ * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
+ * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
+ */
+
+#ifndef TextInputController_h
+#define TextInputController_h
+
+typedef const struct OpaqueJSContext* JSContextRef;
+typedef struct OpaqueJSValue* JSObjectRef;
+
+JSObjectRef makeTextInputController(JSContextRef);
+
+#endif