/*
* ITKit
- * ITBevelView
- * NSView subclass which draws a bevel.
+ * ITBevelView.h
*
- * Original Author : Matthew Judy <mjudy@ithinksw.com>
- * Responsibility : Matthew Judy <mjudy@ithinksw.com>
+ * NSView subclass which draws a bevel of specified thickness, and resizes its
+ * first subview to fill the remaining space.
*
- * Copyright (c) 2003 iThink Software.
- * All Rights Reserved
+ * Copyright (c) 2005 by iThink Software.
+ * All Rights Reserved.
+ *
+ * $Id$
*
*/
-/*
- * Draws a bevel of specified thickness, and resizes
- * its first subview to fill the remaining space.
- */
-
-
#import <Cocoa/Cocoa.h>
-
@interface ITBevelView : NSView {
- int _bevelDepth;
+ int _bevelDepth;
}
- (int)bevelDepth;
- (void)setBevelDepth:(int)newDepth;
-
-@end
+@end
\ No newline at end of file