Huge audit of ITKit, mostly everything has been updated to current coding
[ITKit.git] / ITStatusItem.h
1 /*
2  *      ITKit
3  *      ITStatusItem.h
4  *
5  *      NSStatusItem subclass which attempts to approximate NSMenuExtra's
6  *              appearance and functionality.
7  *
8  *      Copyright (c) 2005 by iThink Software.
9  *      All Rights Reserved.
10  *
11  *      $Id$
12  *
13  */
14
15 #import <Cocoa/Cocoa.h>
16
17 @interface ITStatusItem : NSStatusItem {
18
19 }
20
21 - (id)initWithStatusBar:(NSStatusBar *)statusBar withLength:(float)length;
22
23 - (NSImage *)alternateImage;
24 - (void)setAlternateImage:(NSImage *)image;
25
26 @end