The dissolve, cut and slides all work properly now, I hope :D
[ITKit.git] / ITLED.h
1 /*
2  *      ITKit
3  *  ITLED
4  *    NSButton subclass which resembles an LED, suitable for use
5  *    in applications which utilize the Metal or Pro look.
6  *
7  *  Original Author : Matt Judy <mjudy@ithinksw.com>
8  *   Responsibility : Matt Judy <mjudy@ithinksw.com>
9  *
10  *  Copyright (c) 2002 - 2003 iThink Software.
11  *  All Rights Reserved
12  *
13  */
14
15
16 #import <Cocoa/Cocoa.h>
17
18
19 @interface ITLEDCell : NSActionCell {
20
21     NSColor *_ledColor;
22     BOOL     _state;
23
24 }
25
26 - (NSColor *)ledColor;
27 - (void)setLEDColor:(NSColor *)newColor;
28
29 @end
30
31
32 @interface ITLED : NSControl {
33
34 }
35
36 - (NSColor *)ledColor;
37 - (void)setLEDColor;
38
39 @end