Another cleanup that doesn't seem to actually help
[ITKit.git] / ITBevelView.h
1 /*
2  *      ITKit
3  *  ITBevelView
4  *    NSView subclass which draws a bevel.
5  *
6  *  Original Author : Matthew Judy <mjudy@ithinksw.com>
7  *   Responsibility : Matthew Judy <mjudy@ithinksw.com>
8  *
9  *  Copyright (c) 2003 iThink Software.
10  *  All Rights Reserved
11  *
12  */
13
14 /*
15  *      Draws a bevel of specified thickness, and resizes
16  *  its first subview to fill the remaining space.
17  */
18
19
20 #import <Cocoa/Cocoa.h>
21
22
23 @interface ITBevelView : NSView {
24     int  _bevelDepth;
25 }
26
27 - (int)bevelDepth;
28 - (void)setBevelDepth:(int)newDepth;
29
30
31 @end