Updating plists and versioning to release 1.5.1.
[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 @interface StatusWindow : ITTransientStatusWindow {
19     NSImage            *_image;
20     BOOL                _locked;
21 }
22
23 - (void)setImage:(NSImage *)newImage;
24 - (void)setLocked:(BOOL)flag;
25
26 - (void)buildTextWindowWithString:(NSString *)text;
27 - (void)buildMeterWindowWithCharacter:(NSString *)character
28                                  size:(float)size
29                                 count:(int)count
30                                active:(int)active;
31 - (void)buildDialogWindowWithMessage:(NSString *)message
32                        defaultButton:(NSString *)title
33                      alternateButton:(NSString *)title
34                               target:(id)target
35                        defaultAction:(SEL)okAction
36                      alternateAction:(SEL)alternateAction;
37                          
38 @end