X-Git-Url: http://git.ithinksw.org/ITKit.git/blobdiff_plain/22ddc2ccf5a32acf25445656e9c14e22a62835c9..HEAD:/ITTSWBackgroundView.h diff --git a/ITTSWBackgroundView.h b/ITTSWBackgroundView.h old mode 100755 new mode 100644 index 8d49143..76d923b --- a/ITTSWBackgroundView.h +++ b/ITTSWBackgroundView.h @@ -1,21 +1,31 @@ /* * ITKit - * ITGrayRoundedView - * NSView subclass which draws a translucent background with rounded corners. + * ITTSWBackgroundView.h * - * Original Author : Matt Judy - * Responsibility : Matt Judy + * NSView subclass which draws a translucent background with rounded corners. * - * Copyright (c) 2002 - 2003 iThink Software. - * All Rights Reserved + * Copyright (c) 2005 iThink Software * */ #import +typedef enum _ITTSWBackgroundMode { + ITTSWBackgroundApple, + ITTSWBackgroundReadable, + ITTSWBackgroundColored +} ITTSWBackgroundMode; -@interface ITGrayRoundedView : NSView { - NSBezierPath *_path; +@interface ITTSWBackgroundView : NSView { + NSBezierPath *_path; + NSColor *_color; + ITTSWBackgroundMode _mode; } -@end +- (ITTSWBackgroundMode)backgroundMode; +- (void)setBackgroundMode:(ITTSWBackgroundMode)newMode; + +- (NSColor *)backgroundColor; +- (void)setBackgroundColor:(NSColor *)newColor; + +@end \ No newline at end of file