Setting an EQ preset now enables the Equalizer (definitely a "duh" move)
[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 #define SW_METER_PAD   4.0
24
25
26 @interface StatusWindow : ITTransientStatusWindow {
27     NSImage  *_image;
28     BOOL      _locked;
29 }
30
31 - (void)setImage:(NSImage *)newImage;
32 - (void)setLocked:(BOOL)flag;
33
34 - (void)buildTextWindowWithString:(NSString *)text;
35 - (void)buildMeterWindowWithCharacter:(NSString *)character
36                                 count:(int)count
37                                active:(int)active;
38 - (void)buildDialogWindowWithMessage:(NSString *)message
39                        defaultButton:(NSString *)title
40                      alternateButton:(NSString *)title
41                               target:(id)target
42                        defaultAction:(SEL)okAction
43                      alternateAction:(SEL)alternateAction;           
44                          
45 @end