/packages/cocoaint/src/webkit/DOMHTMLFrameElement.inc
Pascal | 71 lines | 28 code | 14 blank | 29 comment | 0 complexity | 561a87f9eb4c062d45c3e3bf2dc40c6c MD5 | raw file
Possible License(s): LGPL-2.0, LGPL-2.1, LGPL-3.0
1{ Parsed from Webkit.framework DOMHTMLFrameElement.h } 2 3{$ifdef TYPES} 4{$ifndef DOMHTMLFRAMEELEMENT_PAS_T} 5{$define DOMHTMLFRAMEELEMENT_PAS_T} 6 7{$endif} 8{$endif} 9 10{$ifdef RECORDS} 11{$ifndef DOMHTMLFRAMEELEMENT_PAS_R} 12{$define DOMHTMLFRAMEELEMENT_PAS_R} 13 14{$endif} 15{$endif} 16 17{$ifdef FUNCTIONS} 18{$ifndef DOMHTMLFRAMEELEMENT_PAS_F} 19{$define DOMHTMLFRAMEELEMENT_PAS_F} 20 21{$endif} 22{$endif} 23 24{$ifdef EXTERNAL_SYMBOLS} 25{$ifndef DOMHTMLFRAMEELEMENT_PAS_S} 26{$define DOMHTMLFRAMEELEMENT_PAS_S} 27 28{$endif} 29{$endif} 30 31{$ifdef FORWARD} 32 DOMHTMLFrameElement = objcclass; 33 DOMHTMLFrameElementPointer = ^DOMHTMLFrameElement; 34 DOMHTMLFrameElementPtr = DOMHTMLFrameElementPointer; 35 36{$endif} 37 38{$ifdef CLASSES} 39{$ifndef DOMHTMLFRAMEELEMENT_PAS_C} 40{$define DOMHTMLFRAMEELEMENT_PAS_C} 41 42{ DOMHTMLFrameElement } 43 DOMHTMLFrameElement = objcclass external (DOMHTMLElement) 44 45 public 46 procedure setFrameBorder (newValue: NSString); message 'setFrameBorder:'; 47 function frameBorder: NSString; message 'frameBorder'; 48 procedure setLongDesc (newValue: NSString); message 'setLongDesc:'; 49 function longDesc: NSString; message 'longDesc'; 50 procedure setMarginHeight (newValue: NSString); message 'setMarginHeight:'; 51 function marginHeight: NSString; message 'marginHeight'; 52 procedure setMarginWidth (newValue: NSString); message 'setMarginWidth:'; 53 function marginWidth: NSString; message 'marginWidth'; 54 procedure setName (newValue: NSString); message 'setName:'; 55 function name: NSString; message 'name'; 56 procedure setNoResize (newValue: Boolean); message 'setNoResize:'; 57 function noResize: Boolean; message 'noResize'; 58 procedure setScrolling (newValue: NSString); message 'setScrolling:'; 59 function scrolling: NSString; message 'scrolling'; 60 procedure setSrc (newValue: NSString); message 'setSrc:'; 61 function src: NSString; message 'src'; 62 function contentDocument: DOMDocument; message 'contentDocument'; 63 function contentWindow: DOMAbstractView; message 'contentWindow'; 64 procedure setLocation (newValue: NSString); message 'setLocation:'; 65 function location: NSString; message 'location'; 66 function width: cint; message 'width'; 67 function height: cint; message 'height'; 68 end; 69 70{$endif} 71{$endif}