123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179 |
- /*
- * 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 <JavaScriptCore/JSObjectRef.h>
- #include <JavaScriptCore/JSRetainPtr.h>
- #include <JavaScriptCore/JSStringRef.h>
- #include <JavaScriptCore/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);
- }
|