Added sizing to the main status window class, and added a basic icon and
[ITKit.git] / ITIconAndTextStatusWindow.h
diff --git a/ITIconAndTextStatusWindow.h b/ITIconAndTextStatusWindow.h
new file mode 100755 (executable)
index 0000000..9955f04
--- /dev/null
@@ -0,0 +1,25 @@
+/*
+ *     ITKit
+ *  ITIconAndTextStatusWindow
+ *    ITTransientStatusWindow subclass to show an icon and text.
+ *
+ *  Original Author : Kent Sutherland <ksutherland@ithinksw.com>
+ *   Responsibility : Kent Sutherland <mjudy@ithinksw.com>
+ *   Responsibility : Joseph Spiros <joseph.spiros@ithinksw.com>
+ *
+ *  Copyright (c) 2002 - 2004 iThink Software.
+ *  All Rights Reserved
+ *
+ */
+
+#import <Cocoa/Cocoa.h>
+#import "ITTransientStatusWindow.h"
+
+@interface ITIconAndTextStatusWindow : ITTransientStatusWindow {
+        NSImage            *_image;
+}
+
+- (void)setImage:(NSImage *)newImage;
+- (void)buildTextWindowWithString:(NSString *)text;
+
+@end