NSPathComponentCell.inc 920 B

123456789101112131415161718192021222324252627282930313233343536373839
  1. { Parsed from AppKit.framework NSPathComponentCell.h }
  2. {$ifdef TYPES}
  3. type
  4. NSPathComponentCellPtr = ^NSPathComponentCell;
  5. {$endif}
  6. {$ifdef CLASSES}
  7. type
  8. NSPathComponentCell = objcclass external (NSTextFieldCell)
  9. private
  10. _image: NSImage;
  11. _fullWidth: CGFloat;
  12. _resizedWidth: CGFloat;
  13. _currentWidth: CGFloat;
  14. _url: NSURL;
  15. _flags: bitpacked record
  16. case byte of
  17. 0: (_anonBitField__flags0: cuint);
  18. 1: (
  19. shouldDrawArrow: 0..1;
  20. drawsAsNavigationBar: 0..1;
  21. isFirstItem: 0..1;
  22. isLastItem: 0..1;
  23. isDropTarget: 0..1;
  24. reserved: 0..((1 shl 27)-1);
  25. );
  26. end;
  27. _aux: id;
  28. public
  29. procedure setImage(newValue: NSImage); message 'setImage:';
  30. function image: NSImage; message 'image';
  31. procedure setURL(newValue: NSURL); message 'setURL:';
  32. function URL: NSURL; message 'URL';
  33. end;
  34. {$endif}