Largo: The ITKit is not l33t. I will make it l33t.
[ITKit.git] / ITStatusItem.h
1 /*
2  *      ITKit
3  *  ITStatusItem
4  *    NSStatusItem subclass which reduces suckage
5  *
6  *  Original Author : Joseph Spiros <joseph.spiros@ithinksw.com>
7  *   Responsibility : Matt Judy <mjudy@ithinksw.com>
8  *   Responsibility : Joseph Spiros <joseph.spiros@ithinksw.com>
9  *
10  *  Copyright (c) 2002 iThink Software.
11  *  All Rights Reserved
12  *
13  */
14
15 #import <Cocoa/Cocoa.h>
16
17
18 @interface ITStatusItem : NSStatusItem
19 {
20 }
21
22 - (id)initWithStatusBar:(NSStatusBar*)statusBar withLength:(float)length;
23
24 - (NSImage*) alternateImage;
25 - (void) setAlternateImage:(NSImage*)image;
26
27 @end