Lines Matching refs:WebView
167 - (WebView*)webView
172 - (void)setWebView:(WebView *)webView
174 [webView retain];
176 _webView = webView;
284 // Move the webView into our fullscreen Window
289 // assuming the placeholder's window will always be the webView's
292 WebView* webView = [self webView];
293 [_placeholderView setFrame:[webView frame]];
294 [_placeholderView setAutoresizingMask:[webView autoresizingMask]];
296 [[webView superview] replaceSubview:webView with:_placeholderView];
298 [[[self window] contentView] addSubview:webView];
299 [webView setAutoresizingMask:NSViewWidthSizable|NSViewHeightSizable];
300 [webView setFrame:[[[self window] contentView] bounds]];
380 WebView* webView = [self webView];
381 NSRect webViewFrame = [webView convertRectToBase:[webView frame]];
382 webViewFrame.origin = [[webView window] convertBaseToScreen:webViewFrame.origin];
386 // In the case of a multi-monitor setup where the webView straddles two
520 // the collectionBehavior of the webView's window:
521 NSWindow* webWindow = [[self webView] window];
528 // webView was moved to the fullscreen window. Check to see
530 // attempting to swap the webView back to it's original tree:
532 // Move the webView back to its own native window:
533 WebView* webView = [self webView];
534 [webView setFrame:[_placeholderView frame]];
535 [webView setAutoresizingMask:[_placeholderView autoresizingMask]];
536 [webView removeFromSuperview];
537 [[_placeholderView superview] replaceSubview:_placeholderView with:webView];
772 return core([[[self webView] mainFrame] DOMDocument]);