blob: 86c490e7fac2c7674893416fe524774c33f438d6 (
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
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
|
{ Parsed from Appkit.framework NSColorSpace.h }
{$ifdef TYPES}
{$ifndef NSCOLORSPACE_PAS_T}
{$define NSCOLORSPACE_PAS_T}
{ Constants }
const
NSUnknownColorSpaceModel = -1;
NSGrayColorSpaceModel = 0;
NSRGBColorSpaceModel = 1;
NSCMYKColorSpaceModel = 2;
NSLABColorSpaceModel = 3;
NSDeviceNColorSpaceModel = 4;
NSIndexedColorSpaceModel = 5;
NSPatternColorSpaceModel = 6;
{ Types }
type
NSColorSpaceModel = NSInteger;
NSColorSpaceModelPtr = ^NSColorSpaceModel;
{$endif}
{$endif}
{$ifdef RECORDS}
{$ifndef NSCOLORSPACE_PAS_R}
{$define NSCOLORSPACE_PAS_R}
{$endif}
{$endif}
{$ifdef FUNCTIONS}
{$ifndef NSCOLORSPACE_PAS_F}
{$define NSCOLORSPACE_PAS_F}
{$endif}
{$endif}
{$ifdef EXTERNAL_SYMBOLS}
{$ifndef NSCOLORSPACE_PAS_S}
{$define NSCOLORSPACE_PAS_S}
{$endif}
{$endif}
{$ifdef FORWARD}
NSColorSpace = objcclass;
NSColorSpacePointer = ^NSColorSpace;
NSColorSpacePtr = NSColorSpacePointer;
{$endif}
{$ifdef CLASSES}
{$ifndef NSCOLORSPACE_PAS_C}
{$define NSCOLORSPACE_PAS_C}
{ NSColorSpace }
NSColorSpace = objcclass external (NSObject, NSCodingProtocol)
private
_profile: id;
__flags: record
case byte of
0: (_anonbitfield_NSColorSpace2: cuint);
1: (data: bitpacked record
colorSpaceID: 0..((1 shl 8)-1);
storageType: 0..((1 shl 3)-1);
replacedDuringUnarchiving: 0..1;
_anonbitfield_NSColorSpace0: 0..((1 shl 20)-1);
{$ifdef cpu64}
_anonbitfield_NSColorSpace1: 0..((1 shl 32)-1);
{$endif}
end;
);
end;
__cgColorSpace: Pointer;
_reserved: array[0..(5)-1] of Pointer;
public
function initWithICCProfileData(iccData: NSData): id; message 'initWithICCProfileData:';
function ICCProfileData: NSData; message 'ICCProfileData';
function initWithColorSyncProfile(prof: Pointer): id; message 'initWithColorSyncProfile:';
function colorSyncProfile: Pointer; message 'colorSyncProfile';
function initWithCGColorSpace(cgColorSpace_: CGColorSpaceRef): id; message 'initWithCGColorSpace:';
function CGColorSpace: CGColorSpaceRef; message 'CGColorSpace';
function numberOfColorComponents: NSInteger; message 'numberOfColorComponents';
function colorSpaceModel: NSColorSpaceModel; message 'colorSpaceModel';
function localizedName: NSString; message 'localizedName';
class function genericRGBColorSpace: NSColorSpace; message 'genericRGBColorSpace';
class function genericGrayColorSpace: NSColorSpace; message 'genericGrayColorSpace';
class function genericCMYKColorSpace: NSColorSpace; message 'genericCMYKColorSpace';
class function deviceRGBColorSpace: NSColorSpace; message 'deviceRGBColorSpace';
class function deviceGrayColorSpace: NSColorSpace; message 'deviceGrayColorSpace';
class function deviceCMYKColorSpace: NSColorSpace; message 'deviceCMYKColorSpace';
class function sRGBColorSpace: NSColorSpace; message 'sRGBColorSpace';
class function genericGamma22GrayColorSpace: NSColorSpace; message 'genericGamma22GrayColorSpace';
class function adobeRGB1998ColorSpace: NSColorSpace; message 'adobeRGB1998ColorSpace';
class function availableColorSpacesWithModel(model: NSColorSpaceModel): NSArray; message 'availableColorSpacesWithModel:';
{ Adopted Protocols }
procedure encodeWithCoder(aCoder: NSCoder);
function initWithCoder(aDecoder: NSCoder): id;
end;
{$endif}
{$endif}
|