/*
* ITKit
- * ITBevelView
- * NSView subclass which draws a bevel.
+ * ITBevelView.h
*
- * Original Author : Matt Judy <mjudy@ithinksw.com>
- * Responsibility : Matt 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 iThink Software.
*
*/
-/*
- * 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