NSCIImageRep.inc 1.0 KB

1234567891011121314151617181920212223242526272829
  1. { Parsed from AppKit.framework NSCIImageRep.h }
  2. {$ifdef TYPES}
  3. type
  4. NSCIImageRepPtr = ^NSCIImageRep;
  5. {$endif}
  6. {$ifdef CLASSES}
  7. type
  8. NSCIImageRep = objcclass external (NSImageRep)
  9. private
  10. _ciImage: CIImage;
  11. public
  12. class function imageRepWithCIImage (image: CIImage): instancetype; message 'imageRepWithCIImage:';
  13. function initWithCIImage (image: CIImage): instancetype; message 'initWithCIImage:';
  14. function CIImage_: CIImage; message 'CIImage';
  15. end;
  16. type
  17. NSAppKitAdditions = objccategory external (CIImage)
  18. function initWithBitmapImageRep (bitmapImageRep: NSBitmapImageRep): instancetype; message 'initWithBitmapImageRep:';
  19. procedure drawInRect_fromRect_operation_fraction (rect: NSRect; fromRect: NSRect; op: NSCompositingOperation; delta: CGFloat); message 'drawInRect:fromRect:operation:fraction:';
  20. procedure drawAtPoint_fromRect_operation_fraction (point: NSPoint; fromRect: NSRect; op: NSCompositingOperation; delta: CGFloat); message 'drawAtPoint:fromRect:operation:fraction:';
  21. end;
  22. {$endif}