NSEPSImageRep.inc 699 B

12345678910111213141516171819202122232425
  1. { Parsed from AppKit.framework NSEPSImageRep.h }
  2. {$ifdef TYPES}
  3. type
  4. NSEPSImageRepPtr = ^NSEPSImageRep;
  5. {$endif}
  6. {$ifdef CLASSES}
  7. type
  8. NSEPSImageRep = objcclass external (NSImageRep)
  9. private
  10. _bBoxOrigin: NSPoint;
  11. _epsData: NSData;
  12. _pdfImageRep: NSPDFImageRep;
  13. public
  14. class function imageRepWithData (epsData: NSData): instancetype; message 'imageRepWithData:';
  15. function initWithData (epsData: NSData): instancetype; message 'initWithData:';
  16. procedure prepareGState; message 'prepareGState'; deprecated 'in 10_0, 10_10';
  17. function EPSRepresentation: NSData; message 'EPSRepresentation';
  18. function boundingBox: NSRect; message 'boundingBox';
  19. end;
  20. {$endif}