359bd3c86f7039697b744e7fd89a2d7b54d00718
[ITKit.git] / ITSplashView.h
1 //
2 //  ITSplashView.h
3 //  SplashScreen
4 //
5 //  Created by Kent Sutherland on 11/22/04.
6 //  Copyright 2004 __MyCompanyName__. All rights reserved.
7 //
8
9 #import <Cocoa/Cocoa.h>
10
11 @interface ITSplashView : NSView
12 {
13         NSImage *_image;
14         NSProgressIndicator *_progress;
15         NSTextField *_text;
16 }
17 - (void)stopAnimation;
18 - (NSProgressIndicator *)progressIndicator;
19 - (NSImage *)image;
20 - (NSString *)string;
21 - (void)setImage:(NSImage *)image;
22 - (void)setString:(NSString *)text;
23 - (void)loadControlsFromPath:(NSString *)path;
24 @end