blob: cd1f8bd538f84bcf41db06c9ed2e60815fcfd26b (
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
|
{ Parsed from AppKit.framework NSCachedImageRep.h }
{$ifdef TYPES}
type
NSCachedImageRepPtr = ^NSCachedImageRep;
{$endif}
{$ifdef CLASSES}
type
NSCachedImageRep = objcclass external (NSImageRep)
private
_origin: NSPoint;
_window: NSWindow;
_cache: pointer;
public
function initWithWindow_rect (win: NSWindow; rect: NSRect): id; message 'initWithWindow:rect:'; deprecated 'in 10_0, 10_6';
function initWithSize_depth_separate_alpha (size_: NSSize; depth: NSWindowDepth; flag: ObjCBOOL; alpha: ObjCBOOL): id; message 'initWithSize:depth:separate:alpha:'; deprecated 'in 10_0, 10_6';
function window: NSWindow; message 'window'; deprecated 'in 10_0, 10_6';
function rect: NSRect; message 'rect'; deprecated 'in 10_0, 10_6';
end;
{$endif}
|