Removing the use of private CoreGraphics APIs to draw shadows, and replacing with...
[ITKit.git] / ITBevelView.h
1 /*
2  *      ITKit
3  *      ITBevelView.h
4  *
5  *      NSView subclass which draws a bevel of specified thickness, and resizes its
6  *              first subview to fill the remaining space.
7  *
8  *      Copyright (c) 2005 iThink Software.
9  *
10  */
11
12 #import <Cocoa/Cocoa.h>
13
14 @interface ITBevelView : NSView {
15         int _bevelDepth;
16 }
17
18 - (int)bevelDepth;
19 - (void)setBevelDepth:(int)newDepth;
20
21 @end