WebFrameLoadDelegate.inc 2.6 KB

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