Renamed the product from GrowlITTSW to ITTSW. Added image size customization options...
[GrowlITTSW.git] / GrowlITTSWWindow.h
1 #import <Cocoa/Cocoa.h>
2 #import <ITKit/ITKit.h>
3
4 #define SMALL_DIVISOR       1.33333
5 #define MINI_DIVISOR        1.66667
6
7 @interface GrowlITTSWWindow : ITTransientStatusWindow {
8         NSImage *_image;
9         NSTextField *_textField;
10 }
11
12 - (void)setImage:(NSImage *)newImage;
13 - (void)buildTextWindowWithString:(id)text;
14
15 @end