Added notes to the TODO. Matt, please check and modify TODO as required :)
[MenuTunes.git] / StatusWindow.h
index 1d0f552..3fbc7be 100755 (executable)
@@ -1,20 +1,36 @@
 /*
  *     MenuTunes
  *  StatusWindow
- *    ...
+ *    ITTransientStatusWindow subclass for MenuTunes
  *
- *  Original Author : Kent Sutherland <ksuther@ithinksw.com>
- *   Responsibility : Kent Sutherland <ksuther@ithinksw.com>
+ *  Original Author : Matthew Judy <mjudy@ithinksw.com>
+ *   Responsibility : Matthew Judy <mjudy@ithinksw.com>
  *
- *  Copyright (c) 2002 iThink Software.
+ *  Copyright (c) 2003 iThink Software.
  *  All Rights Reserved
  *
  */
 
 
 #import <Cocoa/Cocoa.h>
+#import <ITKit/ITKit.h>
 
-@interface StatusWindow : NSWindow
-{
+
+#define SW_PAD    24.0
+#define SW_SPACE  24.0
+#define SW_MINW   211.0
+#define SW_BORDER 32.0
+
+
+@interface StatusWindow : ITTransientStatusWindow {
+    NSImage      *image;
+    NSString     *text;
+    NSImageView  *imageView;
+    ITTextField  *textField;
 }
+
+- (void)setImage:(NSImage *)newImage;
+- (void)setText:(NSString *)newText;
+
+
 @end