X-Git-Url: http://git.ithinksw.org/ITKit.git/blobdiff_plain/a8daf8ac0972b8b5b582a97b50889fec447f45a4..f7665c2fca31bcea0750b3de74e0aedba934b153:/ITSplashScreen.h diff --git a/ITSplashScreen.h b/ITSplashScreen.h new file mode 100644 index 0000000..40ac83c --- /dev/null +++ b/ITSplashScreen.h @@ -0,0 +1,25 @@ +/* ITSplashScreen */ + +#import + +@class ITSplashWindow, ITSplashView; + +@interface ITSplashScreen : NSObject +{ + NSTimer *_fadeTimer; + ITSplashWindow *_window; + ITSplashView *_view; +} ++ (ITSplashScreen *)sharedController; + +- (double)progressValue; +- (void)setProgressValue:(double)progress; +- (NSImage *)image; +- (void)setImage:(NSImage *)image; +- (NSString *)string; +- (void)setString:(NSString *)string; +- (void)setSettingsPath:(NSString *)path; + +- (void)showSplashWindow; +- (void)closeSplashWindow; +@end