Lots more stuff merged in. Added an ITImageView/ITImageCell object to allow smooth...
[ITKit.git] / ITImageCell.h
diff --git a/ITImageCell.h b/ITImageCell.h
new file mode 100755 (executable)
index 0000000..c4bb080
--- /dev/null
@@ -0,0 +1,28 @@
+/*
+ *     ITKit
+ *  ITImageCell
+ *    NSImageCell subclass which adds new features.
+ *
+ *  Original Author : Matt Judy <mjudy@ithinksw.com>
+ *   Responsibility : Matt Judy <mjudy@ithinksw.com>
+ *
+ *  Copyright (c) 2003 iThink Software.
+ *  All Rights Reserved
+ *
+ */
+#import <Cocoa/Cocoa.h>
+
+
+@interface ITImageCell : NSImageCell {
+
+    BOOL _scalesSmoothly;
+
+}
+
+- (BOOL)scalesSmoothly;
+- (void)setScalesSmoothly:(BOOL)flag;
+
+
+@end