X-Git-Url: http://git.ithinksw.org/MenuTunes.git/blobdiff_plain/2bf1aae48a3e29857c86221d87b7841322e48423..8c8ad0b57aee475a9b03939aa932d96610587c25:/StatusWindow.h diff --git a/StatusWindow.h b/StatusWindow.h new file mode 100755 index 0000000..3fbc7be --- /dev/null +++ b/StatusWindow.h @@ -0,0 +1,36 @@ +/* + * MenuTunes + * StatusWindow + * ITTransientStatusWindow subclass for MenuTunes + * + * Original Author : Matthew Judy + * Responsibility : Matthew Judy + * + * Copyright (c) 2003 iThink Software. + * All Rights Reserved + * + */ + + +#import +#import + + +#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