Fixed the state for the playlists menu item to show the currently playing playlist.
[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 #define SMALL_DIVISOR       1.33333
19 #define MINI_DIVISOR        1.66667
20
21 @interface StatusWindow : ITTransientStatusWindow {
22     NSImage            *_image;
23     BOOL                _locked;
24 }
25
26 - (void)setImage:(NSImage *)newImage;
27 - (void)setLocked:(BOOL)flag;
28
29 - (void)buildTextWindowWithString:(id)text;
30 - (void)buildMeterWindowWithCharacter:(NSString *)character
31                                  size:(float)size
32                                 count:(int)count
33                                active:(int)active;
34 - (void)buildDialogWindowWithMessage:(NSString *)message
35                        defaultButton:(NSString *)title
36                      alternateButton:(NSString *)title
37                               target:(id)target
38                        defaultAction:(SEL)okAction
39                      alternateAction:(SEL)alternateAction;
40                          
41 @end