Huge audit of ITKit, mostly everything has been updated to current coding
[ITKit.git] / ITImageCell.h
old mode 100755 (executable)
new mode 100644 (file)
index d3a9424..61c657f
@@ -1,32 +1,30 @@
 /*
  *     ITKit
- *  ITImageCell
- *    Cell used by the ITImageView control.
+ *     ITImageCell.h
  *
- *  Original Author : Matthew Judy <mjudy@ithinksw.com>
- *   Responsibility : Matthew Judy <mjudy@ithinksw.com>
+ *     Custom NSImageCell subclass that casts a shadow using CoreGraphics,
+ *             providing support for versions of Cocoa that don't have the NSShadow
+ *             class which was introduced in Mac OS X 10.3 (Panther), and also
+ *             provides smooth scaling.
  *
- *  Copyright (c) 2003 iThink Software.
- *  All Rights Reserved
+ *     Copyright (c) 2005 by iThink Software.
+ *     All Rights Reserved.
+ *
+ *     $Id$
  *
  */
-#import <Cocoa/Cocoa.h>
 
+#import <Cocoa/Cocoa.h>
 
 @interface ITImageCell : NSImageCell {
-
-    BOOL _scalesSmoothly;
-
-    BOOL  castsShadow;
-    
-    float shadowElevation;
-    float shadowAzimuth;
-    float shadowAmbient;
-    float shadowHeight;
-    float shadowRadius;
-    float shadowSaturation;
+       BOOL _scalesSmoothly;
+       BOOL castsShadow;
+       float shadowElevation;
+       float shadowAzimuth;
+       float shadowAmbient;
+       float shadowHeight;
+       float shadowRadius;
+       float shadowSaturation;
 }
 
 - (BOOL)scalesSmoothly;
 - (BOOL)castsShadow;
 - (void)setCastsShadow:(BOOL)newSetting;
 
-- (float)shadowElevation;              /* Light source elevation in degrees.  Defaults to 45.0 */
+- (float)shadowElevation; /* Light source elevation in degrees. Defaults to 45.0 */
 - (void)setShadowElevation:(float)newElevation;
 
-- (float)shadowAzimuth;                        /* Light source azimuth in degrees.  Defaults to 90.0 */
+- (float)shadowAzimuth; /* Light source azimuth in degrees. Defaults to 90.0 */
 - (void)setShadowAzimuth:(float)newAzimuth;
 
-- (float)shadowAmbient;                        /* Amount of ambient light.  Defaults to 0.15 */
+- (float)shadowAmbient; /* Amount of ambient light. Defaults to 0.15 */
 - (void)setShadowAmbient:(float)newAmbient;
 
-- (float)shadowHeight;                 /* Height above the canvas.  Defaults to 1.0 */
+- (float)shadowHeight; /* Height above the canvas. Defaults to 1.0 */
 - (void)setShadowHeight:(float)newHeight;
 
-- (float)shadowRadius;                 /* Blur radius.  Defaults to 4.0 */
+- (float)shadowRadius; /* Blur radius. Defaults to 4.0 */
 - (void)setShadowRadius:(float)newRadius;
 
-- (float)shadowSaturation;             /* Maximum saturation.  Defaults to 1.0 */
+- (float)shadowSaturation; /* Maximum saturation. Defaults to 1.0 */
 - (void)setShadowSaturation:(float)newSaturation;
 
-@end
+@end
\ No newline at end of file