Licensing MenuTunes under the GNU General Public License version 2.
[MenuTunes.git] / StatusWindow.h
index 4b678bc..6fb8602 100755 (executable)
@@ -1,29 +1,30 @@
 /*
  *     MenuTunes
- *  StatusWindow
- *    ITTransientStatusWindow subclass for MenuTunes
+ *     StatusWindow.h
  *
- *  Original Author : Matthew Judy <mjudy@ithinksw.com>
- *   Responsibility : Matthew Judy <mjudy@ithinksw.com>
+ *     ITTransientStatusWindow subclass for MenuTunes.
  *
- *  Copyright (c) 2003 iThink Software.
- *  All Rights Reserved
+ *     Copyright (c) 2003 iThink Software
  *
  */
 
-
 #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)buildImageWindowWithImage:(NSImage *)image;
+- (void)buildTextWindowWithString:(id)text;
 - (void)buildMeterWindowWithCharacter:(NSString *)character
                                  size:(float)size
                                 count:(int)count
@@ -34,5 +35,6 @@
                               target:(id)target
                        defaultAction:(SEL)okAction
                      alternateAction:(SEL)alternateAction;
-                         
+
+- (void)updateTime:(NSString *)time range:(NSRange)range;
 @end