PDFAnnotationPopup.inc 520 B

12345678910111213141516171819202122
  1. { Parsed from PDFKit.framework PDFAnnotationPopup.h }
  2. {$ifdef TYPES}
  3. type
  4. PDFAnnotationPopupPtr = ^PDFAnnotationPopup;
  5. {$endif}
  6. {$if (MAC_OS_X_VERSION_MAX_ALLOWED >= MAC_OS_X_VERSION_10_5)}
  7. {$ifdef CLASSES}
  8. type
  9. PDFAnnotationPopup = objcclass external (PDFAnnotation, NSCopyingProtocol, NSCodingProtocol)
  10. private
  11. _pdfPriv2: PDFAnnotationPopupPrivateVars;
  12. public
  13. function isOpen: ObjCBOOL; message 'isOpen';
  14. procedure setIsOpen (isOpen_: ObjCBOOL); message 'setIsOpen:';
  15. end;
  16. {$endif}
  17. {$endif}