summaryrefslogtreecommitdiff
path: root/packages/cocoaint/src/foundation/NSPointerArray.inc
blob: fd3ccdcc78adf32e8a3fee3170f3e0b97aac34ce (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
{ Parsed from Foundation.framework NSPointerArray.h }


{ Types from NSPointerArrayConveniences }
{$ifdef TYPES}

{$endif}


{$ifdef TYPES}
type
  NSPointerArrayPtr = ^NSPointerArray;
{$endif}

{$ifdef CLASSES}

type
  NSPointerArray = objcclass external (NSObject, NSFastEnumerationProtocol, NSCopyingProtocol, NSCodingProtocol)
  public
    function initWithOptions (options: NSPointerFunctionsOptions): instancetype; message 'initWithOptions:'; { NS_DESIGNATED_INITIALIZER }
    function initWithPointerFunctions (functions: NSPointerFunctions): instancetype; message 'initWithPointerFunctions:'; { NS_DESIGNATED_INITIALIZER }
    class function pointerArrayWithOptions (options: NSPointerFunctionsOptions): NSPointerArray; message 'pointerArrayWithOptions:';
    class function pointerArrayWithPointerFunctions (functions: NSPointerFunctions): NSPointerArray; message 'pointerArrayWithPointerFunctions:';
    function pointerFunctions: NSPointerFunctions; message 'pointerFunctions';
    function pointerAtIndex (index: NSUInteger): pointer; message 'pointerAtIndex:';
    procedure addPointer (pointer_: pointer); message 'addPointer:';
    procedure removePointerAtIndex (index: NSUInteger); message 'removePointerAtIndex:';
    procedure insertPointer_atIndex (item: pointer; index: NSUInteger); message 'insertPointer:atIndex:';
    procedure replacePointerAtIndex_withPointer (index: NSUInteger; item: pointer); message 'replacePointerAtIndex:withPointer:';
    procedure compact; message 'compact';
    procedure setCount(newValue: NSUInteger); message 'setCount:';
    function count: NSUInteger; message 'count';

    { Adopted protocols }
    function copyWithZone (zone: NSZonePtr): id; message 'copyWithZone:';
    function countByEnumeratingWithState_objects_count (state: NSFastEnumerationStatePtr; buffer: idPtr { variable size array of id }; len: NSUInteger): NSUInteger; message 'countByEnumeratingWithState:objects:count:';
    procedure encodeWithCoder (aCoder: NSCoder); message 'encodeWithCoder:';
    function initWithCoder (aDecoder: NSCoder): id; message 'initWithCoder:';
  end;


type
  NSPointerArrayConveniences = objccategory external (NSPointerArray)
    class function strongObjectsPointerArray: NSPointerArray; message 'strongObjectsPointerArray'; { available in 10_8, 6_0 }
    class function weakObjectsPointerArray: NSPointerArray; message 'weakObjectsPointerArray'; { available in 10_8, 6_0 }
    function allObjects: NSArray; message 'allObjects';
  end;
{$endif}