Fixed a bug whereby notifications without a description would not appear, as well...
[GrowlITTSW.git] / GrowlITTSWController.h
1 //
2 //  GrowlITTSWController.h
3 //  Growl
4 //
5 //  Created by Joseph Spiros on 2/28/09.
6 //  Copyright 2009 iThink Software. All rights reserved.
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