Bumping to version 1.0.1, which uses the latest ITKit. This resolves GrowlITTSW bug #4.
[GrowlITTSW.git] / GrowlITTSWController.h
1 /*
2  *      GrowlITTSW
3  *      GrowlITTSWController.h
4  *
5  *      Copyright (c) 2009 iThink Software
6  *
7  */
8
9 #import <Cocoa/Cocoa.h>
10 #import <ITFoundation/ITSharedController.h>
11 #import "GrowlITTSWWindow.h"
12
13 @interface GrowlITTSWController : ITSharedController {
14         GrowlITTSWWindow *_window;
15         float _imageSize;
16         BOOL _imageNoUpscale;
17         BOOL _wrapNotifications;
18         int _wrapColumns;
19 }
20
21 - (void)showWindowWithTitle:(NSString *)title desc:(NSString *)desc image:(NSImage *)image;
22
23 @end