Adding Kent's ITTabView class to the ITKit. Please add this class to ITKitTester.
[ITKit.git] / ITChasingArrowsView.h
1 /*
2  *      ITKit
3  *  ITStatusItem
4  *    NSStatusItem subclass which reduces suckage
5  *
6  *  Original Author : Doug Brown
7  *   Responsibility : Matt Judy <mjudy@ithinksw.com>
8  *   Responsibility : Joseph Spiros <joseph.spiros@ithinksw.com>
9  *
10  *  Copyright (c) 2002 iThink Software.
11  *  All Rights Reserved
12  *
13  */
14
15 #import <AppKit/AppKit.h>
16
17
18 @interface ITChasingArrowsView : NSView
19 {
20     BOOL running, inForeground;
21     int curIndex;
22     NSTimer *timer;
23     NSArray *images;
24 }
25
26 - (IBAction)stop:(id)sender;
27 - (IBAction)start:(id)sender;
28
29 @end