Removing the use of private CoreGraphics APIs to draw shadows, and replacing with...
[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 iThink Software
9  *
10  */
11
12 #import <Cocoa/Cocoa.h>
13
14 typedef enum _ITBezelStyle {
15         ITGrayRoundedBezelStyle = 1001
16 } ITBezelStyle;
17
18 @interface ITButtonCell : NSButtonCell {
19         ITBezelStyle _subStyle;
20 }
21
22 @end