Home | History | Annotate | Download | only in WebView

Lines Matching full:documentview

131     [[self documentView] setNeedsLayout:YES];
132 [[self documentView] layout];
222 NSView *documentView = [self documentView];
223 NSRect documentRect = [documentView bounds];
229 [documentView scrollPoint:NSMakePoint(_private->scrollPositionExcludingOrigin.x + documentRect.origin.x, _private->scrollPositionExcludingOrigin.y + documentRect.origin.y)];
237 NSView *documentView = [self documentView];
242 if (!_private->suppressLayout && !_private->suppressScrollers && [documentView isKindOfClass:[WebHTMLView class]]) {
243 WebHTMLView* htmlView = (WebHTMLView*)documentView;
246 [(id <WebDocumentView>)documentView layout];
257 if (!documentView) {
267 if (!documentView || _private->suppressLayout || _private->suppressScrollers || (_private->hScroll != ScrollbarAuto && _private->vScroll != ScrollbarAuto)) {
291 NSSize documentSize = [documentView frame].size;
336 NSView *documentView = [self documentView];
337 NSRect documentRect = [documentView bounds];
339 [documentView setBoundsOrigin:NSMakePoint(documentRect.origin.x, documentRect.origin.y + 15)];
347 NSView *documentView = [self documentView];
348 NSRect documentRect = [documentView bounds];
350 [documentView setBoundsOrigin:NSMakePoint(documentRect.origin.x + 15, documentRect.origin.y)];
354 [documentView conformsToProtocol:@protocol(WebDocumentView)]) {
356 [(id <WebDocumentView>)documentView setNeedsLayout:YES];
357 [(id <WebDocumentView>)documentView layout];
358 NSSize newDocumentSize = [documentView frame].size;
410 NSView *documentView = [self documentView];
411 if ([documentView isKindOfClass:[WebHTMLView class]]) {
412 documentView;
578 id docView = [self documentView];