NSActionCell.inc 613 B

123456789101112131415161718192021222324252627
  1. { Parsed from AppKit.framework NSActionCell.h }
  2. {$ifdef TYPES}
  3. type
  4. NSActionCellPtr = ^NSActionCell;
  5. {$endif}
  6. {$ifdef CLASSES}
  7. type
  8. NSActionCell = objcclass external (NSCell)
  9. private
  10. _tag: NSInteger;
  11. _target: id;
  12. _action: SEL;
  13. _controlView: id;
  14. public
  15. procedure setTarget(newValue: id); message 'setTarget:';
  16. function target: id; message 'target';
  17. procedure setAction(newValue: SEL); message 'setAction:';
  18. function action: SEL; message 'action';
  19. procedure setTag(newValue: NSInteger); message 'setTag:';
  20. function tag: NSInteger; message 'tag';
  21. end;
  22. {$endif}