ITKit for Menutunes
[ITKit.git] / Deprecated / ITChasingArrowsView.h
diff --git a/Deprecated/ITChasingArrowsView.h b/Deprecated/ITChasingArrowsView.h
new file mode 100755 (executable)
index 0000000..46ace83
--- /dev/null
@@ -0,0 +1,32 @@
+/*
+ *     ITKit
+ *  ITChasingArrowsView
+ *    Animating Asynchronous Arrows Widget
+ *    *** DEPRECATED: NSProgressIndicator now offers an async widget.  MLJ - 01/14/2003
+ *
+ *  Original Author : Doug Brown <...>
+ *   Responsibility : Matt Judy <mjudy@ithinksw.com>
+ *   Responsibility : Joseph Spiros <joseph.spiros@ithinksw.com>
+ *
+ *  Copyright (c) 2002 - 2003 iThink Software.
+ *  All Rights Reserved
+ *
+ */
+
+
+#import <Cocoa/Cocoa.h>
+
+
+@interface ITChasingArrowsView : NSView
+{
+    BOOL running, inForeground;
+    int curIndex;
+    NSTimer *timer;
+    NSArray *images;
+}
+
+- (IBAction)stop:(id)sender;
+- (IBAction)start:(id)sender;
+
+
+@end