9955f0487dbdabbfdd2ccdddba7dc922d693a1a4
[ITKit.git] / ITIconAndTextStatusWindow.h
1 /*
2  *      ITKit
3  *  ITIconAndTextStatusWindow
4  *    ITTransientStatusWindow subclass to show an icon and text.
5  *
6  *  Original Author : Kent Sutherland <ksutherland@ithinksw.com>
7  *   Responsibility : Kent Sutherland <mjudy@ithinksw.com>
8  *   Responsibility : Joseph Spiros <joseph.spiros@ithinksw.com>
9  *
10  *  Copyright (c) 2002 - 2004 iThink Software.
11  *  All Rights Reserved
12  *
13  */
14
15 #import <Cocoa/Cocoa.h>
16 #import "ITTransientStatusWindow.h"
17
18 @interface ITIconAndTextStatusWindow : ITTransientStatusWindow {
19         NSImage            *_image;
20 }
21
22 - (void)setImage:(NSImage *)newImage;
23 - (void)buildTextWindowWithString:(NSString *)text;
24
25 @end