Home | History | Annotate | Download | only in WebView

Lines Matching full:documentview

143     bool makeNewViewFirstResponder = [firstResponder isKindOfClass:[NSView class]] && [(NSView *)firstResponder isDescendantOf:[sv documentView]];
162 NSView <WebDocumentView> *documentView;
165 // same class as the desired documentView, then use it as the documentView instead
169 documentView = (NSView <WebDocumentView> *)[dataSourceRepresentation retain];
171 documentView = [[viewClass alloc] initWithFrame:[self bounds]];
173 documentView = nil;
175 [self _setDocumentView:documentView];
176 [documentView release];
178 return documentView;
184 NSView *docV = [self documentView];
393 - (NSView <WebDocumentView> *)documentView
395 return [[self _scrollView] documentView];
450 if ([self documentView] == nil) {
451 // Need to paint ourselves if there's no documentView to do it instead.
529 if (![[self documentView] isKindOfClass:[WebHTMLView class]])
572 NSPoint point = [[[self _scrollView] documentView] frame].origin;
584 NSRect frame = [[[self _scrollView] documentView] frame];
966 NSView *view = [self documentView];
972 NSView *documentView = [[self _scrollView] documentView];
973 if ([documentView respondsToSelector:@selector(canPrintHeadersAndFooters)]) {
974 return [(id)documentView canPrintHeadersAndFooters];
981 NSView *documentView = [[self _scrollView] documentView];
982 if (!documentView) {
985 if ([documentView respondsToSelector:@selector(printOperationWithPrintInfo:)]) {
986 return [(id)documentView printOperationWithPrintInfo:printInfo];
988 return [NSPrintOperation printOperationWithView:documentView printInfo:printInfo];
993 NSView *documentView = [[self _scrollView] documentView];
994 if (documentView && [documentView respondsToSelector:@selector(documentViewShouldHandlePrint)])
995 return [(id)documentView documentViewShouldHandlePrint];
1002 NSView *documentView = [[self _scrollView] documentView];
1003 if (documentView && [documentView respondsToSelector:@selector(printDocumentView)])
1004 [(id)documentView printDocumentView];
1110 NSView <WebDocumentView> *documentView = [[self documentView] retain];
1128 [self _setDocumentView:documentView];
1133 [documentView release];