Another cleanup that doesn't seem to actually help
[ITKit.git] / ITButtonCell.h
1 /*
2  *      ITKit
3  *  ITButtonCell
4  *    Cell used by the ITButton control.
5  *
6  *  Original Author : Matthew Judy <mjudy@ithinksw.com>
7  *   Responsibility : Matthew Judy <mjudy@ithinksw.com>
8  *   Responsibility : Joseph Spiros <joseph.spiros@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 typedef enum _ITBezelStyle {
20     ITGrayRoundedBezelStyle  = 1001
21 } ITBezelStyle;
22
23
24 @interface ITButtonCell : NSButtonCell {
25
26     ITBezelStyle _subStyle;
27
28 }
29
30
31 @end