4da918b20b720bc923dd24f73106b61ffab88d66
[ITKit.git] / ITImageCell.h
1 /*
2  *      ITKit
3  *  ITImageCell
4  *    Cell used by the ITImageView control.
5  *
6  *  Original Author : Matthew Judy <mjudy@ithinksw.com>
7  *   Responsibility : Matthew 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