Removing the use of private CoreGraphics APIs to draw shadows, and replacing with...
[ITKit.git] / ITSplashView.h
1 /*
2  *      ITKit
3  *      ITSplashView.h
4  *
5  *      Copyright (c) 2005 iThink Software
6  *
7  */
8
9 #import <Cocoa/Cocoa.h>
10
11 @interface ITSplashView : NSView {
12         NSImage *_image;
13         NSProgressIndicator *_progress;
14         NSTextField *_text;
15 }
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
25 @end