Changeset 221099 in webkit
- Timestamp:
- Aug 23, 2017, 1:35:49 PM (8 years ago)
- Location:
- trunk
- Files:
-
- 6 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/Source/WebKit/ChangeLog
r221093 r221099 1 2017-08-23 Alex Christensen <achristensen@webkit.org> 2 3 Add WKUIDelegatePrivate callbacks corresponding to WKPageUIClient's takeFocus, focus, and unfocus 4 https://bugs.webkit.org/show_bug.cgi?id=175896 5 6 Reviewed by Tim Horton. 7 8 I also renamed _webViewShow to _showWebView based on feedback from https://bugs.webkit.org/show_bug.cgi?id=175797 9 10 Added an API test. 11 12 * UIProcess/API/Cocoa/WKUIDelegatePrivate.h: 13 * UIProcess/Cocoa/UIDelegate.h: 14 * UIProcess/Cocoa/UIDelegate.mm: 15 (WebKit::UIDelegate::setDelegate): 16 (WebKit::toWKFocusDirection): 17 (WebKit::UIDelegate::UIClient::takeFocus): 18 (WebKit::UIDelegate::UIClient::focus): 19 (WebKit::UIDelegate::UIClient::unfocus): 20 (WebKit::UIDelegate::UIClient::showPage): 21 1 22 2017-08-23 Youenn Fablet <youenn@apple.com> 2 23 -
trunk/Source/WebKit/UIProcess/API/Cocoa/WKUIDelegatePrivate.h
r221065 r221099 46 46 @protocol UIDragSession; 47 47 @protocol UIDropSession; 48 #else 49 typedef NS_ENUM(NSInteger, _WKFocusDirection) { 50 WKFocusDirectionBackward, 51 WKFocusDirectionForward, 52 } WK_API_AVAILABLE(macosx(WK_MAC_TBA)); 48 53 #endif 49 54 … … 121 126 - (void)_webView:(WKWebView *)webView didChangeSafeAreaShouldAffectObscuredInsets:(BOOL)safeAreaShouldAffectObscuredInsets WK_API_AVAILABLE(ios(WK_IOS_TBA)); 122 127 #else 123 - (void)_webViewShow:(WKWebView *)webView WK_API_AVAILABLE(macosx(WK_MAC_TBA)); 128 - (void)_showWebView:(WKWebView *)webView WK_API_AVAILABLE(macosx(WK_MAC_TBA)); 129 - (void)_focusWebView:(WKWebView *)webView WK_API_AVAILABLE(macosx(WK_MAC_TBA)); 130 - (void)_unfocusWebView:(WKWebView *)webView WK_API_AVAILABLE(macosx(WK_MAC_TBA)); 131 - (void)_webView:(WKWebView *)webView takeFocus:(_WKFocusDirection)direction WK_API_AVAILABLE(macosx(WK_MAC_TBA)); 124 132 - (NSMenu *)_webView:(WKWebView *)webView contextMenu:(NSMenu *)menu forElement:(_WKContextMenuElementInfo *)element WK_API_AVAILABLE(macosx(10.12)); 125 133 - (NSMenu *)_webView:(WKWebView *)webView contextMenu:(NSMenu *)menu forElement:(_WKContextMenuElementInfo *)element userInfo:(id <NSSecureCoding>)userInfo WK_API_AVAILABLE(macosx(10.12)); -
trunk/Source/WebKit/UIProcess/Cocoa/UIDelegate.h
r221055 r221099 98 98 #if PLATFORM(MAC) 99 99 void showPage(WebPageProxy*) final; 100 void takeFocus(WebKit::WebPageProxy*, WKFocusDirection) final; 101 void focus(WebKit::WebPageProxy*) final; 102 void unfocus(WebKit::WebPageProxy*) final; 100 103 bool runOpenPanel(WebPageProxy*, WebFrameProxy*, const WebCore::SecurityOriginData&, API::OpenPanelParameters*, WebOpenPanelResultListenerProxy*) override; 101 104 #endif … … 133 136 bool webViewCreateWebViewWithConfigurationForNavigationActionWindowFeatures : 1; 134 137 bool webViewCreateWebViewWithConfigurationForNavigationActionWindowFeaturesAsync : 1; 135 bool webViewShow : 1;136 138 bool webViewRunJavaScriptAlertPanelWithMessageInitiatedByFrameCompletionHandler : 1; 137 139 bool webViewRunJavaScriptConfirmPanelWithMessageInitiatedByFrameCompletionHandler : 1; … … 139 141 bool webViewRunBeforeUnloadConfirmPanelWithMessageInitiatedByFrameCompletionHandler : 1; 140 142 #if PLATFORM(MAC) 143 bool showWebView : 1; 144 bool focusWebView : 1; 145 bool unfocusWebView : 1; 146 bool webViewTakeFocus : 1; 141 147 bool webViewRunOpenPanelWithParametersInitiatedByFrameCompletionHandler : 1; 142 148 #endif -
trunk/Source/WebKit/UIProcess/Cocoa/UIDelegate.mm
r221055 r221099 101 101 102 102 #if PLATFORM(MAC) 103 m_delegateMethods.webViewShow = [delegate respondsToSelector:@selector(_webViewShow:)]; 103 m_delegateMethods.showWebView = [delegate respondsToSelector:@selector(_showWebView:)]; 104 m_delegateMethods.focusWebView = [delegate respondsToSelector:@selector(_focusWebView:)]; 105 m_delegateMethods.unfocusWebView = [delegate respondsToSelector:@selector(_unfocusWebView:)]; 106 m_delegateMethods.webViewTakeFocus = [delegate respondsToSelector:@selector(_webView:takeFocus:)]; 104 107 m_delegateMethods.webViewRunOpenPanelWithParametersInitiatedByFrameCompletionHandler = [delegate respondsToSelector:@selector(webView:runOpenPanelWithParameters:initiatedByFrame:completionHandler:)]; 105 108 #endif … … 373 376 374 377 #if PLATFORM(MAC) 378 static inline _WKFocusDirection toWKFocusDirection(WKFocusDirection direction) 379 { 380 switch (direction) { 381 case kWKFocusDirectionBackward: 382 return WKFocusDirectionBackward; 383 case kWKFocusDirectionForward: 384 return WKFocusDirectionForward; 385 } 386 ASSERT_NOT_REACHED(); 387 return WKFocusDirectionForward; 388 } 389 390 void UIDelegate::UIClient::takeFocus(WebKit::WebPageProxy*, WKFocusDirection direction) 391 { 392 if (!m_uiDelegate.m_delegateMethods.webViewTakeFocus) 393 return; 394 395 auto delegate = m_uiDelegate.m_delegate.get(); 396 if (!delegate) 397 return; 398 399 [(id <WKUIDelegatePrivate>)delegate _webView:m_uiDelegate.m_webView takeFocus:toWKFocusDirection(direction)]; 400 } 401 402 void UIDelegate::UIClient::focus(WebKit::WebPageProxy*) 403 { 404 if (!m_uiDelegate.m_delegateMethods.focusWebView) 405 return; 406 407 auto delegate = m_uiDelegate.m_delegate.get(); 408 if (!delegate) 409 return; 410 411 [(id <WKUIDelegatePrivate>)delegate _focusWebView:m_uiDelegate.m_webView]; 412 } 413 414 void UIDelegate::UIClient::unfocus(WebKit::WebPageProxy*) 415 { 416 if (!m_uiDelegate.m_delegateMethods.unfocusWebView) 417 return; 418 419 auto delegate = m_uiDelegate.m_delegate.get(); 420 if (!delegate) 421 return; 422 423 [(id <WKUIDelegatePrivate>)delegate _unfocusWebView:m_uiDelegate.m_webView]; 424 } 425 375 426 void UIDelegate::UIClient::showPage(WebPageProxy*) 376 427 { 377 if (!m_uiDelegate.m_delegateMethods. webViewShow)378 return; 379 380 auto delegate = m_uiDelegate.m_delegate.get(); 381 if (!delegate) 382 return; 383 384 [(id <WKUIDelegatePrivate>)delegate _ webViewShow:m_uiDelegate.m_webView];428 if (!m_uiDelegate.m_delegateMethods.showWebView) 429 return; 430 431 auto delegate = m_uiDelegate.m_delegate.get(); 432 if (!delegate) 433 return; 434 435 [(id <WKUIDelegatePrivate>)delegate _showWebView:m_uiDelegate.m_webView]; 385 436 } 386 437 -
trunk/Tools/ChangeLog
r221095 r221099 1 2017-08-23 Alex Christensen <achristensen@webkit.org> 2 3 Add WKUIDelegatePrivate callbacks corresponding to WKPageUIClient's takeFocus, focus, and unfocus 4 https://bugs.webkit.org/show_bug.cgi?id=175896 5 6 Reviewed by Tim Horton. 7 8 * TestWebKitAPI/Tests/WebKit2Cocoa/UIDelegate.mm: 9 (-[UITestDelegate _showWebView:]): 10 (TEST): 11 (tabEvent): 12 (synthesizeTab): 13 (-[FocusDelegate _webView:takeFocus:]): 14 (-[FocusDelegate webView:runJavaScriptAlertPanelWithMessage:initiatedByFrame:completionHandler:]): 15 (-[UITestDelegate _webViewShow:]): Deleted. 16 1 17 2017-08-23 Eric Carlson <eric.carlson@apple.com> 2 18 -
trunk/Tools/TestWebKitAPI/Tests/WebKit2Cocoa/UIDelegate.mm
r221055 r221099 32 32 #import "TestWKWebView.h" 33 33 #import "Utilities.h" 34 #import <Carbon/Carbon.h> 34 35 #import <WebKit/WKUIDelegatePrivate.h> 35 36 #import <WebKit/WKWebView.h> 36 37 #import <wtf/RetainPtr.h> 38 #import <wtf/mac/AppKitCompatibilityDeclarations.h> 37 39 38 40 @class UITestDelegate; … … 55 57 } 56 58 57 - (void)_ webViewShow:(WKWebView *)webView59 - (void)_showWebView:(WKWebView *)webView 58 60 { 59 61 webViewFromDelegateCallback = webView; … … 75 77 @end 76 78 77 TEST(WebKit2, Show Page)79 TEST(WebKit2, ShowWebView) 78 80 { 79 81 delegate = adoptNS([[UITestDelegate alloc] init]); … … 88 90 } 89 91 92 static NSEvent *tabEvent(NSWindow *window, NSEventType type, NSEventModifierFlags flags) 93 { 94 return [NSEvent keyEventWithType:type location:NSMakePoint(5, 5) modifierFlags:flags timestamp:GetCurrentEventTime() windowNumber:[window windowNumber] context:[NSGraphicsContext currentContext] characters:@"\t" charactersIgnoringModifiers:@"\t" isARepeat:NO keyCode:0]; 95 } 96 97 static void synthesizeTab(NSWindow *window, NSView *view, bool withShiftDown) 98 { 99 [view keyDown:tabEvent(window, NSEventTypeKeyDown, withShiftDown ? NSEventModifierFlagShift : 0)]; 100 [view keyUp:tabEvent(window, NSEventTypeKeyUp, withShiftDown ? NSEventModifierFlagShift : 0)]; 101 } 102 103 static RetainPtr<NSWindow> window; 104 static _WKFocusDirection takenDirection; 105 106 @interface FocusDelegate : NSObject <WKUIDelegatePrivate> 107 @end 108 109 @implementation FocusDelegate 110 111 - (void)_webView:(WKWebView *)webView takeFocus:(_WKFocusDirection)direction 112 { 113 takenDirection = direction; 114 done = true; 115 } 116 117 - (void)webView:(WKWebView *)webView runJavaScriptAlertPanelWithMessage:(NSString *)message initiatedByFrame:(WKFrameInfo *)frame completionHandler:(void (^)(void))completionHandler 118 { 119 completionHandler(); 120 synthesizeTab(window.get(), webView, true); 121 } 122 123 @end 124 125 TEST(WebKit2, Focus) 126 { 127 window = adoptNS([[NSWindow alloc] initWithContentRect:CGRectMake(0, 0, 800, 600) styleMask:NSWindowStyleMaskBorderless backing:NSBackingStoreBuffered defer:YES]); 128 auto webView = adoptNS([[WKWebView alloc] initWithFrame:CGRectMake(0, 0, 800, 600)]); 129 [[window contentView] addSubview:webView.get()]; 130 auto delegate = adoptNS([[FocusDelegate alloc] init]); 131 [webView setUIDelegate:delegate.get()]; 132 NSString *html = @"<script>function loaded() { document.getElementById('in').focus(); alert('ready'); }</script>" 133 "<body onload='loaded()'><input type='text' id='in'></body>"; 134 [webView loadHTMLString:html baseURL:[NSURL URLWithString:@"http://example.com/"]]; 135 TestWebKitAPI::Util::run(&done); 136 ASSERT_EQ(takenDirection, WKFocusDirectionBackward); 137 } 138 90 139 #endif // PLATFORM(MAC) 91 140
Note:
See TracChangeset
for help on using the changeset viewer.