DOMHTMLBodyElement.inc 1.6 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364
  1. { Parsed from Webkit.framework DOMHTMLBodyElement.h }
  2. { Version FrameworkParser: 1.3. PasCocoa 0.3, Objective-P 0.4 - Sat Oct 3 15:33:51 ICT 2009 }
  3. {$ifdef TYPES}
  4. {$ifndef DOMHTMLBODYELEMENT_PAS_T}
  5. {$define DOMHTMLBODYELEMENT_PAS_T}
  6. {$endif}
  7. {$endif}
  8. {$ifdef RECORDS}
  9. {$ifndef DOMHTMLBODYELEMENT_PAS_R}
  10. {$define DOMHTMLBODYELEMENT_PAS_R}
  11. {$endif}
  12. {$endif}
  13. {$ifdef FUNCTIONS}
  14. {$ifndef DOMHTMLBODYELEMENT_PAS_F}
  15. {$define DOMHTMLBODYELEMENT_PAS_F}
  16. {$endif}
  17. {$endif}
  18. {$ifdef EXTERNAL_SYMBOLS}
  19. {$ifndef DOMHTMLBODYELEMENT_PAS_S}
  20. {$define DOMHTMLBODYELEMENT_PAS_S}
  21. {$endif}
  22. {$endif}
  23. {$ifdef FORWARD}
  24. DOMHTMLBodyElement = objcclass;
  25. DOMHTMLBodyElementPointer = ^DOMHTMLBodyElement;
  26. {$endif}
  27. {$ifdef CLASSES}
  28. {$ifndef DOMHTMLBODYELEMENT_PAS_C}
  29. {$define DOMHTMLBODYELEMENT_PAS_C}
  30. { DOMHTMLBodyElement }
  31. DOMHTMLBodyElement = objcclass(DOMHTMLElement)
  32. public
  33. class function alloc: DOMHTMLBodyElement; message 'alloc';
  34. procedure setALink (newValue: NSString); message 'setALink:';
  35. function aLink: NSString; message 'aLink';
  36. procedure setBackground (newValue: NSString); message 'setBackground:';
  37. function background: NSString; message 'background';
  38. procedure setBgColor (newValue: NSString); message 'setBgColor:';
  39. function bgColor: NSString; message 'bgColor';
  40. procedure setLink (newValue: NSString); message 'setLink:';
  41. function link: NSString; message 'link';
  42. procedure setText (newValue: NSString); message 'setText:';
  43. function text: NSString; message 'text';
  44. procedure setVLink (newValue: NSString); message 'setVLink:';
  45. function vLink: NSString; message 'vLink';
  46. end; external;
  47. {$endif}
  48. {$endif}