/*
* 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 The iThink Group.
+ * 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