Huge audit of ITKit, mostly everything has been updated to current coding
[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 by iThink Software.
9  *      All Rights Reserved.
10  *
11  *      $Id$
12  *
13  */
14
15 #import <Cocoa/Cocoa.h>
16
17 @interface ITBevelView : NSView {
18         int _bevelDepth;
19 }
20
21 - (int)bevelDepth;
22 - (void)setBevelDepth:(int)newDepth;
23
24 @end