Fixed a bug in updateTime:
[MenuTunes.git] / StatusWindow.h
index 7bc9762..22c4d8f 100755 (executable)
 @interface StatusWindow : ITTransientStatusWindow {
     NSImage            *_image;
     BOOL                _locked;
+       NSTextField                *_textField;
 }
 
 - (void)setImage:(NSImage *)newImage;
 - (void)setLocked:(BOOL)flag;
 
+- (void)buildImageWindowWithImage:(NSImage *)image;
 - (void)buildTextWindowWithString:(id)text;
 - (void)buildMeterWindowWithCharacter:(NSString *)character
                                  size:(float)size
@@ -37,5 +39,6 @@
                               target:(id)target
                        defaultAction:(SEL)okAction
                      alternateAction:(SEL)alternateAction;
-                         
+
+- (void)updateTime:(NSString *)time range:(NSRange)range;
 @end