Positioning changes are now reflected properly by the prefs. When changing positions...
[ITKit.git] / ITImageCell.h
1 /*
2  *      ITKit
3  *  ITImageCell
4  *    NSImageCell subclass which adds new features.
5  *
6  *  Original Author : Matt Judy <mjudy@ithinksw.com>
7  *   Responsibility : Matt Judy <mjudy@ithinksw.com>
8  *
9  *  Copyright (c) 2003 iThink Software.
10  *  All Rights Reserved
11  *
12  */
13  
14  
15 #import <Cocoa/Cocoa.h>
16
17
18 @interface ITImageCell : NSImageCell {
19
20     BOOL _scalesSmoothly;
21
22 }
23
24 - (BOOL)scalesSmoothly;
25 - (void)setScalesSmoothly:(BOOL)flag;
26
27
28 @end