Fixing project references due to the previous upgrade from .xcode to .xcodeproj.
[MenuTunes.git] / StatusWindow.h
index 4b678bc..d44de93 100755 (executable)
 #import <Cocoa/Cocoa.h>
 #import <ITKit/ITKit.h>
 
+#define SMALL_DIVISOR       1.33333
+#define MINI_DIVISOR        1.66667
+
 @interface StatusWindow : ITTransientStatusWindow {
     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
@@ -34,5 +38,6 @@
                               target:(id)target
                        defaultAction:(SEL)okAction
                      alternateAction:(SEL)alternateAction;
-                         
+
+- (void)updateTime:(NSString *)time range:(NSRange)range;
 @end