blob: b5585b9022447cf2d651b16d7f46261de4d8d980 (
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
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
|
{ Parsed from Webkit.framework WebFrame.h }
{$ifdef TYPES}
{$ifndef WEBFRAME_PAS_T}
{$define WEBFRAME_PAS_T}
{$endif}
{$endif}
{$ifdef RECORDS}
{$ifndef WEBFRAME_PAS_R}
{$define WEBFRAME_PAS_R}
{$endif}
{$endif}
{$ifdef FUNCTIONS}
{$ifndef WEBFRAME_PAS_F}
{$define WEBFRAME_PAS_F}
{$endif}
{$endif}
{$ifdef EXTERNAL_SYMBOLS}
{$ifndef WEBFRAME_PAS_S}
{$define WEBFRAME_PAS_S}
{$endif}
{$endif}
{$ifdef FORWARD}
WebFrame = objcclass;
WebFramePointer = ^WebFrame;
WebFramePtr = WebFramePointer;
{$endif}
{$ifdef CLASSES}
{$ifndef WEBFRAME_PAS_C}
{$define WEBFRAME_PAS_C}
{ WebFrame }
WebFrame = objcclass external (NSObject)
private
_private: WebFramePrivate;
public
function initWithName_webFrameView_webView(name_: NSString; view: WebFrameView; webView_: WebView): id; message 'initWithName:webFrameView:webView:';
function name: NSString; message 'name';
function webView: WebView; message 'webView';
function frameView: WebFrameView; message 'frameView';
function DOMDocument: DOMDocument; message 'DOMDocument';
function frameElement: DOMHTMLElement; message 'frameElement';
procedure loadRequest(request: NSURLRequest); message 'loadRequest:';
procedure loadData_MIMEType_textEncodingName_baseURL(data: NSData; MIMEType: NSString; encodingName: NSString; URL: NSURL); message 'loadData:MIMEType:textEncodingName:baseURL:';
procedure loadHTMLString_baseURL(string_: NSString; URL: NSURL); message 'loadHTMLString:baseURL:';
procedure loadAlternateHTMLString_baseURL_forUnreachableURL(string_: NSString; baseURL: NSURL; unreachableURL: NSURL); message 'loadAlternateHTMLString:baseURL:forUnreachableURL:';
procedure loadArchive(archive: WebArchive); message 'loadArchive:';
function dataSource: WebDataSource; message 'dataSource';
function provisionalDataSource: WebDataSource; message 'provisionalDataSource';
procedure stopLoading; message 'stopLoading';
procedure reload; message 'reload';
procedure reloadFromOrigin; message 'reloadFromOrigin';
function findFrameNamed(name_: NSString): WebFrame; message 'findFrameNamed:';
function parentFrame: WebFrame; message 'parentFrame';
function childFrames: NSArray; message 'childFrames';
function windowObject: WebScriptObject; message 'windowObject';
function globalContext: JSGlobalContextRef; message 'globalContext';
end;
{$endif}
{$endif}
|