X-Git-Url: http://git.ithinksw.org/ITKit.git/blobdiff_plain/676d1feebedb6b04b4da4bb58b3ca1282d7740f5..7a218424c6a92eb4979564a7260f862edd46052d:/ITImageView.m diff --git a/ITImageView.m b/ITImageView.m old mode 100755 new mode 100644 index 228e2f4..de903dd --- a/ITImageView.m +++ b/ITImageView.m @@ -1,110 +1,87 @@ #import "ITImageView.h" #import "ITImageCell.h" - @implementation ITImageView - -+ (void)initialize -{ - if ( self == [ITImageView class] ) { - [self setCellClass:[ITImageCell class]]; - } ++ (void)initialize { + if (self == [ITImageView class]) { + [self setCellClass:[ITImageCell class]]; + } } -+ (Class)cellClass -{ - return [ITImageCell class]; ++ (Class)cellClass { + return [ITImageCell class]; } -- (id)initWithFrame:(NSRect)rect -{ - if ( (self = [super initWithFrame:rect]) ) { - [self setScalesSmoothly:YES]; - } - - return self; +- (id)initWithFrame:(NSRect)rect { + if ((self = [super initWithFrame:rect])) { + [self setScalesSmoothly:YES]; + } + return self; } -- (BOOL)scalesSmoothly -{ - return [[self cell] scalesSmoothly]; +- (BOOL)scalesSmoothly { + return [[self cell] scalesSmoothly]; } -- (void)setScalesSmoothly:(BOOL)flag -{ - [[self cell] setScalesSmoothly:flag]; +- (void)setScalesSmoothly:(BOOL)flag { + [[self cell] setScalesSmoothly:flag]; } -- (BOOL)castsShadow; -{ - return [[self cell] castsShadow]; +- (BOOL)castsShadow { + return [[self cell] castsShadow]; } -- (void)setCastsShadow:(BOOL)newSetting; -{ - [[self cell] setCastsShadow:newSetting]; +- (void)setCastsShadow:(BOOL)newSetting { + [[self cell] setCastsShadow:newSetting]; } -- (float)shadowElevation; -{ - return [[self cell] shadowElevation]; +- (float)shadowElevation { + return [[self cell] shadowElevation]; } -- (void)setShadowElevation:(float)newElevation; -{ - [[self cell] setShadowElevation:newElevation]; +- (void)setShadowElevation:(float)newElevation { + [[self cell] setShadowElevation:newElevation]; } -- (float)shadowAzimuth; -{ - return [[self cell] shadowAzimuth]; +- (float)shadowAzimuth { + return [[self cell] shadowAzimuth]; } -- (void)setShadowAzimuth:(float)newAzimuth; -{ - [[self cell] setShadowAzimuth:newAzimuth]; +- (void)setShadowAzimuth:(float)newAzimuth { + [[self cell] setShadowAzimuth:newAzimuth]; } -- (float)shadowAmbient; -{ - return [[self cell] shadowAmbient]; +- (float)shadowAmbient { + return [[self cell] shadowAmbient]; } -- (void)setShadowAmbient:(float)newAmbient; -{ - [[self cell] setShadowAmbient:newAmbient]; +- (void)setShadowAmbient:(float)newAmbient { + [[self cell] setShadowAmbient:newAmbient]; } -- (float)shadowHeight; -{ - return [[self cell] shadowHeight]; +- (float)shadowHeight { + return [[self cell] shadowHeight]; } -- (void)setShadowHeight:(float)newHeight; -{ - [[self cell] setShadowHeight:newHeight]; +- (void)setShadowHeight:(float)newHeight { + [[self cell] setShadowHeight:newHeight]; } -- (float)shadowRadius; -{ - return [[self cell] shadowRadius]; +- (float)shadowRadius { + return [[self cell] shadowRadius]; } -- (void)setShadowRadius:(float)newRadius; -{ - [[self cell] setShadowRadius:newRadius]; +- (void)setShadowRadius:(float)newRadius { + [[self cell] setShadowRadius:newRadius]; } -- (float)shadowSaturation; -{ - return [[self cell] shadowSaturation]; +- (float)shadowSaturation { + return [[self cell] shadowSaturation]; } -- (void)setShadowSaturation:(float)newSaturation; -{ - [[self cell] setShadowSaturation:newSaturation]; +- (void)setShadowSaturation:(float)newSaturation { + [[self cell] setShadowSaturation:newSaturation]; } - -@end +@end \ No newline at end of file