WebArchive.inc 1.1 KB

12345678910111213141516171819202122232425262728293031323334
  1. { Parsed from WebKit.framework WebArchive.h }
  2. {$ifdef TYPES}
  3. type
  4. WebArchivePtr = ^WebArchive;
  5. {$endif}
  6. {$ifdef EXTERNAL_SYMBOLS}
  7. var
  8. WebArchivePboardType: NSString; cvar; external;
  9. {$endif}
  10. {$ifdef CLASSES}
  11. type
  12. WebArchive = objcclass external (NSObject, NSCodingProtocol, NSCopyingProtocol)
  13. private
  14. _private: WebArchivePrivate;
  15. public
  16. function initWithMainResource_subresources_subframeArchives (mainResource: WebResource; subresources: NSArray; subframeArchives: NSArray): instancetype; message 'initWithMainResource:subresources:subframeArchives:';
  17. function initWithData (data: NSData): instancetype; message 'initWithData:';
  18. function mainResource: WebResource; message 'mainResource';
  19. function subresources: NSArray; message 'subresources';
  20. function subframeArchives: NSArray; message 'subframeArchives';
  21. function data: NSData; message 'data';
  22. { Adopted protocols }
  23. function copyWithZone (zone: NSZonePtr): id; message 'copyWithZone:';
  24. procedure encodeWithCoder (aCoder: NSCoder); message 'encodeWithCoder:';
  25. function initWithCoder (aDecoder: NSCoder): id; message 'initWithCoder:';
  26. end;
  27. {$endif}