HomeSort by relevance Sort by last modified time
    Searched refs:WebFrameView (Results 1 - 25 of 29) sorted by null

1 2

  /external/webkit/Source/WebKit/mac/WebView/
WebFrameViewPrivate.h 29 #import <WebKit/WebFrameView.h>
31 @interface WebFrameView (WebPrivate)
39 @result A child WebFrameView that is displaying scroll bars, or nil if none.
41 - (WebFrameView *)_largestChildWithScrollBars;
55 @result A child WebFrameView that is scrollable, or nil if none.
57 - (WebFrameView *)_largestScrollableChild;
69 @result The content view (NSClipView) of the WebFrameView's scroll view.
81 @result Switches the WebFrameView's scroll view class, this class needs to be a subclass of WebDynamicScrollBarsView.
WebFrameViewInternal.h 29 #import <WebKit/WebFrameView.h>
34 @interface WebFrameView (WebInternal)
WebFrameView.h 38 @class WebFrameView
40 @interface WebFrameView : NSView
48 @abstract Returns the WebFrame associated with this WebFrameView
49 @result The WebFrameView's frame.
55 @abstract Returns the WebFrameView's document subview
56 @result The subview that renders the WebFrameView's contents
62 @abstract Sets whether the WebFrameView allows its document to be scrolled
69 @abstract Returns whether the WebFrameView allows its document to be scrolled
92 WebFrameView. The document view is then expected to run its own print operation. If YES is returned, the host
99 @abstract Called by the host application when the WebFrameView returns YES from -documentViewShouldHandlePrint
    [all...]
