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