Added ITSplashScreen stuff. Added ITSplashScreen.h to ITKit header.
[ITKit.git] / ITSplashView.h
diff --git a/ITSplashView.h b/ITSplashView.h
new file mode 100644 (file)
index 0000000..359bd3c
--- /dev/null
@@ -0,0 +1,24 @@
+//
+//  ITSplashView.h
+//  SplashScreen
+//
+//  Created by Kent Sutherland on 11/22/04.
+//  Copyright 2004 __MyCompanyName__. All rights reserved.
+//
+
+#import <Cocoa/Cocoa.h>
+
+@interface ITSplashView : NSView
+{
+       NSImage *_image;
+       NSProgressIndicator *_progress;
+       NSTextField *_text;
+}
+- (void)stopAnimation;
+- (NSProgressIndicator *)progressIndicator;
+- (NSImage *)image;
+- (NSString *)string;
+- (void)setImage:(NSImage *)image;
+- (void)setString:(NSString *)text;
+- (void)loadControlsFromPath:(NSString *)path;
+@end