WebFrame.h 38 @class WebFrameView;
45 has a WebFrameView and a WebDataSource.
54 @method initWithName:webFrameView:webView:
59 @param view The WebFrameView for the frame.
63 - (id)initWithName:(NSString *)name webFrameView:(WebFrameView *)view webView:(WebView *)webView;
79 @result The WebFrameView for this frame.
81 - (WebFrameView *)frameView;
WebClipView.mm 32 #import "WebFrameView.h"
89 WebFrameView *webFrameView = (WebFrameView *)[[self superview] superview];
90 if (![webFrameView isKindOfClass:[WebFrameView class]])
93 if (Frame* coreFrame = core([webFrameView webFrame])) {
WebFrameInternal.h 44 @class WebFrameView;
81 WebFrameView *webFrameView;
95 + (void)_createMainFrameWithPage:(WebCore::Page*)page frameName:(const WTF::String&)name frameView:(WebFrameView *)frameView;
96 + (PassRefPtr<WebCore::Frame>)_createSubframeWithOwnerElement:(WebCore::HTMLFrameOwnerElement*)ownerElement frameName:(const WTF::String&)name frameView:(WebFrameView *)frameView;
97 - (id)_initWithWebFrameView:(WebFrameView *)webFrameView webView:(WebView *)webView;
WebFrameView.mm 29 #import "WebFrameView.h"
87 @interface WebFrameView (WebFrameViewFileInternal) <WebCoreFrameView>
109 @implementation WebFrameView (WebFrameViewFileInternal)
124 @implementation WebFrameView (WebInternal)
189 // Not retained because the WebView owns the WebFrame, which owns the WebFrameView.
293 @implementation WebFrameView
407 // This works together with setNextKeyView to splice the WebFrameView into
433 // This works together with becomeFirstResponder to splice the WebFrameView into
615 if (WebFrameView *child = [self _largestScrollableChild]) {
627 if (WebFrameView *child = [self _largestScrollableChild])
    [all...]
WebUIDelegatePrivate.h 183 - (void)webView:(WebView *)sender didScrollDocumentInFrameView:(WebFrameView *)frameView;
188 - (void)webView:(WebView *)sender saveFrameView:(WebFrameView *)frameView showingPanel:(BOOL)showingPanel;
WebUIDelegate.h 516 @abstract Informs that a WebFrameView needs to be printed
518 @param frameView The WebFrameView needing to be printed
520 In this method the delegate can prepare the WebFrameView to be printed. Some content that WebKit
521 displays can be printed directly by the WebFrameView, other content will need to be handled by
522 the delegate. To determine if the WebFrameView can handle printing the delegate should check
523 WebFrameView's documentViewShouldHandlePrint, if YES then the delegate can call printDocumentView
524 on the WebFrameView. Otherwise the delegate will need to request a NSPrintOperation from
525 the WebFrameView's printOperationWithPrintInfo to handle the printing.
527 - (void)webView:(WebView *)sender printFrameView:(WebFrameView *)frameView;
WebView.h 47 @class WebFrameView;
WebFrame.mm 161 [webFrameView release];
175 - (void)setWebFrameView:(WebFrameView *)v
178 [webFrameView release];
179 webFrameView = v;
260 + (PassRefPtr<Frame>)_createFrameWithPage:(Page*)page frameName:(const String&)name frameView:(WebFrameView *)frameView ownerElement:(HTMLFrameOwnerElement*)ownerElement
282 + (void)_createMainFrameWithPage:(Page*)page frameName:(const String&)name frameView:(WebFrameView *)frameView
287 + (PassRefPtr<WebCore::Frame>)_createSubframeWithOwnerElement:(HTMLFrameOwnerElement*)ownerElement frameName:(const String&)name frameView:(WebFrameView *)frameView
328 - (id)_initWithWebFrameView:(WebFrameView *)fv webView:(WebView *)v
336 // Set includedInWebKitStatistics before calling WebFrameView _setWebFrame, since
419 id documentView = [_private->webFrameView documentView];
    [all...]
WebView.mm 379 - (WebFrameView *)_frameViewAtWindowPoint:(NSPoint)point;
693 WebFrameView *frameView = nil;
696 frameView = [[WebFrameView alloc] initWithFrame: NSMakeRect(0,0,f.size.width,f.size.height)];
    [all...]
  /external/webkit/Source/WebKit/android/jni/
WebFrameView.cpp 29 #include "WebFrameView.h"
43 WebFrameView::WebFrameView(WebCore::FrameView* frameView, WebViewCore* webViewCore)
52 WebFrameView::~WebFrameView() {
56 void WebFrameView::draw(WebCore::GraphicsContext* gc, const WebCore::IntRect& rect) {
WebFrameView.h 38 class WebFrameView: public WebCoreViewBridge {
40 WebFrameView(WebCore::FrameView* frameView, WebViewCore* webViewCore);
41 virtual ~WebFrameView();
WebCoreFrameBridge.cpp 90 #include "WebFrameView.h"
    [all...]
  /external/webkit/Source/WebKit/mac/Misc/
WebNSViewExtras.h 34 @class WebFrameView;
41 - (WebFrameView *)_web_parentWebFrameView;
WebKit.h 39 #import <WebKit/WebFrameView.h>
WebNSViewExtras.m 57 - (WebFrameView *)_web_parentWebFrameView
59 return (WebFrameView *)[self _web_superviewOfClass:[WebFrameView class]];
  /external/webkit/Source/WebKit/mac/DefaultDelegates/
WebDefaultUIDelegate.m 186 - (void)webView:(WebView *)sender printFrameView:(WebFrameView *)frameView
218 - (void)webView:(WebView *)sender didScrollDocumentInFrameView:(WebFrameView *)frameView
  /external/webkit/Source/WebKit/mac/WebCoreSupport/
WebInspectorClient.mm 34 #import "WebFrameView.h"
335 WebFrameView *frameView = [[_inspectedWebView mainFrame] frameView];
367 WebFrameView *frameView = [[_inspectedWebView mainFrame] frameView];
438 WebFrameView *frameView = [[_inspectedWebView mainFrame] frameView];
WebFrameLoaderClient.mm 240 NSView <WebDocumentView> *view = [m_webFrame->_private->webFrameView documentView];
246 NSView <WebDocumentView> *view = [m_webFrame->_private->webFrameView documentView];
253 WebFrameView *thisView = m_webFrame->_private->webFrameView;
270 [[[m_webFrame->_private->webFrameView _scrollView] contentView] setCopiesOnScroll:YES];
278 [m_webFrame->_private->webFrameView _setWebFrame:nil]; // needed for now to be compatible w/ old behavior
283 [m_webFrame->_private->webFrameView release];
284 m_webFrame->_private->webFrameView = nil;
644 ASSERT([m_webFrame->_private->webFrameView documentView] != nil || ![getWebView(m_webFrame.get()) _usesDocumentViews]);
706 WebDynamicScrollBarsView *scrollView = [m_webFrame->_private->webFrameView _scrollView]
    [all...]
  /external/webkit/Source/WebKit/
Android.mk 74 android/jni/WebFrameView.cpp \
  /external/webkit/Source/WebKit/android/WebCoreSupport/
FrameLoaderClientAndroid.cpp 75 #include "WebFrameView.h"
    [all...]
  /external/webkit/Source/WebKit/mac/Plugins/
WebPluginDatabase.mm 328 if ([plugin isQuickTimePlugIn] && [[WebFrameView _viewTypesAllowImageTypeOmission:NO] objectForKey:MIMEType])
  /external/webkit/Tools/DumpRenderTree/mac/
TextInputController.m 37 #import <WebKit/WebFrameView.h>

Completed in 937 milliseconds

1 2