Huge audit of ITKit, mostly everything has been updated to current coding
[ITKit.git] / ITButtonCell.h
1 /*
2  *      ITKit
3  *      ITButtonCell.h
4  *
5  *      Custom NSButtonCell subclass that provides a stylized bezel style for use
6  *              with ITStatusWindows.
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 typedef enum _ITBezelStyle {
18         ITGrayRoundedBezelStyle = 1001
19 } ITBezelStyle;
20
21 @interface ITButtonCell : NSButtonCell {
22         ITBezelStyle _subStyle;
23 }
24
25 @end