PDFDestination.inc 1.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445
  1. { Parsed from PDFKit.framework PDFDestination.h }
  2. { Types from PDFDestination }
  3. {$ifdef TYPES}
  4. {$endif}
  5. {$ifdef TYPES}
  6. type
  7. PDFDestinationPtr = ^PDFDestination;
  8. {$endif}
  9. {$if (MAC_OS_X_VERSION_MAX_ALLOWED >= MAC_OS_X_VERSION_10_5)}
  10. {$ifdef TYPES}
  11. const
  12. kPDFDestinationUnspecifiedValue = FLT_MAX;
  13. {$endif}
  14. {$endif}
  15. {$ifdef CLASSES}
  16. type
  17. PDFDestination = objcclass external (NSObject, NSCopyingProtocol)
  18. private
  19. _pdfPriv: PDFDestinationPrivateVars;
  20. public
  21. function initWithPage_atPoint (page: PDFPage; point: NSPoint): id; message 'initWithPage:atPoint:';
  22. function page: PDFPage; message 'page';
  23. function point: NSPoint; message 'point';
  24. {$if (MAC_OS_X_VERSION_MAX_ALLOWED >= MAC_OS_X_VERSION_10_7)}
  25. function zoom: CGFloat; message 'zoom';
  26. procedure setZoom (zoom_: CGFloat); message 'setZoom:';
  27. {$endif}
  28. {$if (MAC_OS_X_VERSION_MAX_ALLOWED >= MAC_OS_X_VERSION_10_5)}
  29. function compare (destination: PDFDestination): NSComparisonResult; message 'compare:';
  30. {$endif}
  31. { Adopted protocols }
  32. function copyWithZone (zone: NSZonePtr): id; message 'copyWithZone:';
  33. end;
  34. {$endif}