summaryrefslogtreecommitdiff
path: root/packages/cocoaint/src/pdfkit/PDFActionRemoteGoTo.inc
blob: 092e56af4ddce9c64092ce51ee25b0f19c2fdd7f (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
26
27
{ Parsed from PDFKit.framework PDFActionRemoteGoTo.h }


{$ifdef TYPES}
type
  PDFActionRemoteGoToPtr = ^PDFActionRemoteGoTo;
{$endif}

{$if (MAC_OS_X_VERSION_MAX_ALLOWED >= MAC_OS_X_VERSION_10_5)}
{$ifdef CLASSES}

type
  PDFActionRemoteGoTo = objcclass external (PDFAction, NSCopyingProtocol)
  private
    _pdfPriv2: PDFActionRemoteGoToPrivateVars;
  public
    function initWithPageIndex_atPoint_fileURL (pageIndex: NSUInteger; point: NSPoint; url: NSURL): id; message 'initWithPageIndex:atPoint:fileURL:';
    function pageIndex: NSUInteger; message 'pageIndex';
    procedure setPageIndex (pageIndex_: NSUInteger); message 'setPageIndex:';
    function point: NSPoint; message 'point';
    procedure setPoint (point_: NSPoint); message 'setPoint:';
    function URL: NSURL; message 'URL';
    procedure setURL (url_: NSURL); message 'setURL:';
  end;
{$endif}

{$endif}