aafb576bd38cf5ca51c0646a651d704e7f29a5bf
[ITKit.git] / ITImageView.h
1 /*
2  *      ITKit
3  *  ITImageView
4  *    NSImageView subclass which adds new features, such as smooth scaling.
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 ITImageView : NSImageView {
19
20 }
21
22 - (BOOL)scalesSmoothly;
23 - (void)setScalesSmoothly:(BOOL)flag;
24
25 @end