Added notes to the TODO. Matt, please check and modify TODO as required :)
[MenuTunes.git] / StatusWindow.h
1 /*
2  *      MenuTunes
3  *  StatusWindow
4  *    ITTransientStatusWindow subclass for MenuTunes
5  *
6  *  Original Author : Matthew Judy <mjudy@ithinksw.com>
7  *   Responsibility : Matthew Judy <mjudy@ithinksw.com>
8  *
9  *  Copyright (c) 2003 iThink Software.
10  *  All Rights Reserved
11  *
12  */
13
14
15 #import <Cocoa/Cocoa.h>
16 #import <ITKit/ITKit.h>
17
18
19 #define SW_PAD    24.0
20 #define SW_SPACE  24.0
21 #define SW_MINW   211.0
22 #define SW_BORDER 32.0
23
24
25 @interface StatusWindow : ITTransientStatusWindow {
26     NSImage      *image;
27     NSString     *text;
28     NSImageView  *imageView;
29     ITTextField  *textField;
30 }
31
32 - (void)setImage:(NSImage *)newImage;
33 - (void)setText:(NSString *)newText;
34
35
36 @end