Removing the use of private CoreGraphics APIs to draw shadows, and replacing with...
[ITKit.git] / ITIconAndTextStatusWindow.h
1 /*
2  *      ITKit
3  *      ITIconAndTextStatusWindow.h
4  *
5  *      ITTransientStatusWindow subclass to show an icon and text.
6  *
7  *      Copyright (c) 2005 iThink Software
8  *
9  */
10
11 #import <Cocoa/Cocoa.h>
12 #import <ITKit/ITTransientStatusWindow.h>
13
14 @interface ITIconAndTextStatusWindow : ITTransientStatusWindow {
15         NSImage *_image;
16 }
17
18 - (void)setImage:(NSImage *)newImage;
19 - (void)buildTextWindowWithString:(NSString *)text;
20
21 @end