Why Gemfury? Push, build, and install  RubyGems npm packages Python packages Maven artifacts PHP packages Go Modules Debian packages RPM packages NuGet packages

Repository URL to install this package:

Details    
fpc-src / usr / share / fpcsrc / 3.2.0 / packages / cocoaint / src / appkit / NSCIImageRep.inc
Size: Mime:
{ Parsed from AppKit.framework NSCIImageRep.h }


{$ifdef TYPES}
type
  NSCIImageRepPtr = ^NSCIImageRep;
{$endif}

{$ifdef CLASSES}

type
  NSCIImageRep = objcclass external (NSImageRep)
  private
    _ciImage: CIImage;
  public
    class function imageRepWithCIImage (image: CIImage): instancetype; message 'imageRepWithCIImage:';
    function initWithCIImage (image: CIImage): instancetype; message 'initWithCIImage:';
    function CIImage_: CIImage; message 'CIImage';
  end;


type
  NSAppKitAdditions = objccategory external (CIImage)
    function initWithBitmapImageRep (bitmapImageRep: NSBitmapImageRep): instancetype; message 'initWithBitmapImageRep:';
    procedure drawInRect_fromRect_operation_fraction (rect: NSRect; fromRect: NSRect; op: NSCompositingOperation; delta: CGFloat); message 'drawInRect:fromRect:operation:fraction:';
    procedure drawAtPoint_fromRect_operation_fraction (point: NSPoint; fromRect: NSRect; op: NSCompositingOperation; delta: CGFloat); message 'drawAtPoint:fromRect:operation:fraction:';
  end;
{$endif}