Um, yeah. Started working on this and did some work getting everything on the same...
[MenuTunes.git] / StatusWindowController.h
1 /*
2  *      MenuTunes
3  *  StatusWindowController
4  *    ...
5  *
6  *  Original Author : Kent Sutherland <ksuther@ithinksw.com>
7  *   Responsibility : Kent Sutherland <ksuther@ithinksw.com>
8  *
9  *  Copyright (c) 2002 The iThink Group.
10  *  All Rights Reserved
11  *
12  */
13
14
15 #import <Cocoa/Cocoa.h>
16
17 @class StatusWindow;
18
19 @interface StatusWindowController : NSObject
20 {
21     IBOutlet NSTextField *statusField;
22     IBOutlet StatusWindow *statusWindow;
23 }
24 - (void)setUpcomingSongs:(NSString *)string numSongs:(int)songs;
25 - (void)setTrackInfo:(NSString *)string lines:(int)lines;
26 - (void)fadeWindowOut;
27 @end