00001
00002
00003
00004
00005
00006
00007 #import "NSObject.h"
00008
00009 @interface NSColorStub : NSObject
00010 {
00011 struct CGColor *cgColor;
00012 }
00013
00014 + (id)colorWithCalibratedRed:(float)fp8 green:(float)fp12 blue:(float)fp16 alpha:(float)fp20;
00015 + (id)colorWithDeviceRed:(float)fp8 green:(float)fp12 blue:(float)fp16 alpha:(float)fp20;
00016 + (id)colorWithCalibratedHue:(float)fp8 saturation:(float)fp12 brightness:(float)fp16 alpha:(float)fp20;
00017 + (id)whiteColor;
00018 + (id)blackColor;
00019 + (id)clearColor;
00020 + (id)colorWithPatternImage:(struct CGImage *)fp8;
00021 - (id)init;
00022 - (id)initWithGCColor:(struct CGColor *)fp8;
00023 - (id)copyWithZone:(struct _NSZone *)fp8;
00024 - (void)dealloc;
00025 - (id)colorUsingColorSpaceName:(id)fp8;
00026 - (id)colorSpaceName;
00027 - (struct CGColor *)cgColorRef;
00028 - (BOOL)isEqualToColor:(id)fp8;
00029 - (BOOL)isBlack;
00030 - (void)getRed:(float *)fp8 green:(float *)fp12 blue:(float *)fp16 alpha:(float *)fp20;
00031 - (float)redComponent;
00032 - (float)blueComponent;
00033 - (float)greenComponent;
00034 - (float)alphaComponent;
00035 - (void)set;
00036
00037 @end
00038