X-Git-Url: http://git.ithinksw.org/MenuTunes.git/blobdiff_plain/93f1f93114865d18b5870f04763c921ff33b8e59..b27aba7ff5351d788e6250b7dd0e38c15a001817:/StatusWindow.h diff --git a/StatusWindow.h b/StatusWindow.h index c97566c..d44de93 100755 --- a/StatusWindow.h +++ b/StatusWindow.h @@ -1,8 +1,43 @@ -/* StatusWindow */ +/* + * MenuTunes + * StatusWindow + * ITTransientStatusWindow subclass for MenuTunes + * + * Original Author : Matthew Judy + * Responsibility : Matthew Judy + * + * Copyright (c) 2003 iThink Software. + * All Rights Reserved + * + */ + #import +#import + +#define SMALL_DIVISOR 1.33333 +#define MINI_DIVISOR 1.66667 -@interface StatusWindow : NSWindow -{ +@interface StatusWindow : ITTransientStatusWindow { + NSImage *_image; + BOOL _locked; + NSTextField *_textField; } + +- (void)setImage:(NSImage *)newImage; +- (void)setLocked:(BOOL)flag; + +- (void)buildTextWindowWithString:(id)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; + +- (void)updateTime:(NSString *)time range:(NSRange)range; @end