Home
last modified time | relevance | path

Searched refs:drawsBackground (Results 1 – 15 of 15) sorted by relevance

/external/webkit/WebCore/platform/mac/
DWidgetMac.mm197 …ames are in fact implemented with scroll views that return YES from -drawsBackground (whenever the…
198 …// itself is in drawsBackground mode). In the normal drawing code path, the scroll views are never…
206 if ([scrollView drawsBackground] && ![[scrollView contentView] copiesOnScroll])
/external/webkit/WebKit/mac/WebView/
DWebViewData.h95 BOOL drawsBackground; variable
DWebFrameView.mm442 return [[self _webView] drawsBackground];
449 if ([[self _webView] drawsBackground]) {
455 if ([[self _scrollView] drawsBackground]) {
498 if ([[[self webFrame] webView] drawsBackground])
512 if (_private && [[[self webFrame] webView] drawsBackground])
999 [scrollView setDrawsBackground:[oldScrollView drawsBackground]];
DWebView.h617 - (BOOL)drawsBackground;
DWebFrame.mm326 BOOL drawsBackground = [webView drawsBackground];
335 if (!drawsBackground)
340 [documentView setDrawsBackground:drawsBackground];
346 view->setTransparent(!drawsBackground);
DWebView.mm596 _private->drawsBackground = YES;
3364 - (void)setDrawsBackground:(BOOL)drawsBackground
3366 if (_private->drawsBackground == drawsBackground)
3368 _private->drawsBackground = drawsBackground;
3372 - (BOOL)drawsBackground
3376 return !_private || _private->drawsBackground;
DWebHTMLView.mm1239 if (![[self _webView] drawsBackground])
3078 return [[self _webView] drawsBackground];
/external/webkit/WebKit/win/
DWebView.h276 /* [in] */ BOOL drawsBackground);
278 virtual HRESULT STDMETHODCALLTYPE drawsBackground(
279 /* [retval][out] */ BOOL *drawsBackground);
DWebView.cpp3292 HRESULT STDMETHODCALLTYPE WebView::drawsBackground( in drawsBackground() function in WebView
/external/webkit/WebKit/win/Interfaces/
DIWebView.idl674 HRESULT setDrawsBackground([in] BOOL drawsBackground);
677 @method drawsBackground
679 - (BOOL)drawsBackground;
681 HRESULT drawsBackground([out, retval] BOOL* drawsBackground);
/external/webkit/WebKit/mac/
DWebKit.order151 -[WebView drawsBackground]
DChangeLog-2006-02-098057 … * WebView.subproj/WebFrameView.m: (-[WebFrameView drawRect:]): Check drawsBackground, and don't
16374 on the scroll view if the WebView has drawsBackground set to YES.
16376 …* WebView.subproj/WebViewPrivate.h: Added new proposed API, setDrawsBackground and drawsBackground.
16377 Also added drawsBackground boolean to private structure.
16379 … (-[WebView _commonInitializationWithFrameName:groupName:]): Set drawsBackground to YES by default.
16382 (-[WebView drawsBackground]): Added. Returns value of boolean.
DChangeLog7759 crash seen in -[WebView drawsBackground] when quitting
7763 (-[WebView drawsBackground]): Added comment and a null check for _private.
DChangeLog-2007-10-1418905 (-[WebView drawsBackground]):
/external/webkit/WebKit/mac/WebCoreSupport/
DWebFrameLoaderClient.mm920 if ([getWebView(m_webFrame.get()) drawsBackground])