Re: Notes about WebCore
Re: Notes about WebCore
- Subject: Re: Notes about WebCore
- From: Owen Anderson <email@hidden>
- Date: Wed, 8 Jan 2003 23:04:41 -0500
On Wednesday, January 8, 2003, at 02:52 PM, Philippe Mougin wrote:
>
WebCore seems designed as an embeddable framework, which is quite
>
significant for Cocoa developers because it shall give them
>
world-class HTML processing and rendering capacities for their own
>
applications. But AFAIK, there is no documentation about it. Is it
>
intended to be used directly, or through a forthcoming framework? This
>
is still unclear for me, although the latter seems probable. Indeed,
>
inspecting Safari at run-time reveals that there are more web related
>
classes here than those provided by WebCore alone (and JavaScriptCore,
>
its companion package). The WebKit framework, included in the Safari
>
executable package, may be this forthcoming framework...
I have run class-dump against both WebKit and WebFoundation, with very
interesting results. The most interesting is definitely this class,
though exactly how to use it still escapes me:
@interface WebHTMLView:NSView <WebDocumentView,
WebDocumentDragSettings, WebDocumentSearching, WebDocumentText>
{
WebHTMLViewPrivate *_private;
}
+ (void)initialize;
- (void)_drawBorder:(int)fp12;
- (char)acceptsDrags;
- (char)acceptsDrops;
- (char)acceptsFirstResponder;
- (void)addMouseMovedObserver;
- (void)addSubview:fp12;
- (void)addSuperviewObservers;
- (void)addWindowObservers;
- attributedString;
- (char)becomeFirstResponder;
- (void)copy:fp12;
- (void)dataSourceUpdated:fp12;
- (void)dealloc;
- (void)deselectAll;
- (void)dragImage:fp12 at:(struct _NSPoint)fp16 offset:(struct
_NSSize)fp24 event:fp32 pasteboard:fp32 source:fp36
slideBack:(char)fp43;
- (void)draggedImage:fp12 endedAt:(struct _NSPoint)fp16
operation:(unsigned int)fp24;
- (unsigned int)draggingSourceOperationMaskForLocal:(char)fp12;
- (void)drawRect:(struct _NSRect)fp12;
- (char)hasSelection;
- initWithFrame:(struct _NSRect)fp12;
- (char)isFlipped;
- (char)isOpaque;
- (void)jumpToSelection:fp12;
- (void)layout;
- menuForEvent:fp12;
- (void)mouseDown:fp12;
- (void)mouseDragged:fp12;
- (void)mouseMovedNotification:fp12;
- (void)mouseUp:fp12;
- namesOfPromisedFilesDroppedAtDestination:fp12;
- nextKeyView;
- nextValidKeyView;
- previousKeyView;
- previousValidKeyView;
- (void)reapplyStyles;
- (void)removeMouseMovedObserver;
- (void)removeSuperviewObservers;
- (void)removeWindowObservers;
- (char)searchFor:fp12 direction:(char)fp16 caseSensitive:(char)fp20;
- (void)selectAll;
- (void)selectAll:fp12;
- selectedAttributedString;
- selectedString;
- (void)setAcceptsDrags:(char)fp12;
- (void)setAcceptsDrops:(char)fp12;
- (void)setDataSource:fp12;
- (void)setNeedsDisplay:(char)fp12;
- (void)setNeedsLayout:(char)fp12;
- (void)setNeedsToApplyStyles:(char)fp12;
- string;
- (char)supportsTextEncoding;
- (void)takeFindStringFromSelection:fp12;
- validRequestorForSendType:fp12 returnType:fp16;
- (char)validateUserInterfaceItem:fp12;
- (void)viewDidMoveToSuperview;
- (void)viewDidMoveToWindow;
- (void)viewWillMoveToSuperview:fp12;
- (void)viewWillMoveToWindow:fp12;
- (struct _NSRect)visibleRect;
- (void)windowDidBecomeMain:fp12;
- (void)windowDidResignMain:fp12;
- (char)writeSelectionToPasteboard:fp12 types:fp16;
@end
_______________________________________________
cocoa-dev mailing list | email@hidden
Help/Unsubscribe/Archives:
http://www.lists.apple.com/mailman/listinfo/cocoa-dev
Do not post admin requests to the list. They will be ignored.