Initial commit of GrowlITTSW. Currently, all settings are hardcoded.
[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 }
16
17 - (void)showWindowWithText:(NSString *)text image:(NSImage *)image;
18
19 @end