blob: abfba8bf3effca0b8b655419b1ce88059b9f5da2 (
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
|
{ Parsed from WebKit.framework WebFrameView.h }
{$ifdef TYPES}
type
WebFrameViewPtr = ^WebFrameView;
{$endif}
{$ifdef CLASSES}
type
WebFrameView = objcclass external (NSView)
private
_private: WebFrameViewPrivate;
public
function webFrame: WebFrame; message 'webFrame';
function documentView: WebDocumentViewProtocol; message 'documentView';
procedure setAllowsScrolling(newValue: ObjCBOOL); message 'setAllowsScrolling:';
function allowsScrolling: ObjCBOOL; message 'allowsScrolling';
function canPrintHeadersAndFooters: ObjCBOOL; message 'canPrintHeadersAndFooters';
function printOperationWithPrintInfo (printInfo: NSPrintInfo): NSPrintOperation; message 'printOperationWithPrintInfo:';
function documentViewShouldHandlePrint: ObjCBOOL; message 'documentViewShouldHandlePrint';
procedure printDocumentView; message 'printDocumentView';
end;
{$endif}
|