X-Git-Url: http://git.ithinksw.org/MenuTunes.git/blobdiff_plain/3b5e8f80a471ff88cd39e8c295276beb7c3412ec..b27aba7ff5351d788e6250b7dd0e38c15a001817:/StatusWindow.h diff --git a/StatusWindow.h b/StatusWindow.h index 6e72123..d44de93 100755 --- a/StatusWindow.h +++ b/StatusWindow.h @@ -15,24 +15,21 @@ #import #import - -#define SW_PAD 24.0 -#define SW_SPACE 24.0 -#define SW_MINW 211.0 -#define SW_BORDER 32.0 -#define SW_METER_PAD 4.0 - +#define SMALL_DIVISOR 1.33333 +#define MINI_DIVISOR 1.66667 @interface StatusWindow : ITTransientStatusWindow { - NSImage *_image; - BOOL _locked; + NSImage *_image; + BOOL _locked; + NSTextField *_textField; } - (void)setImage:(NSImage *)newImage; - (void)setLocked:(BOOL)flag; -- (void)buildTextWindowWithString:(NSString *)text; +- (void)buildTextWindowWithString:(id)text; - (void)buildMeterWindowWithCharacter:(NSString *)character + size:(float)size count:(int)count active:(int)active; - (void)buildDialogWindowWithMessage:(NSString *)message @@ -40,6 +37,7 @@ alternateButton:(NSString *)title target:(id)target defaultAction:(SEL)okAction - alternateAction:(SEL)alternateAction; - + alternateAction:(SEL)alternateAction; + +- (void)updateTime:(NSString *)time range:(NSRange)range; @end