Bumping to version 1.0.1, which uses the latest ITKit. This resolves GrowlITTSW bug #4.
[GrowlITTSW.git] / GrowlITTSWWindow.h
1 /*
2  *      GrowlITTSW
3  *      GrowlITTSWWindow.h
4  *
5  *      Copyright (c) 2009 iThink Software
6  *
7  */
8
9 #import <Cocoa/Cocoa.h>
10 #import <ITKit/ITKit.h>
11
12 #define SMALL_DIVISOR       1.33333
13 #define MINI_DIVISOR        1.66667
14
15 @interface GrowlITTSWWindow : ITTransientStatusWindow {
16         NSImage *_image;
17         NSTextField *_textField;
18 }
19
20 - (void)setImage:(NSImage *)newImage;
21 - (void)buildTextWindowWithString:(id)text;
22
23 @end