40ac83cd4cbd4cf1d78577fbbef37b9b77e12238
[ITKit.git] / ITSplashScreen.h
1 /* ITSplashScreen */
2
3 #import <Cocoa/Cocoa.h>
4
5 @class ITSplashWindow, ITSplashView;
6
7 @interface ITSplashScreen : NSObject
8 {
9         NSTimer *_fadeTimer;
10         ITSplashWindow *_window;
11         ITSplashView *_view;
12 }
13 + (ITSplashScreen *)sharedController;
14
15 - (double)progressValue;
16 - (void)setProgressValue:(double)progress;
17 - (NSImage *)image;
18 - (void)setImage:(NSImage *)image;
19 - (NSString *)string;
20 - (void)setString:(NSString *)string;
21 - (void)setSettingsPath:(NSString *)path;
22
23 - (void)showSplashWindow;
24 - (void)closeSplashWindow;
25 @end