summaryrefslogtreecommitdiff
path: root/packages/cocoaint/src/appkit/NSEPSImageRep.inc
blob: fcb23c1b2f26a58c56d9265b49e5d77e725b1cfb (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
{ Parsed from AppKit.framework NSEPSImageRep.h }


{$ifdef TYPES}
type
  NSEPSImageRepPtr = ^NSEPSImageRep;
{$endif}

{$ifdef CLASSES}

type
  NSEPSImageRep = objcclass external (NSImageRep)
  private
    _bBoxOrigin: NSPoint;
    _epsData: NSData;
    _pdfImageRep: NSPDFImageRep;
  public
    class function imageRepWithData (epsData: NSData): instancetype; message 'imageRepWithData:';
    function initWithData (epsData: NSData): instancetype; message 'initWithData:';
    procedure prepareGState; message 'prepareGState'; deprecated 'in 10_0, 10_10';
    function EPSRepresentation: NSData; message 'EPSRepresentation';
    function boundingBox: NSRect; message 'boundingBox';
  end;
{$endif}