X-Git-Url: http://git.ithinksw.org/MenuTunes.git/blobdiff_plain/6e879de483fcc0349bb3720d1eb8ae74dc6d3803..0948b4b6166bbee8caefca1278b6551d264068a8:/StatusWindow.h diff --git a/StatusWindow.h b/StatusWindow.h index d5dfb6e..4b678bc 100755 --- a/StatusWindow.h +++ b/StatusWindow.h @@ -1,20 +1,38 @@ /* * MenuTunes * StatusWindow - * ... + * ITTransientStatusWindow subclass for MenuTunes * - * Original Author : Kent Sutherland - * Responsibility : Kent Sutherland + * Original Author : Matthew Judy + * Responsibility : Matthew Judy * - * Copyright (c) 2002 The iThink Group. + * Copyright (c) 2003 iThink Software. * All Rights Reserved * */ #import +#import -@interface StatusWindow : NSWindow -{ +@interface StatusWindow : ITTransientStatusWindow { + NSImage *_image; + BOOL _locked; } + +- (void)setImage:(NSImage *)newImage; +- (void)setLocked:(BOOL)flag; + +- (void)buildTextWindowWithString:(NSString *)text; +- (void)buildMeterWindowWithCharacter:(NSString *)character + size:(float)size + count:(int)count + active:(int)active; +- (void)buildDialogWindowWithMessage:(NSString *)message + defaultButton:(NSString *)title + alternateButton:(NSString *)title + target:(id)target + defaultAction:(SEL)okAction + alternateAction:(SEL)alternateAction; + @end