blob: 33e8238f9f7c1c8a208ebf40806d0164d67bd683 [file] [log] [blame]
/*
* Copyright (C) 2014-2019 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 "WKWebViewMac.h"
#if PLATFORM(MAC)
#import "AppKitSPI.h"
#import "VersionChecks.h"
#import "WKContentViewMac.h"
#import "WKSafeBrowsingWarning.h"
#import "WKScrollViewMac.h"
#import "WKTextFinderClient.h"
#import "WKUIDelegatePrivate.h"
#import "WebBackForwardList.h"
#import "WebPageProxy.h"
#import "WebProcessProxy.h"
#import "WebViewImpl.h"
#import "_WKFrameHandleInternal.h"
#import "_WKHitTestResultInternal.h"
#import <pal/spi/mac/NSTextFinderSPI.h>
_WKOverlayScrollbarStyle toAPIScrollbarStyle(Optional<WebCore::ScrollbarOverlayStyle> coreScrollbarStyle)
{
if (!coreScrollbarStyle)
return _WKOverlayScrollbarStyleAutomatic;
switch (coreScrollbarStyle.value()) {
case WebCore::ScrollbarOverlayStyleDark:
return _WKOverlayScrollbarStyleDark;
case WebCore::ScrollbarOverlayStyleLight:
return _WKOverlayScrollbarStyleLight;
case WebCore::ScrollbarOverlayStyleDefault:
return _WKOverlayScrollbarStyleDefault;
}
ASSERT_NOT_REACHED();
return _WKOverlayScrollbarStyleAutomatic;
}
Optional<WebCore::ScrollbarOverlayStyle> toCoreScrollbarStyle(_WKOverlayScrollbarStyle scrollbarStyle)
{
switch (scrollbarStyle) {
case _WKOverlayScrollbarStyleDark:
return WebCore::ScrollbarOverlayStyleDark;
case _WKOverlayScrollbarStyleLight:
return WebCore::ScrollbarOverlayStyleLight;
case _WKOverlayScrollbarStyleDefault:
return WebCore::ScrollbarOverlayStyleDefault;
case _WKOverlayScrollbarStyleAutomatic:
break;
}
return WTF::nullopt;
}
@interface WKWebView (WKImplementationMac) <NSTextInputClient
, NSTextInputClient_Async
#if HAVE(TOUCH_BAR)
, NSTouchBarProvider
#endif
#if ENABLE(DRAG_SUPPORT)
, NSFilePromiseProviderDelegate
, NSDraggingSource
#endif
>
@end
@implementation WKWebView (WKImplementationMac)
#pragma mark - NSView overrides
- (BOOL)acceptsFirstResponder
{
return _impl->acceptsFirstResponder();
}
- (BOOL)becomeFirstResponder
{
return _impl->becomeFirstResponder();
}
- (BOOL)resignFirstResponder
{
return _impl->resignFirstResponder();
}
- (void)viewWillStartLiveResize
{
_impl->viewWillStartLiveResize();
}
- (void)viewDidEndLiveResize
{
_impl->viewDidEndLiveResize();
}
- (BOOL)isFlipped
{
return YES;
}
- (NSSize)intrinsicContentSize
{
return NSSizeFromCGSize(_impl->intrinsicContentSize());
}
- (void)prepareContentInRect:(NSRect)rect
{
_impl->prepareContentInRect(NSRectToCGRect(rect));
}
- (void)setFrameSize:(NSSize)size
{
[super setFrameSize:size];
[_safeBrowsingWarning setFrame:self.bounds];
_impl->setFrameSize(NSSizeToCGSize(size));
}
- (void)setUserInterfaceLayoutDirection:(NSUserInterfaceLayoutDirection)userInterfaceLayoutDirection
{
[super setUserInterfaceLayoutDirection:userInterfaceLayoutDirection];
_impl->setUserInterfaceLayoutDirection(userInterfaceLayoutDirection);
}
ALLOW_DEPRECATED_IMPLEMENTATIONS_BEGIN
- (void)renewGState
ALLOW_DEPRECATED_IMPLEMENTATIONS_END
{
_impl->renewGState();
[super renewGState];
}
#pragma mark - macOS IBAction/NSResponder
#define WEBCORE_COMMAND(command) - (void)command:(id)sender { _impl->executeEditCommandForSelector(_cmd); }
WEBCORE_COMMAND(alignCenter)
WEBCORE_COMMAND(alignJustified)
WEBCORE_COMMAND(alignLeft)
WEBCORE_COMMAND(alignRight)
WEBCORE_COMMAND(copy)
WEBCORE_COMMAND(cut)
WEBCORE_COMMAND(delete)
WEBCORE_COMMAND(deleteBackward)
WEBCORE_COMMAND(deleteBackwardByDecomposingPreviousCharacter)
WEBCORE_COMMAND(deleteForward)
WEBCORE_COMMAND(deleteToBeginningOfLine)
WEBCORE_COMMAND(deleteToBeginningOfParagraph)
WEBCORE_COMMAND(deleteToEndOfLine)
WEBCORE_COMMAND(deleteToEndOfParagraph)
WEBCORE_COMMAND(deleteToMark)
WEBCORE_COMMAND(deleteWordBackward)
WEBCORE_COMMAND(deleteWordForward)
WEBCORE_COMMAND(ignoreSpelling)
WEBCORE_COMMAND(indent)
WEBCORE_COMMAND(insertBacktab)
WEBCORE_COMMAND(insertLineBreak)
WEBCORE_COMMAND(insertNewline)
WEBCORE_COMMAND(insertNewlineIgnoringFieldEditor)
WEBCORE_COMMAND(insertParagraphSeparator)
WEBCORE_COMMAND(insertTab)
WEBCORE_COMMAND(insertTabIgnoringFieldEditor)
WEBCORE_COMMAND(makeTextWritingDirectionLeftToRight)
WEBCORE_COMMAND(makeTextWritingDirectionNatural)
WEBCORE_COMMAND(makeTextWritingDirectionRightToLeft)
WEBCORE_COMMAND(moveBackward)
WEBCORE_COMMAND(moveBackwardAndModifySelection)
WEBCORE_COMMAND(moveDown)
WEBCORE_COMMAND(moveDownAndModifySelection)
WEBCORE_COMMAND(moveForward)
WEBCORE_COMMAND(moveForwardAndModifySelection)
WEBCORE_COMMAND(moveLeft)
WEBCORE_COMMAND(moveLeftAndModifySelection)
WEBCORE_COMMAND(moveParagraphBackwardAndModifySelection)
WEBCORE_COMMAND(moveParagraphForwardAndModifySelection)
WEBCORE_COMMAND(moveRight)
WEBCORE_COMMAND(moveRightAndModifySelection)
WEBCORE_COMMAND(moveToBeginningOfDocument)
WEBCORE_COMMAND(moveToBeginningOfDocumentAndModifySelection)
WEBCORE_COMMAND(moveToBeginningOfLine)
WEBCORE_COMMAND(moveToBeginningOfLineAndModifySelection)
WEBCORE_COMMAND(moveToBeginningOfParagraph)
WEBCORE_COMMAND(moveToBeginningOfParagraphAndModifySelection)
WEBCORE_COMMAND(moveToBeginningOfSentence)
WEBCORE_COMMAND(moveToBeginningOfSentenceAndModifySelection)
WEBCORE_COMMAND(moveToEndOfDocument)
WEBCORE_COMMAND(moveToEndOfDocumentAndModifySelection)
WEBCORE_COMMAND(moveToEndOfLine)
WEBCORE_COMMAND(moveToEndOfLineAndModifySelection)
WEBCORE_COMMAND(moveToEndOfParagraph)
WEBCORE_COMMAND(moveToEndOfParagraphAndModifySelection)
WEBCORE_COMMAND(moveToEndOfSentence)
WEBCORE_COMMAND(moveToEndOfSentenceAndModifySelection)
WEBCORE_COMMAND(moveToLeftEndOfLine)
WEBCORE_COMMAND(moveToLeftEndOfLineAndModifySelection)
WEBCORE_COMMAND(moveToRightEndOfLine)
WEBCORE_COMMAND(moveToRightEndOfLineAndModifySelection)
WEBCORE_COMMAND(moveUp)
WEBCORE_COMMAND(moveUpAndModifySelection)
WEBCORE_COMMAND(moveWordBackward)
WEBCORE_COMMAND(moveWordBackwardAndModifySelection)
WEBCORE_COMMAND(moveWordForward)
WEBCORE_COMMAND(moveWordForwardAndModifySelection)
WEBCORE_COMMAND(moveWordLeft)
WEBCORE_COMMAND(moveWordLeftAndModifySelection)
WEBCORE_COMMAND(moveWordRight)
WEBCORE_COMMAND(moveWordRightAndModifySelection)
WEBCORE_COMMAND(outdent)
WEBCORE_COMMAND(pageDown)
WEBCORE_COMMAND(pageDownAndModifySelection)
WEBCORE_COMMAND(pageUp)
WEBCORE_COMMAND(pageUpAndModifySelection)
WEBCORE_COMMAND(paste)
WEBCORE_COMMAND(pasteAsPlainText)
WEBCORE_COMMAND(scrollPageDown)
WEBCORE_COMMAND(scrollPageUp)
WEBCORE_COMMAND(scrollLineDown)
WEBCORE_COMMAND(scrollLineUp)
WEBCORE_COMMAND(scrollToBeginningOfDocument)
WEBCORE_COMMAND(scrollToEndOfDocument)
WEBCORE_COMMAND(selectAll)
WEBCORE_COMMAND(selectLine)
WEBCORE_COMMAND(selectParagraph)
WEBCORE_COMMAND(selectSentence)
WEBCORE_COMMAND(selectToMark)
WEBCORE_COMMAND(selectWord)
WEBCORE_COMMAND(setMark)
WEBCORE_COMMAND(subscript)
WEBCORE_COMMAND(superscript)
WEBCORE_COMMAND(swapWithMark)
WEBCORE_COMMAND(takeFindStringFromSelection)
WEBCORE_COMMAND(transpose)
WEBCORE_COMMAND(underline)
WEBCORE_COMMAND(unscript)
WEBCORE_COMMAND(yank)
WEBCORE_COMMAND(yankAndSelect)
#undef WEBCORE_COMMAND
- (BOOL)writeSelectionToPasteboard:(NSPasteboard *)pasteboard types:(NSArray *)types
{
return _impl->writeSelectionToPasteboard(pasteboard, types);
}
- (void)centerSelectionInVisibleArea:(id)sender
{
_impl->centerSelectionInVisibleArea();
}
- (id)validRequestorForSendType:(NSString *)sendType returnType:(NSString *)returnType
{
return _impl->validRequestorForSendAndReturnTypes(sendType, returnType);
}
- (BOOL)readSelectionFromPasteboard:(NSPasteboard *)pasteboard
{
return _impl->readSelectionFromPasteboard(pasteboard);
}
ALLOW_DEPRECATED_IMPLEMENTATIONS_BEGIN
- (void)changeFont:(id)sender
ALLOW_DEPRECATED_IMPLEMENTATIONS_END
{
_impl->changeFontFromFontManager();
}
ALLOW_DEPRECATED_IMPLEMENTATIONS_BEGIN
- (void)changeColor:(id)sender
ALLOW_DEPRECATED_IMPLEMENTATIONS_BEGIN
{
_impl->changeFontColorFromSender(sender);
}
- (void)changeAttributes:(id)sender
{
_impl->changeFontAttributesFromSender(sender);
}
- (IBAction)startSpeaking:(id)sender
{
_impl->startSpeaking();
}
- (IBAction)stopSpeaking:(id)sender
{
_impl->stopSpeaking(sender);
}
- (IBAction)showGuessPanel:(id)sender
{
_impl->showGuessPanel(sender);
}
- (IBAction)checkSpelling:(id)sender
{
_impl->checkSpelling();
}
- (void)changeSpelling:(id)sender
{
_impl->changeSpelling(sender);
}
- (IBAction)toggleContinuousSpellChecking:(id)sender
{
_impl->toggleContinuousSpellChecking();
}
- (BOOL)isGrammarCheckingEnabled
{
return _impl->isGrammarCheckingEnabled();
}
- (void)setGrammarCheckingEnabled:(BOOL)flag
{
_impl->setGrammarCheckingEnabled(flag);
}
- (IBAction)toggleGrammarChecking:(id)sender
{
_impl->toggleGrammarChecking();
}
- (IBAction)toggleAutomaticSpellingCorrection:(id)sender
{
_impl->toggleAutomaticSpellingCorrection();
}
- (void)orderFrontSubstitutionsPanel:(id)sender
{
_impl->orderFrontSubstitutionsPanel(sender);
}
- (IBAction)toggleSmartInsertDelete:(id)sender
{
_impl->toggleSmartInsertDelete();
}
- (BOOL)isAutomaticQuoteSubstitutionEnabled
{
return _impl->isAutomaticQuoteSubstitutionEnabled();
}
- (void)setAutomaticQuoteSubstitutionEnabled:(BOOL)flag
{
_impl->setAutomaticQuoteSubstitutionEnabled(flag);
}
- (void)toggleAutomaticQuoteSubstitution:(id)sender
{
_impl->toggleAutomaticQuoteSubstitution();
}
- (BOOL)isAutomaticDashSubstitutionEnabled
{
return _impl->isAutomaticDashSubstitutionEnabled();
}
- (void)setAutomaticDashSubstitutionEnabled:(BOOL)flag
{
_impl->setAutomaticDashSubstitutionEnabled(flag);
}
- (void)toggleAutomaticDashSubstitution:(id)sender
{
_impl->toggleAutomaticDashSubstitution();
}
- (BOOL)isAutomaticLinkDetectionEnabled
{
return _impl->isAutomaticLinkDetectionEnabled();
}
- (void)setAutomaticLinkDetectionEnabled:(BOOL)flag
{
_impl->setAutomaticLinkDetectionEnabled(flag);
}
- (void)toggleAutomaticLinkDetection:(id)sender
{
_impl->toggleAutomaticLinkDetection();
}
- (BOOL)isAutomaticTextReplacementEnabled
{
return _impl->isAutomaticTextReplacementEnabled();
}
- (void)setAutomaticTextReplacementEnabled:(BOOL)flag
{
_impl->setAutomaticTextReplacementEnabled(flag);
}
- (void)toggleAutomaticTextReplacement:(id)sender
{
_impl->toggleAutomaticTextReplacement();
}
- (void)uppercaseWord:(id)sender
{
_impl->uppercaseWord();
}
- (void)lowercaseWord:(id)sender
{
_impl->lowercaseWord();
}
- (void)capitalizeWord:(id)sender
{
_impl->capitalizeWord();
}
- (BOOL)_wantsKeyDownForEvent:(NSEvent *)event
{
return _impl->wantsKeyDownForEvent(event);
}
- (void)scrollWheel:(NSEvent *)event
{
_impl->scrollWheel(event);
}
- (void)swipeWithEvent:(NSEvent *)event
{
_impl->swipeWithEvent(event);
}
- (void)mouseMoved:(NSEvent *)event
{
_impl->mouseMoved(event);
}
- (void)mouseDown:(NSEvent *)event
{
_impl->mouseDown(event);
}
- (void)mouseUp:(NSEvent *)event
{
_impl->mouseUp(event);
}
- (void)mouseDragged:(NSEvent *)event
{
_impl->mouseDragged(event);
}
- (void)mouseEntered:(NSEvent *)event
{
_impl->mouseEntered(event);
}
- (void)mouseExited:(NSEvent *)event
{
_impl->mouseExited(event);
}
- (void)otherMouseDown:(NSEvent *)event
{
_impl->otherMouseDown(event);
}
- (void)otherMouseDragged:(NSEvent *)event
{
_impl->otherMouseDragged(event);
}
- (void)otherMouseUp:(NSEvent *)event
{
_impl->otherMouseUp(event);
}
- (void)rightMouseDown:(NSEvent *)event
{
_impl->rightMouseDown(event);
}
- (void)rightMouseDragged:(NSEvent *)event
{
_impl->rightMouseDragged(event);
}
- (void)rightMouseUp:(NSEvent *)event
{
_impl->rightMouseUp(event);
}
- (void)pressureChangeWithEvent:(NSEvent *)event
{
_impl->pressureChangeWithEvent(event);
}
- (BOOL)acceptsFirstMouse:(NSEvent *)event
{
return _impl->acceptsFirstMouse(event);
}
- (BOOL)shouldDelayWindowOrderingForEvent:(NSEvent *)event
{
return _impl->shouldDelayWindowOrderingForEvent(event);
}
- (void)doCommandBySelector:(SEL)selector
{
_impl->doCommandBySelector(selector);
}
- (NSTextInputContext *)inputContext
{
if (!_impl)
return nil;
return _impl->inputContext();
}
- (BOOL)performKeyEquivalent:(NSEvent *)event
{
return _impl->performKeyEquivalent(event);
}
- (void)keyUp:(NSEvent *)theEvent
{
_impl->keyUp(theEvent);
}
- (void)keyDown:(NSEvent *)theEvent
{
_impl->keyDown(theEvent);
}
- (void)flagsChanged:(NSEvent *)theEvent
{
_impl->flagsChanged(theEvent);
}
- (void)setMarkedText:(id)string selectedRange:(NSRange)newSelectedRange replacementRange:(NSRange)replacementRange
{
_impl->setMarkedText(string, newSelectedRange, replacementRange);
}
- (void)unmarkText
{
_impl->unmarkText();
}
- (NSRange)selectedRange
{
return _impl->selectedRange();
}
- (BOOL)hasMarkedText
{
return _impl->hasMarkedText();
}
- (NSRange)markedRange
{
return _impl->markedRange();
}
- (NSAttributedString *)attributedSubstringForProposedRange:(NSRange)nsRange actualRange:(NSRangePointer)actualRange
{
return _impl->attributedSubstringForProposedRange(nsRange, actualRange);
}
- (NSUInteger)characterIndexForPoint:(NSPoint)thePoint
{
return _impl->characterIndexForPoint(thePoint);
}
- (void)typingAttributesWithCompletionHandler:(void(^)(NSDictionary<NSString *, id> *))completion
{
_impl->typingAttributesWithCompletionHandler(completion);
}
- (NSRect)firstRectForCharacterRange:(NSRange)theRange actualRange:(NSRangePointer)actualRange
{
return _impl->firstRectForCharacterRange(theRange, actualRange);
}
- (void)selectedRangeWithCompletionHandler:(void(^)(NSRange selectedRange))completionHandlerPtr
{
_impl->selectedRangeWithCompletionHandler(completionHandlerPtr);
}
- (void)markedRangeWithCompletionHandler:(void(^)(NSRange markedRange))completionHandlerPtr
{
_impl->markedRangeWithCompletionHandler(completionHandlerPtr);
}
- (void)hasMarkedTextWithCompletionHandler:(void(^)(BOOL hasMarkedText))completionHandlerPtr
{
_impl->hasMarkedTextWithCompletionHandler(completionHandlerPtr);
}
- (void)attributedSubstringForProposedRange:(NSRange)nsRange completionHandler:(void(^)(NSAttributedString *attrString, NSRange actualRange))completionHandlerPtr
{
_impl->attributedSubstringForProposedRange(nsRange, completionHandlerPtr);
}
- (void)firstRectForCharacterRange:(NSRange)theRange completionHandler:(void(^)(NSRect firstRect, NSRange actualRange))completionHandlerPtr
{
_impl->firstRectForCharacterRange(theRange, completionHandlerPtr);
}
- (void)characterIndexForPoint:(NSPoint)thePoint completionHandler:(void(^)(NSUInteger))completionHandlerPtr
{
_impl->characterIndexForPoint(thePoint, completionHandlerPtr);
}
- (NSArray *)validAttributesForMarkedText
{
return _impl->validAttributesForMarkedText();
}
#if ENABLE(DRAG_SUPPORT)
ALLOW_DEPRECATED_IMPLEMENTATIONS_BEGIN
- (void)draggedImage:(NSImage *)image endedAt:(NSPoint)endPoint operation:(NSDragOperation)operation
ALLOW_DEPRECATED_IMPLEMENTATIONS_END
{
_impl->draggedImage(image, NSPointToCGPoint(endPoint), operation);
}
- (NSDragOperation)draggingEntered:(id <NSDraggingInfo>)draggingInfo
{
return _impl->draggingEntered(draggingInfo);
}
- (NSDragOperation)draggingUpdated:(id <NSDraggingInfo>)draggingInfo
{
return _impl->draggingUpdated(draggingInfo);
}
- (void)draggingExited:(id <NSDraggingInfo>)draggingInfo
{
_impl->draggingExited(draggingInfo);
}
- (BOOL)prepareForDragOperation:(id <NSDraggingInfo>)draggingInfo
{
return _impl->prepareForDragOperation(draggingInfo);
}
- (BOOL)performDragOperation:(id <NSDraggingInfo>)draggingInfo
{
return _impl->performDragOperation(draggingInfo);
}
- (NSView *)_hitTest:(NSPoint *)point dragTypes:(NSSet *)types
{
return _impl->hitTestForDragTypes(NSPointToCGPoint(*point), types);
}
#endif // ENABLE(DRAG_SUPPORT)
- (BOOL)_windowResizeMouseLocationIsInVisibleScrollerThumb:(NSPoint)point
{
return _impl->windowResizeMouseLocationIsInVisibleScrollerThumb(NSPointToCGPoint(point));
}
- (void)viewWillMoveToWindow:(NSWindow *)window
{
_impl->viewWillMoveToWindow(window);
}
- (void)viewDidMoveToWindow
{
_impl->viewDidMoveToWindow();
}
- (void)drawRect:(NSRect)rect
{
_impl->drawRect(NSRectToCGRect(rect));
}
- (BOOL)isOpaque
{
return _impl->isOpaque();
}
- (BOOL)mouseDownCanMoveWindow
{
return WebKit::WebViewImpl::mouseDownCanMoveWindow();
}
- (void)viewDidHide
{
_impl->viewDidHide();
}
- (void)viewDidUnhide
{
_impl->viewDidUnhide();
}
- (void)viewDidChangeBackingProperties
{
_impl->viewDidChangeBackingProperties();
}
- (void)_activeSpaceDidChange:(NSNotification *)notification
{
_impl->activeSpaceDidChange();
}
- (id)accessibilityFocusedUIElement
{
return _impl->accessibilityFocusedUIElement();
}
ALLOW_DEPRECATED_IMPLEMENTATIONS_BEGIN
- (BOOL)accessibilityIsIgnored
ALLOW_DEPRECATED_IMPLEMENTATIONS_END
{
return _impl->accessibilityIsIgnored();
}
- (id)accessibilityHitTest:(NSPoint)point
{
return _impl->accessibilityHitTest(NSPointToCGPoint(point));
}
ALLOW_DEPRECATED_IMPLEMENTATIONS_BEGIN
- (id)accessibilityAttributeValue:(NSString *)attribute
ALLOW_DEPRECATED_IMPLEMENTATIONS_END
{
return _impl->accessibilityAttributeValue(attribute);
}
ALLOW_DEPRECATED_IMPLEMENTATIONS_BEGIN
- (id)accessibilityAttributeValue:(NSString *)attribute forParameter:(id)parameter
ALLOW_DEPRECATED_IMPLEMENTATIONS_END
{
return _impl->accessibilityAttributeValue(attribute, parameter);
}
ALLOW_DEPRECATED_IMPLEMENTATIONS_BEGIN
- (NSArray<NSString *> *)accessibilityParameterizedAttributeNames
ALLOW_DEPRECATED_IMPLEMENTATIONS_END
{
NSArray<NSString *> *names = [super accessibilityParameterizedAttributeNames];
return [names arrayByAddingObject:@"AXConvertRelativeFrame"];
}
- (NSView *)hitTest:(NSPoint)point
{
if (!_impl)
return [super hitTest:point];
return _impl->hitTest(NSPointToCGPoint(point));
}
- (NSInteger)conversationIdentifier
{
return (NSInteger)self;
}
- (void)quickLookWithEvent:(NSEvent *)event
{
_impl->quickLookWithEvent(event);
}
- (NSTrackingRectTag)addTrackingRect:(NSRect)rect owner:(id)owner userData:(void *)data assumeInside:(BOOL)assumeInside
{
return _impl->addTrackingRect(NSRectToCGRect(rect), owner, data, assumeInside);
}
- (NSTrackingRectTag)_addTrackingRect:(NSRect)rect owner:(id)owner userData:(void *)data assumeInside:(BOOL)assumeInside useTrackingNum:(int)tag
{
return _impl->addTrackingRectWithTrackingNum(NSRectToCGRect(rect), owner, data, assumeInside, tag);
}
- (void)_addTrackingRects:(NSRect *)rects owner:(id)owner userDataList:(void **)userDataList assumeInsideList:(BOOL *)assumeInsideList trackingNums:(NSTrackingRectTag *)trackingNums count:(int)count
{
CGRect *cgRects = (CGRect *)calloc(1, sizeof(CGRect));
for (int i = 0; i < count; i++)
cgRects[i] = NSRectToCGRect(rects[i]);
_impl->addTrackingRectsWithTrackingNums(cgRects, owner, userDataList, assumeInsideList, trackingNums, count);
free(cgRects);
}
- (void)removeTrackingRect:(NSTrackingRectTag)tag
{
if (!_impl)
return;
_impl->removeTrackingRect(tag);
}
- (void)_removeTrackingRects:(NSTrackingRectTag *)tags count:(int)count
{
if (!_impl)
return;
_impl->removeTrackingRects(tags, count);
}
ALLOW_DEPRECATED_IMPLEMENTATIONS_BEGIN
- (NSString *)view:(NSView *)view stringForToolTip:(NSToolTipTag)tag point:(NSPoint)point userData:(void *)data
ALLOW_DEPRECATED_IMPLEMENTATIONS_END
{
return _impl->stringForToolTip(tag);
}
ALLOW_DEPRECATED_IMPLEMENTATIONS_BEGIN
- (void)pasteboardChangedOwner:(NSPasteboard *)pasteboard
ALLOW_DEPRECATED_IMPLEMENTATIONS_END
{
_impl->pasteboardChangedOwner(pasteboard);
}
ALLOW_DEPRECATED_IMPLEMENTATIONS_BEGIN
- (void)pasteboard:(NSPasteboard *)pasteboard provideDataForType:(NSString *)type
ALLOW_DEPRECATED_IMPLEMENTATIONS_END
{
_impl->provideDataForPasteboard(pasteboard, type);
}
ALLOW_DEPRECATED_IMPLEMENTATIONS_BEGIN
- (NSArray *)namesOfPromisedFilesDroppedAtDestination:(NSURL *)dropDestination
ALLOW_DEPRECATED_IMPLEMENTATIONS_END
{
return _impl->namesOfPromisedFilesDroppedAtDestination(dropDestination);
}
- (BOOL)wantsUpdateLayer
{
return WebKit::WebViewImpl::wantsUpdateLayer();
}
- (void)updateLayer
{
_impl->updateLayer();
}
- (void)smartMagnifyWithEvent:(NSEvent *)event
{
_impl->smartMagnifyWithEvent(event);
}
- (void)magnifyWithEvent:(NSEvent *)event
{
_impl->magnifyWithEvent(event);
}
#if ENABLE(MAC_GESTURE_EVENTS)
- (void)rotateWithEvent:(NSEvent *)event
{
_impl->rotateWithEvent(event);
}
#endif // ENABLE(MAC_GESTURE_EVENTS)
- (WKTextFinderClient *)_ensureTextFinderClient
{
if (!_textFinderClient)
_textFinderClient = adoptNS([[WKTextFinderClient alloc] initWithPage:*_page view:self usePlatformFindUI:_usePlatformFindUI]);
return _textFinderClient.get();
}
- (void)findMatchesForString:(NSString *)targetString relativeToMatch:(id <NSTextFinderAsynchronousDocumentFindMatch>)relativeMatch findOptions:(NSTextFinderAsynchronousDocumentFindOptions)findOptions maxResults:(NSUInteger)maxResults resultCollector:(void (^)(NSArray *matches, BOOL didWrap))resultCollector
{
[[self _ensureTextFinderClient] findMatchesForString:targetString relativeToMatch:relativeMatch findOptions:findOptions maxResults:maxResults resultCollector:resultCollector];
}
- (void)replaceMatches:(NSArray *)matches withString:(NSString *)replacementString inSelectionOnly:(BOOL)selectionOnly resultCollector:(void (^)(NSUInteger replacementCount))resultCollector
{
[[self _ensureTextFinderClient] replaceMatches:matches withString:replacementString inSelectionOnly:selectionOnly resultCollector:resultCollector];
}
- (void)scrollFindMatchToVisible:(id<NSTextFinderAsynchronousDocumentFindMatch>)match
{
[[self _ensureTextFinderClient] scrollFindMatchToVisible:match];
}
- (NSView *)documentContainerView
{
return self;
}
- (void)getSelectedText:(void (^)(NSString *selectedTextString))completionHandler
{
[[self _ensureTextFinderClient] getSelectedText:completionHandler];
}
- (void)selectFindMatch:(id <NSTextFinderAsynchronousDocumentFindMatch>)findMatch completionHandler:(void (^)(void))completionHandler
{
[[self _ensureTextFinderClient] selectFindMatch:findMatch completionHandler:completionHandler];
}
#if ENABLE(DRAG_SUPPORT)
- (NSString *)filePromiseProvider:(NSFilePromiseProvider *)filePromiseProvider fileNameForType:(NSString *)fileType
{
return _impl->fileNameForFilePromiseProvider(filePromiseProvider, fileType);
}
- (void)filePromiseProvider:(NSFilePromiseProvider *)filePromiseProvider writePromiseToURL:(NSURL *)url completionHandler:(void (^)(NSError *error))completionHandler
{
_impl->writeToURLForFilePromiseProvider(filePromiseProvider, url, completionHandler);
}
- (NSDragOperation)draggingSession:(NSDraggingSession *)session sourceOperationMaskForDraggingContext:(NSDraggingContext)context
{
return _impl->dragSourceOperationMask(session, context);
}
- (void)draggingSession:(NSDraggingSession *)session endedAtPoint:(NSPoint)screenPoint operation:(NSDragOperation)operation
{
_impl->draggingSessionEnded(session, screenPoint, operation);
}
#endif // ENABLE(DRAG_SUPPORT)
- (void)_prepareForImmediateActionAnimation
{
}
- (void)_cancelImmediateActionAnimation
{
}
- (void)_completeImmediateActionAnimation
{
}
- (void)_setDrawsTransparentBackground:(BOOL)drawsTransparentBackground
{
static BOOL hasLoggedDeprecationWarning;
if (!hasLoggedDeprecationWarning) {
// See bug 155550 for details.
NSLog(@"-[WKWebView _setDrawsTransparentBackground:] is deprecated and should not be used.");
hasLoggedDeprecationWarning = YES;
}
[self _setDrawsBackground:!drawsTransparentBackground];
}
- (void)shareSheetDidDismiss:(WKShareSheet *)shareSheet
{
_impl->shareSheetDidDismiss(shareSheet);
}
#pragma mark - Touch Bar
#if HAVE(TOUCH_BAR)
@dynamic touchBar;
- (NSTouchBar *)makeTouchBar
{
return _impl->makeTouchBar();
}
- (NSCandidateListTouchBarItem *)candidateListTouchBarItem
{
return _impl->candidateListTouchBarItem();
}
- (void)_web_didAddMediaControlsManager:(id)controlsManager
{
[self _addMediaPlaybackControlsView:controlsManager];
}
- (void)_web_didRemoveMediaControlsManager
{
[self _removeMediaPlaybackControlsView];
}
- (void)_interactWithMediaControlsForTesting
{
[self _setWantsMediaPlaybackControlsView:YES];
[self makeTouchBar];
}
#endif // HAVE(TOUCH_BAR)
@end
#pragma mark -
@implementation WKWebView (WKIBActions)
- (BOOL)validateUserInterfaceItem:(id <NSValidatedUserInterfaceItem>)item
{
SEL action = item.action;
if (action == @selector(goBack:))
return !!_page->backForwardList().backItem();
if (action == @selector(goForward:))
return !!_page->backForwardList().forwardItem();
if (action == @selector(stopLoading:)) {
// FIXME: Return no if we're stopped.
return YES;
}
if (action == @selector(reload:) || action == @selector(reloadFromOrigin:)) {
// FIXME: Return no if we're loading.
return YES;
}
return _impl->validateUserInterfaceItem(item);
}
- (IBAction)goBack:(id)sender
{
[self goBack];
}
- (IBAction)goForward:(id)sender
{
[self goForward];
}
- (IBAction)reload:(id)sender
{
[self reload];
}
- (IBAction)reloadFromOrigin:(id)sender
{
[self reloadFromOrigin];
}
- (IBAction)stopLoading:(id)sender
{
_page->stopLoading();
}
@end
#pragma mark -
@implementation WKWebView (WKInternalMac)
- (NSTextInputContext *)_web_superInputContext
{
return [super inputContext];
}
- (void)_web_superQuickLookWithEvent:(NSEvent *)event
{
[super quickLookWithEvent:event];
}
- (void)_web_superSwipeWithEvent:(NSEvent *)event
{
[super swipeWithEvent:event];
}
- (void)_web_superMagnifyWithEvent:(NSEvent *)event
{
[super magnifyWithEvent:event];
}
- (void)_web_superSmartMagnifyWithEvent:(NSEvent *)event
{
[super smartMagnifyWithEvent:event];
}
- (void)_web_superRemoveTrackingRect:(NSTrackingRectTag)tag
{
[super removeTrackingRect:tag];
}
- (id)_web_superAccessibilityAttributeValue:(NSString *)attribute
{
ALLOW_DEPRECATED_DECLARATIONS_BEGIN
return [super accessibilityAttributeValue:attribute];
ALLOW_DEPRECATED_DECLARATIONS_END
}
- (void)_web_superDoCommandBySelector:(SEL)selector
{
[super doCommandBySelector:selector];
}
- (BOOL)_web_superPerformKeyEquivalent:(NSEvent *)event
{
return [super performKeyEquivalent:event];
}
- (void)_web_superKeyDown:(NSEvent *)event
{
[super keyDown:event];
}
- (NSView *)_web_superHitTest:(NSPoint)point
{
return [super hitTest:point];
}
- (id)_web_immediateActionAnimationControllerForHitTestResultInternal:(API::HitTestResult*)hitTestResult withType:(uint32_t)type userData:(API::Object*)userData
{
id<NSSecureCoding> data = userData ? static_cast<id<NSSecureCoding>>(userData->wrapper()) : nil;
return [self _immediateActionAnimationControllerForHitTestResult:wrapper(*hitTestResult) withType:(_WKImmediateActionType)type userData:data];
}
- (void)_web_prepareForImmediateActionAnimation
{
id <WKUIDelegatePrivate> uiDelegate = (id <WKUIDelegatePrivate>)[self UIDelegate];
if ([uiDelegate respondsToSelector:@selector(_prepareForImmediateActionAnimationForWebView:)])
[uiDelegate _prepareForImmediateActionAnimationForWebView:self];
else
[self _prepareForImmediateActionAnimation];
}
- (void)_web_cancelImmediateActionAnimation
{
id <WKUIDelegatePrivate> uiDelegate = (id <WKUIDelegatePrivate>)[self UIDelegate];
if ([uiDelegate respondsToSelector:@selector(_cancelImmediateActionAnimationForWebView:)])
[uiDelegate _cancelImmediateActionAnimationForWebView:self];
else
[self _cancelImmediateActionAnimation];
}
- (void)_web_completeImmediateActionAnimation
{
id <WKUIDelegatePrivate> uiDelegate = (id <WKUIDelegatePrivate>)[self UIDelegate];
if ([uiDelegate respondsToSelector:@selector(_completeImmediateActionAnimationForWebView:)])
[uiDelegate _completeImmediateActionAnimationForWebView:self];
else
[self _completeImmediateActionAnimation];
}
- (void)_web_didChangeContentSize:(NSSize)newSize
{
}
#if ENABLE(DRAG_SUPPORT)
- (WKDragDestinationAction)_web_dragDestinationActionForDraggingInfo:(id <NSDraggingInfo>)draggingInfo
{
id <WKUIDelegatePrivate> uiDelegate = (id <WKUIDelegatePrivate>)[self UIDelegate];
if ([uiDelegate respondsToSelector:@selector(_webView:dragDestinationActionMaskForDraggingInfo:)])
return [uiDelegate _webView:self dragDestinationActionMaskForDraggingInfo:draggingInfo];
if (!linkedOnOrAfter(WebKit::SDKVersion::FirstWithDropToNavigateDisallowedByDefault))
return WKDragDestinationActionAny;
return WKDragDestinationActionAny & ~WKDragDestinationActionLoad;
}
- (void)_web_didPerformDragOperation:(BOOL)handled
{
id <WKUIDelegatePrivate> uiDelegate = (id <WKUIDelegatePrivate>)self.UIDelegate;
if ([uiDelegate respondsToSelector:@selector(_webView:didPerformDragOperation:)])
[uiDelegate _webView:self didPerformDragOperation:handled];
}
#endif // ENABLE(DRAG_SUPPORT)
- (void)_web_dismissContentRelativeChildWindows
{
_impl->dismissContentRelativeChildWindowsFromViewOnly();
}
- (void)_web_dismissContentRelativeChildWindowsWithAnimation:(BOOL)withAnimation
{
_impl->dismissContentRelativeChildWindowsWithAnimationFromViewOnly(withAnimation);
}
- (void)_web_editorStateDidChange
{
[self _didChangeEditorState];
}
- (void)_web_gestureEventWasNotHandledByWebCore:(NSEvent *)event
{
[self _gestureEventWasNotHandledByWebCore:event];
}
- (void)_web_grantDOMPasteAccess
{
_impl->handleDOMPasteRequestWithResult(WebCore::DOMPasteAccessResponse::GrantedForGesture);
}
- (void)_takeFindStringFromSelectionInternal:(id)sender
{
[self takeFindStringFromSelection:sender];
}
- (void)insertText:(id)string
{
_impl->insertText(string);
}
- (void)insertText:(id)string replacementRange:(NSRange)replacementRange
{
_impl->insertText(string, replacementRange);
}
#pragma mark - WKScrollViewDelegate
- (void)scrollViewDidScroll:(NSScrollView *)scrollView
{
// Only called with UI-side compositing.
}
- (void)scrollViewContentInsetsDidChange:(NSScrollView *)scrollView
{
// Only called with UI-side compositing.
}
#pragma mark -
- (void)_setupScrollAndContentViews
{
if (!_impl->isUsingUISideCompositing())
return;
_scrollView = adoptNS([[WKScrollView alloc] initWithFrame:[self bounds]]);
[_scrollView setAutoresizingMask:NSViewWidthSizable | NSViewHeightSizable];
[self addSubview:_scrollView.get() positioned:NSWindowBelow relativeTo:nil];
// The content view will get resized to fit the content.
[_scrollView setDocumentView:_contentView.get()];
[_scrollView setDelegate:self];
}
@end
#pragma mark -
@implementation WKWebView (WKPrivateMac)
- (WKPageRef)_pageRefForTransitionToWKWebView
{
return toAPI(_page.get());
}
- (BOOL)_hasActiveVideoForControlsManager
{
return _page && _page->hasActiveVideoForControlsManager();
}
- (BOOL)_ignoresNonWheelEvents
{
return _impl->ignoresNonWheelEvents();
}
- (void)_setIgnoresNonWheelEvents:(BOOL)ignoresNonWheelEvents
{
_impl->setIgnoresNonWheelEvents(ignoresNonWheelEvents);
}
- (NSView *)_safeBrowsingWarning
{
return _impl->safeBrowsingWarning();
}
- (_WKRectEdge)_pinnedState
{
return _impl->pinnedState();
}
- (_WKRectEdge)_rubberBandingEnabled
{
return _impl->rubberBandingEnabled();
}
- (void)_setRubberBandingEnabled:(_WKRectEdge)state
{
_impl->setRubberBandingEnabled(state);
}
- (NSColor *)_pageExtendedBackgroundColor
{
return _impl->pageExtendedBackgroundColor();
}
- (NSColor *)_backgroundColor
{
return _impl->backgroundColor();
}
- (void)_setBackgroundColor:(NSColor *)backgroundColor
{
_impl->setBackgroundColor(backgroundColor);
}
- (NSColor *)_underlayColor
{
return _impl->underlayColor();
}
- (void)_setUnderlayColor:(NSColor *)underlayColor
{
_impl->setUnderlayColor(underlayColor);
}
- (void)_setTotalHeightOfBanners:(CGFloat)totalHeightOfBanners
{
_impl->setTotalHeightOfBanners(totalHeightOfBanners);
}
- (CGFloat)_totalHeightOfBanners
{
return _impl->totalHeightOfBanners();
}
- (BOOL)_drawsBackground
{
return _impl->drawsBackground();
}
- (void)_setDrawsBackground:(BOOL)drawsBackground
{
_impl->setDrawsBackground(drawsBackground);
}
- (void)_setTopContentInset:(CGFloat)contentInset
{
return _impl->setTopContentInset(contentInset);
}
- (CGFloat)_topContentInset
{
return _impl->topContentInset();
}
- (void)_setAutomaticallyAdjustsContentInsets:(BOOL)automaticallyAdjustsContentInsets
{
_impl->setAutomaticallyAdjustsContentInsets(automaticallyAdjustsContentInsets);
}
- (BOOL)_automaticallyAdjustsContentInsets
{
return _impl->automaticallyAdjustsContentInsets();
}
- (void)_setOverrideDeviceScaleFactor:(CGFloat)deviceScaleFactor
{
_impl->setOverrideDeviceScaleFactor(deviceScaleFactor);
}
- (CGFloat)_overrideDeviceScaleFactor
{
return _impl->overrideDeviceScaleFactor();
}
- (BOOL)_windowOcclusionDetectionEnabled
{
return _impl->windowOcclusionDetectionEnabled();
}
- (void)_setWindowOcclusionDetectionEnabled:(BOOL)enabled
{
_impl->setWindowOcclusionDetectionEnabled(enabled);
}
- (NSInteger)_spellCheckerDocumentTag
{
return _impl->spellCheckerDocumentTag();
}
- (BOOL)_shouldExpandContentToViewHeightForAutoLayout
{
return _impl->shouldExpandToViewHeightForAutoLayout();
}
- (void)_setShouldExpandContentToViewHeightForAutoLayout:(BOOL)shouldExpand
{
return _impl->setShouldExpandToViewHeightForAutoLayout(shouldExpand);
}
- (CGFloat)_minimumLayoutWidth
{
return _page->minimumSizeForAutoLayout().width();
}
- (void)_setMinimumLayoutWidth:(CGFloat)width
{
BOOL expandsToFit = width > 0;
_page->setMinimumSizeForAutoLayout(WebCore::IntSize(width, 0));
_page->setMainFrameIsScrollable(!expandsToFit);
_impl->setClipsToVisibleRect(expandsToFit);
}
- (BOOL)_alwaysShowsHorizontalScroller
{
return _page->alwaysShowsHorizontalScroller();
}
- (void)_setAlwaysShowsHorizontalScroller:(BOOL)alwaysShowsHorizontalScroller
{
_page->setAlwaysShowsHorizontalScroller(alwaysShowsHorizontalScroller);
}
- (BOOL)_alwaysShowsVerticalScroller
{
return _page->alwaysShowsVerticalScroller();
}
- (void)_setAlwaysShowsVerticalScroller:(BOOL)alwaysShowsVerticalScroller
{
_page->setAlwaysShowsVerticalScroller(alwaysShowsVerticalScroller);
}
- (BOOL)_useSystemAppearance
{
return _impl->useSystemAppearance();
}
- (void)_setUseSystemAppearance:(BOOL)useSystemAppearance
{
_impl->setUseSystemAppearance(useSystemAppearance);
}
- (void)_setOverlayScrollbarStyle:(_WKOverlayScrollbarStyle)scrollbarStyle
{
_impl->setOverlayScrollbarStyle(toCoreScrollbarStyle(scrollbarStyle));
}
- (_WKOverlayScrollbarStyle)_overlayScrollbarStyle
{
return toAPIScrollbarStyle(_impl->overlayScrollbarStyle());
}
- (NSView *)_inspectorAttachmentView
{
return _impl->inspectorAttachmentView();
}
- (void)_setInspectorAttachmentView:(NSView *)newView
{
_impl->setInspectorAttachmentView(newView);
}
- (void)_setThumbnailView:(_WKThumbnailView *)thumbnailView
{
_impl->setThumbnailView(thumbnailView);
}
- (_WKThumbnailView *)_thumbnailView
{
if (!_impl)
return nil;
return _impl->thumbnailView();
}
- (void)_setIgnoresAllEvents:(BOOL)ignoresAllEvents
{
_impl->setIgnoresAllEvents(ignoresAllEvents);
}
- (BOOL)_ignoresAllEvents
{
return _impl->ignoresAllEvents();
}
- (BOOL)_usePlatformFindUI
{
return _usePlatformFindUI;
}
- (void)_setUsePlatformFindUI:(BOOL)usePlatformFindUI
{
_usePlatformFindUI = usePlatformFindUI;
if (_textFinderClient)
[self _hideFindUI];
_textFinderClient = nil;
}
- (void)_setShouldSuppressFirstResponderChanges:(BOOL)shouldSuppress
{
_impl->setShouldSuppressFirstResponderChanges(shouldSuppress);
}
- (BOOL)_canChangeFrameLayout:(_WKFrameHandle *)frameHandle
{
if (auto* webFrameProxy = _page->process().webFrame(frameHandle->_frameHandle->frameID()))
return _impl->canChangeFrameLayout(*webFrameProxy);
return false;
}
- (BOOL)_tryToSwipeWithEvent:(NSEvent *)event ignoringPinnedState:(BOOL)ignoringPinnedState
{
return _impl->tryToSwipeWithEvent(event, ignoringPinnedState);
}
- (void)_dismissContentRelativeChildWindows
{
_impl->dismissContentRelativeChildWindowsFromViewOnly();
}
- (void)_setFrame:(NSRect)rect andScrollBy:(NSSize)offset
{
_impl->setFrameAndScrollBy(NSRectToCGRect(rect), NSSizeToCGSize(offset));
}
- (void)_gestureEventWasNotHandledByWebCore:(NSEvent *)event
{
_impl->gestureEventWasNotHandledByWebCoreFromViewOnly(event);
}
- (void)_disableFrameSizeUpdates
{
_impl->disableFrameSizeUpdates();
}
- (void)_enableFrameSizeUpdates
{
_impl->enableFrameSizeUpdates();
}
- (void)_beginDeferringViewInWindowChanges
{
_impl->beginDeferringViewInWindowChanges();
}
- (void)_endDeferringViewInWindowChanges
{
_impl->endDeferringViewInWindowChanges();
}
- (void)_endDeferringViewInWindowChangesSync
{
_impl->endDeferringViewInWindowChangesSync();
}
- (void)_setCustomSwipeViews:(NSArray *)customSwipeViews
{
_impl->setCustomSwipeViews(customSwipeViews);
}
- (void)_setCustomSwipeViewsTopContentInset:(float)topContentInset
{
_impl->setCustomSwipeViewsTopContentInset(topContentInset);
}
- (void)_setDidMoveSwipeSnapshotCallback:(void(^)(CGRect))callback
{
_impl->setDidMoveSwipeSnapshotCallback(callback);
}
- (NSView *)_fullScreenPlaceholderView
{
return _impl->fullScreenPlaceholderView();
}
- (NSWindow *)_fullScreenWindow
{
return _impl->fullScreenWindow();
}
- (id)_immediateActionAnimationControllerForHitTestResult:(_WKHitTestResult *)hitTestResult withType:(_WKImmediateActionType)type userData:(id<NSSecureCoding>)userData
{
return nil;
}
- (NSPrintOperation *)_printOperationWithPrintInfo:(NSPrintInfo *)printInfo
{
return [self printOperationWithPrintInfo:printInfo];
}
- (NSPrintOperation *)_printOperationWithPrintInfo:(NSPrintInfo *)printInfo forFrame:(_WKFrameHandle *)frameHandle
{
if (auto* webFrameProxy = _page->process().webFrame(frameHandle->_frameHandle->frameID()))
return _impl->printOperationWithPrintInfo(printInfo, *webFrameProxy);
return nil;
}
- (BOOL)_wantsMediaPlaybackControlsView
{
#if HAVE(TOUCH_BAR)
return _impl->clientWantsMediaPlaybackControlsView();
#else
return NO;
#endif
}
- (void)_setWantsMediaPlaybackControlsView:(BOOL)wantsMediaPlaybackControlsView
{
#if HAVE(TOUCH_BAR)
_impl->setClientWantsMediaPlaybackControlsView(wantsMediaPlaybackControlsView);
#endif
}
- (id)_mediaPlaybackControlsView
{
#if HAVE(TOUCH_BAR)
return _impl->clientWantsMediaPlaybackControlsView() ? _impl->mediaPlaybackControlsView() : nil;
#else
return nil;
#endif
}
// This method is for subclasses to override.
- (void)_addMediaPlaybackControlsView:(id)mediaPlaybackControlsView
{
}
// This method is for subclasses to override.
- (void)_removeMediaPlaybackControlsView
{
}
- (void)_prepareForMoveToWindow:(NSWindow *)targetWindow completionHandler:(void(^)(void))completionHandler
{
auto completionHandlerCopy = makeBlockPtr(completionHandler);
_impl->prepareForMoveToWindow(targetWindow, [completionHandlerCopy] {
completionHandlerCopy();
});
}
@end // WKWebView (WKPrivateMac)
#endif // PLATFORM(MAC)