blob: 4d2b890c4b321ed68a75e042e48def0a38784ac3 (
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
|
{ Parsed from Appkit.framework NSCustomImageRep.h }
{$ifdef TYPES}
{$ifndef NSCUSTOMIMAGEREP_PAS_T}
{$define NSCUSTOMIMAGEREP_PAS_T}
{$endif}
{$endif}
{$ifdef RECORDS}
{$ifndef NSCUSTOMIMAGEREP_PAS_R}
{$define NSCUSTOMIMAGEREP_PAS_R}
{$endif}
{$endif}
{$ifdef FUNCTIONS}
{$ifndef NSCUSTOMIMAGEREP_PAS_F}
{$define NSCUSTOMIMAGEREP_PAS_F}
{$endif}
{$endif}
{$ifdef EXTERNAL_SYMBOLS}
{$ifndef NSCUSTOMIMAGEREP_PAS_S}
{$define NSCUSTOMIMAGEREP_PAS_S}
{$endif}
{$endif}
{$ifdef FORWARD}
NSCustomImageRep = objcclass;
NSCustomImageRepPointer = ^NSCustomImageRep;
NSCustomImageRepPtr = NSCustomImageRepPointer;
{$endif}
{$ifdef CLASSES}
{$ifndef NSCUSTOMIMAGEREP_PAS_C}
{$define NSCUSTOMIMAGEREP_PAS_C}
{ NSCustomImageRep }
NSCustomImageRep = objcclass external (NSImageRep)
private
_drawMethod: SEL;
_drawObject: id;
_reserved: cuint;
public
function initWithDrawSelector_delegate(aMethod: SEL; anObject: id): id; message 'initWithDrawSelector:delegate:';
function drawSelector: SEL; message 'drawSelector';
function delegate: id; message 'delegate';
end;
{$endif}
{$endif}
|