6ef284475391b8629c57b0757cf8def5c2f19b42
[ITKit.git] / Deprecated / ITChasingArrowsView.h
1 /*
2  *      ITKit
3  *  ITChasingArrowsView
4  *    Animating Asynchronous Arrows Widget
5  *    *** DEPRECATED: NSProgressIndicator now offers an async mode.  MLJ - 01/14/2003
6  *
7  *  Original Author : Doug Brown <...>
8  *   Responsibility : Matthew Judy <mjudy@ithinksw.com>
9  *   Responsibility : Joseph Spiros <joseph.spiros@ithinksw.com>
10  *
11  *  Copyright (c) 2002 - 2003 iThink Software.
12  *  All Rights Reserved
13  *
14  */
15
16
17 #import <Cocoa/Cocoa.h>
18
19
20 @interface ITChasingArrowsView : NSView
21 {
22     BOOL running, inForeground;
23     int curIndex;
24     NSTimer *timer;
25     NSArray *images;
26 }
27
28 - (IBAction)stop:(id)sender;
29 - (IBAction)start:(id)sender;
30
31
32 @end