X-Git-Url: https://git.saurik.com/iphone-api.git/blobdiff_plain/f8d8a1a9bf3e8cbbb8a04dacfcd3257f1d560b63..2cd8f71baf5b8e3f2fc334a69a08a31948c2bd7c:/UIKit/UIImage.h diff --git a/UIKit/UIImage.h b/UIKit/UIImage.h new file mode 100644 index 0000000..6e4292f --- /dev/null +++ b/UIKit/UIImage.h @@ -0,0 +1,54 @@ +/* + * Generated by class-dump 3.1.2. + * + * class-dump is Copyright (C) 1997-1998, 2000-2001, 2004-2007 by Steve Nygard. + */ + +#import + +typedef enum { + UIImageOrientationUp, // default orientation + UIImageOrientationDown, // 180 deg rotation + UIImageOrientationLeft, // 90 deg CCW + UIImageOrientationRight, // 90 deg CW + UIImageOrientationUpMirrored, // as above but image mirrored along other axis. horizontal flip + UIImageOrientationDownMirrored, // horizontal flip + UIImageOrientationLeftMirrored, // vertical flip + UIImageOrientationRightMirrored, // vertical flip +} UIImageOrientation; + +@interface UIImage : NSObject +{ + void *_imageRef; + struct { + unsigned int named:1; + unsigned int imageOrientation:3; + unsigned int cached:1; + unsigned int stretchable:1; + } _imageFlags; +} + ++ (void)initialize; ++ (id)imageNamed:(id)fp8; ++ (id)imageWithContentsOfFile:(id)fp8; ++ (id)imageWithData:(id)fp8; ++ (id)imageWithCGImage:(struct CGImage *)fp8; +- (id)initWithContentsOfFile:(id)fp8; +- (id)initWithData:(id)fp8; +- (id)initWithCGImage:(struct CGImage *)fp8; +- (void)dealloc; +- (struct CGImage *)CGImage; +- (struct CGSize)size; +- (int)imageOrientation; +- (void)drawAtPoint:(struct CGPoint)fp8; +- (void)drawAtPoint:(struct CGPoint)fp8 blendMode:(int)fp16 alpha:(float)fp20; +- (void)drawInRect:(struct CGRect)fp8; +- (void)drawInRect:(struct CGRect)fp8 blendMode:(int)fp24 alpha:(float)fp28; +- (void)drawAsPatternInRect:(struct CGRect)fp8; +- (int)leftCapWidth; +- (int)topCapHeight; +- (id)stretchableImageWithLeftCapWidth:(int)fp8 topCapHeight:(int)fp12; +- (id)_automationID; + +@end +