blob: 08f5559ec43f868729578fd3dcb42ed836c0a0ed (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
|
{ Parsed from WebKit.framework WebFrameLoadDelegate.h }
{ Types from WebFrameLoadDelegate }
{$ifdef TYPES}
{$endif}
{$ifdef CLASSES}
type
WebFrameLoadDelegate = objccategory external (NSObject)
procedure webView_didStartProvisionalLoadForFrame (sender: WebView; frame: WebFrame); message 'webView:didStartProvisionalLoadForFrame:';
procedure webView_didReceiveServerRedirectForProvisionalLoadForFrame (sender: WebView; frame: WebFrame); message 'webView:didReceiveServerRedirectForProvisionalLoadForFrame:';
procedure webView_didFailProvisionalLoadWithError_forFrame (sender: WebView; error: NSError; frame: WebFrame); message 'webView:didFailProvisionalLoadWithError:forFrame:';
procedure webView_didCommitLoadForFrame (sender: WebView; frame: WebFrame); message 'webView:didCommitLoadForFrame:';
procedure webView_didReceiveTitle_forFrame (sender: WebView; title: NSString; frame: WebFrame); message 'webView:didReceiveTitle:forFrame:';
procedure webView_didReceiveIcon_forFrame (sender: WebView; image: NSImage; frame: WebFrame); message 'webView:didReceiveIcon:forFrame:';
procedure webView_didFinishLoadForFrame (sender: WebView; frame: WebFrame); message 'webView:didFinishLoadForFrame:';
procedure webView_didFailLoadWithError_forFrame (sender: WebView; error: NSError; frame: WebFrame); message 'webView:didFailLoadWithError:forFrame:';
procedure webView_didChangeLocationWithinPageForFrame (sender: WebView; frame: WebFrame); message 'webView:didChangeLocationWithinPageForFrame:';
procedure webView_willPerformClientRedirectToURL_delay_fireDate_forFrame (sender: WebView; URL: NSURL; seconds: NSTimeInterval; date: NSDate; frame: WebFrame); message 'webView:willPerformClientRedirectToURL:delay:fireDate:forFrame:';
procedure webView_didCancelClientRedirectForFrame (sender: WebView; frame: WebFrame); message 'webView:didCancelClientRedirectForFrame:';
procedure webView_willCloseFrame (sender: WebView; frame: WebFrame); message 'webView:willCloseFrame:';
procedure webView_didClearWindowObject_forFrame (webView_: WebView; windowObject: WebScriptObject; frame: WebFrame); message 'webView:didClearWindowObject:forFrame:';
procedure webView_windowScriptObjectAvailable (webView_: WebView; windowScriptObject: WebScriptObject); message 'webView:windowScriptObjectAvailable:'; deprecated 'in 10_4, 10_5';
{$if defined(JSC_OBJC_API_ENABLED)}
procedure webView_didCreateJavaScriptContext_forFrame (webView_: WebView; context: JSContext; frame: WebFrame); message 'webView:didCreateJavaScriptContext:forFrame:';
{$endif}
end;
{$endif}
|