X-Git-Url: http://git.ithinksw.org/ITKit.git/blobdiff_plain/b25a3298676bd85e313a4707b6cc3051405bbcfd..3b1f9f1fd5958a8241495edf7c72d335ac302c68:/ITBevelView.h diff --git a/ITBevelView.h b/ITBevelView.h new file mode 100755 index 0000000..de07fd0 --- /dev/null +++ b/ITBevelView.h @@ -0,0 +1,31 @@ +/* + * ITKit + * ITBevelView + * NSView subclass which draws a bevel. + * + * Original Author : Matt Judy + * Responsibility : Matt Judy + * + * Copyright (c) 2003 iThink Software. + * All Rights Reserved + * + */ + +/* + * Draws a bevel of specified thickness, and resizes + * its first subview to fill the remaining space. + */ + + +#import + + +@interface ITBevelView : NSView { + int _bevelDepth; +} + +- (int)bevelDepth; +- (void)setBevelDepth:(int)newDepth; + + +@end