Huge audit of ITKit, mostly everything has been updated to current coding
[ITKit.git] / ITSplashView.h
1 /*
2  *      ITKit
3  *      ITSplashView.h
4  *
5  *      Copyright (c) 2005 by iThink Software.
6  *      All Rights Reserved.
7  *
8  *      $Id$
9  *
10  */
11
12 #import <Cocoa/Cocoa.h>
13
14 @interface ITSplashView : NSView {
15         NSImage *_image;
16         NSProgressIndicator *_progress;
17         NSTextField *_text;
18 }
19
20 - (void)stopAnimation;
21 - (NSProgressIndicator *)progressIndicator;
22 - (NSImage *)image;
23 - (NSString *)string;
24 - (void)setImage:(NSImage *)image;
25 - (void)setString:(NSString *)text;
26 - (void)loadControlsFromPath:(NSString *)path;
27
28 @end