#import <Cocoa/Cocoa.h>
#import <ITKit/ITKit.h>
-
-#define SW_PAD 24.0
-#define SW_SPACE 24.0
-#define SW_MINW 211.0
-#define SW_BORDER 32.0
-#define SW_METER_PAD 4.0
-
-
@interface StatusWindow : ITTransientStatusWindow {
- NSImage *_image;
- BOOL _locked;
+ NSImage *_image;
+ BOOL _locked;
}
- (void)setImage:(NSImage *)newImage;
- (void)buildTextWindowWithString:(NSString *)text;
- (void)buildMeterWindowWithCharacter:(NSString *)character
+ size:(float)size
count:(int)count
active:(int)active;
- (void)buildDialogWindowWithMessage:(NSString *)message
alternateButton:(NSString *)title
target:(id)target
defaultAction:(SEL)okAction
- alternateAction:(SEL)alternateAction;
+ alternateAction:(SEL)alternateAction;
@end