Huge audit of ITKit, mostly everything has been updated to current coding
[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 by iThink Software.
8  *      All Rights Reserved.
9  *
10  *      $Id$
11  *
12  */
13
14 #import <Cocoa/Cocoa.h>
15 #import "ITTransientStatusWindow.h"
16
17 @interface ITIconAndTextStatusWindow : ITTransientStatusWindow {
18         NSImage *_image;
19 }
20
21 - (void)setImage:(NSImage *)newImage;
22 - (void)buildTextWindowWithString:(NSString *)text;
23
24 @end