NSPathControlItem.inc 713 B

12345678910111213141516171819202122232425
  1. { Parsed from AppKit.framework NSPathControlItem.h }
  2. {$ifdef TYPES}
  3. type
  4. NSPathControlItemPtr = ^NSPathControlItem;
  5. {$endif}
  6. {$ifdef CLASSES}
  7. type
  8. NSPathControlItem = objcclass external (NSObject)
  9. private
  10. _secretCell: NSPathComponentCell;
  11. public
  12. procedure setTitle(newValue: NSString); message 'setTitle:';
  13. function title: NSString; message 'title';
  14. procedure setAttributedTitle(newValue: NSAttributedString); message 'setAttributedTitle:';
  15. function attributedTitle: NSAttributedString; message 'attributedTitle';
  16. procedure setImage(newValue: NSImage); message 'setImage:';
  17. function image: NSImage; message 'image';
  18. function URL: NSURL; message 'URL';
  19. end;
  20. {$endif}