blob: 479a762c3e647e1810dc13e6d8cea7e88f613be6 (
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
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
|
{ Parsed from Appkit.framework NSToolbarItemGroup.h }
{$ifdef TYPES}
{$ifndef NSTOOLBARITEMGROUP_PAS_T}
{$define NSTOOLBARITEMGROUP_PAS_T}
{$endif}
{$endif}
{$ifdef RECORDS}
{$ifndef NSTOOLBARITEMGROUP_PAS_R}
{$define NSTOOLBARITEMGROUP_PAS_R}
{$endif}
{$endif}
{$ifdef FUNCTIONS}
{$ifndef NSTOOLBARITEMGROUP_PAS_F}
{$define NSTOOLBARITEMGROUP_PAS_F}
{$endif}
{$endif}
{$ifdef EXTERNAL_SYMBOLS}
{$ifndef NSTOOLBARITEMGROUP_PAS_S}
{$define NSTOOLBARITEMGROUP_PAS_S}
{$endif}
{$endif}
{$ifdef FORWARD}
NSToolbarItemGroup = objcclass;
NSToolbarItemGroupPointer = ^NSToolbarItemGroup;
NSToolbarItemGroupPtr = NSToolbarItemGroupPointer;
{$endif}
{$ifdef CLASSES}
{$ifndef NSTOOLBARITEMGROUP_PAS_C}
{$define NSTOOLBARITEMGROUP_PAS_C}
{ NSToolbarItemGroup }
NSToolbarItemGroup = objcclass external (NSToolbarItem)
private
_groupItems: id;
__giFlags: record
case byte of
0: (_anonbitfield_NSToolbarItemGroup0: cuint);
1: (data: bitpacked record
dirtiedLayout: 0..1;
reserved: 0..((1 shl 31)-1);
end;
);
end;
_giReserved: id;
public
procedure setSubitems(subitems_: NSArray); message 'setSubitems:';
function subitems: NSArray; message 'subitems';
end;
{$endif}
{$endif}
|