| /* |
| * Copyright (C) 2015 Apple Inc. All rights reserved. |
| * |
| * 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 APPLE INC. AND ITS 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 APPLE INC. OR ITS 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. |
| */ |
| |
| #import "config.h" |
| #import "UIScriptController.h" |
| |
| #if PLATFORM(IOS) |
| |
| #import "DumpRenderTreeBrowserView.h" |
| #import "UIScriptContext.h" |
| #import <WebCore/FloatRect.h> |
| #import <wtf/MainThread.h> |
| |
| extern DumpRenderTreeBrowserView *gWebBrowserView; |
| extern DumpRenderTreeWebScrollView *gWebScrollView; |
| |
| namespace WTR { |
| |
| void UIScriptController::checkForOutstandingCallbacks() |
| { |
| } |
| |
| void UIScriptController::doAsyncTask(JSValueRef callback) |
| { |
| unsigned callbackID = m_context->prepareForAsyncTask(callback, CallbackTypeNonPersistent); |
| |
| dispatch_async(dispatch_get_main_queue(), ^{ |
| if (!m_context) |
| return; |
| m_context->asyncTaskComplete(callbackID); |
| }); |
| } |
| |
| void UIScriptController::doAfterPresentationUpdate(JSValueRef callback) |
| { |
| return doAsyncTask(callback); |
| } |
| |
| void UIScriptController::doAfterNextStablePresentationUpdate(JSValueRef callback) |
| { |
| doAsyncTask(callback); |
| } |
| |
| void UIScriptController::doAfterVisibleContentRectUpdate(JSValueRef callback) |
| { |
| doAsyncTask(callback); |
| } |
| |
| void UIScriptController::zoomToScale(double scale, JSValueRef callback) |
| { |
| RefPtr<UIScriptController> protectedThis(this); |
| unsigned callbackID = protectedThis->context()->prepareForAsyncTask(callback, CallbackTypeNonPersistent); |
| |
| dispatch_async(dispatch_get_main_queue(), ^{ |
| [gWebScrollView zoomToScale:scale animated:YES completionHandler:^{ |
| if (!protectedThis->context()) |
| return; |
| protectedThis->context()->asyncTaskComplete(callbackID); |
| }]; |
| }); |
| } |
| |
| void UIScriptController::simulateAccessibilitySettingsChangeNotification(JSValueRef) |
| { |
| } |
| |
| double UIScriptController::zoomScale() const |
| { |
| return gWebScrollView.zoomScale; |
| } |
| |
| void UIScriptController::touchDownAtPoint(long x, long y, long touchCount, JSValueRef callback) |
| { |
| } |
| |
| void UIScriptController::liftUpAtPoint(long x, long y, long touchCount, JSValueRef callback) |
| { |
| } |
| |
| void UIScriptController::singleTapAtPoint(long x, long y, JSValueRef callback) |
| { |
| } |
| |
| void UIScriptController::doubleTapAtPoint(long x, long y, JSValueRef callback) |
| { |
| } |
| |
| void UIScriptController::dragFromPointToPoint(long startX, long startY, long endX, long endY, double durationSeconds, JSValueRef callback) |
| { |
| } |
| |
| void UIScriptController::longPressAtPoint(long x, long y, JSValueRef) |
| { |
| } |
| |
| void UIScriptController::stylusDownAtPoint(long x, long y, float azimuthAngle, float altitudeAngle, float pressure, JSValueRef callback) |
| { |
| } |
| |
| void UIScriptController::stylusMoveToPoint(long x, long y, float azimuthAngle, float altitudeAngle, float pressure, JSValueRef callback) |
| { |
| } |
| |
| void UIScriptController::stylusUpAtPoint(long x, long y, JSValueRef callback) |
| { |
| } |
| |
| void UIScriptController::stylusTapAtPoint(long x, long y, float azimuthAngle, float altitudeAngle, float pressure, JSValueRef callback) |
| { |
| } |
| |
| void UIScriptController::sendEventStream(JSStringRef eventsJSON, JSValueRef callback) |
| { |
| } |
| |
| void UIScriptController::enterText(JSStringRef) |
| { |
| } |
| |
| void UIScriptController::typeCharacterUsingHardwareKeyboard(JSStringRef character, JSValueRef callback) |
| { |
| } |
| |
| void UIScriptController::selectTextCandidateAtIndex(long, JSValueRef) |
| { |
| } |
| |
| void UIScriptController::keyDownUsingHardwareKeyboard(JSStringRef character, JSValueRef callback) |
| { |
| } |
| |
| void UIScriptController::keyUpUsingHardwareKeyboard(JSStringRef character, JSValueRef callback) |
| { |
| } |
| |
| void UIScriptController::dismissFormAccessoryView() |
| { |
| } |
| |
| void UIScriptController::setTimePickerValue(long, long) |
| { |
| } |
| |
| void UIScriptController::selectFormAccessoryPickerRow(long rowIndex) |
| { |
| } |
| |
| JSRetainPtr<JSStringRef> UIScriptController::selectFormPopoverTitle() const |
| { |
| return nullptr; |
| } |
| |
| JSRetainPtr<JSStringRef> UIScriptController::formInputLabel() const |
| { |
| return nullptr; |
| } |
| |
| JSObjectRef UIScriptController::contentsOfUserInterfaceItem(JSStringRef interfaceItem) const |
| { |
| return nullptr; |
| } |
| |
| static CGPoint contentOffsetBoundedInValidRange(UIScrollView *scrollView, CGPoint contentOffset) |
| { |
| UIEdgeInsets contentInsets = scrollView.contentInset; |
| CGSize contentSize = scrollView.contentSize; |
| CGSize scrollViewSize = scrollView.bounds.size; |
| |
| CGFloat maxHorizontalOffset = contentSize.width + contentInsets.right - scrollViewSize.width; |
| contentOffset.x = std::min(maxHorizontalOffset, contentOffset.x); |
| contentOffset.x = std::max(-contentInsets.left, contentOffset.x); |
| |
| CGFloat maxVerticalOffset = contentSize.height + contentInsets.bottom - scrollViewSize.height; |
| contentOffset.y = std::min(maxVerticalOffset, contentOffset.y); |
| contentOffset.y = std::max(-contentInsets.top, contentOffset.y); |
| return contentOffset; |
| } |
| |
| void UIScriptController::scrollToOffset(long x, long y) |
| { |
| [gWebScrollView setContentOffset:contentOffsetBoundedInValidRange(gWebScrollView, CGPointMake(x, y)) animated:YES]; |
| } |
| |
| void UIScriptController::immediateScrollToOffset(long x, long y) |
| { |
| [gWebScrollView setContentOffset:contentOffsetBoundedInValidRange(gWebScrollView, CGPointMake(x, y)) animated:NO]; |
| } |
| |
| void UIScriptController::immediateZoomToScale(double scale) |
| { |
| [gWebScrollView setZoomScale:scale animated:NO]; |
| } |
| |
| void UIScriptController::keyboardAccessoryBarNext() |
| { |
| } |
| |
| void UIScriptController::keyboardAccessoryBarPrevious() |
| { |
| } |
| |
| void UIScriptController::applyAutocorrection(JSStringRef, JSStringRef, JSValueRef) |
| { |
| } |
| |
| double UIScriptController::minimumZoomScale() const |
| { |
| return gWebScrollView.minimumZoomScale; |
| } |
| |
| double UIScriptController::maximumZoomScale() const |
| { |
| return gWebScrollView.maximumZoomScale; |
| } |
| |
| std::optional<bool> UIScriptController::stableStateOverride() const |
| { |
| return std::nullopt; |
| } |
| |
| void UIScriptController::setStableStateOverride(std::optional<bool>) |
| { |
| } |
| |
| JSObjectRef UIScriptController::contentVisibleRect() const |
| { |
| CGRect contentVisibleRect = [gWebBrowserView documentVisibleRect]; |
| WebCore::FloatRect rect(contentVisibleRect.origin.x, contentVisibleRect.origin.y, contentVisibleRect.size.width, contentVisibleRect.size.height); |
| return m_context->objectFromRect(rect); |
| } |
| |
| void UIScriptController::platformSetDidStartFormControlInteractionCallback() |
| { |
| } |
| |
| void UIScriptController::platformSetDidEndFormControlInteractionCallback() |
| { |
| } |
| |
| void UIScriptController::platformSetDidShowForcePressPreviewCallback() |
| { |
| } |
| |
| void UIScriptController::platformSetDidDismissForcePressPreviewCallback() |
| { |
| } |
| |
| void UIScriptController::platformSetWillBeginZoomingCallback() |
| { |
| } |
| |
| void UIScriptController::platformSetDidEndZoomingCallback() |
| { |
| } |
| |
| void UIScriptController::platformSetDidShowKeyboardCallback() |
| { |
| } |
| |
| void UIScriptController::platformSetDidHideKeyboardCallback() |
| { |
| } |
| |
| void UIScriptController::platformSetDidEndScrollingCallback() |
| { |
| } |
| |
| void UIScriptController::platformClearAllCallbacks() |
| { |
| } |
| |
| JSObjectRef UIScriptController::selectionRangeViewRects() const |
| { |
| return nullptr; |
| } |
| |
| JSObjectRef UIScriptController::textSelectionCaretRect() const |
| { |
| return nullptr; |
| } |
| |
| JSObjectRef UIScriptController::inputViewBounds() const |
| { |
| return nullptr; |
| } |
| |
| void UIScriptController::removeAllDynamicDictionaries() |
| { |
| } |
| |
| JSRetainPtr<JSStringRef> UIScriptController::scrollingTreeAsText() const |
| { |
| return nullptr; |
| } |
| |
| JSObjectRef UIScriptController::propertiesOfLayerWithID(uint64_t layerID) const |
| { |
| return nullptr; |
| } |
| |
| void UIScriptController::retrieveSpeakSelectionContent(JSValueRef) |
| { |
| } |
| |
| JSRetainPtr<JSStringRef> UIScriptController::accessibilitySpeakSelectionContent() const |
| { |
| return nullptr; |
| } |
| |
| void UIScriptController::simulateRotation(DeviceOrientation*, JSValueRef) |
| { |
| } |
| |
| void UIScriptController::simulateRotationLikeSafari(DeviceOrientation*, JSValueRef) |
| { |
| } |
| |
| void UIScriptController::findString(JSStringRef, unsigned long options, unsigned long maxCount) |
| { |
| } |
| |
| void UIScriptController::removeViewFromWindow(JSValueRef) |
| { |
| } |
| |
| void UIScriptController::addViewToWindow(JSValueRef) |
| { |
| } |
| |
| void UIScriptController::setSafeAreaInsets(double, double, double, double) |
| { |
| } |
| |
| void UIScriptController::beginBackSwipe(JSValueRef callback) |
| { |
| } |
| |
| void UIScriptController::completeBackSwipe(JSValueRef callback) |
| { |
| } |
| |
| } |
| |
| #endif // PLATFORM(IOS) |