X-Git-Url: http://git.ithinksw.org/ITKit.git/blobdiff_plain/1de0d30d4a40f983a45b41ce98f297bbe435ef24..63956bb9f9984a26dc8147615be854e93ccc6b50:/ITTSWBackgroundView.h diff --git a/ITTSWBackgroundView.h b/ITTSWBackgroundView.h index ff56e90..7c80758 100755 --- a/ITTSWBackgroundView.h +++ b/ITTSWBackgroundView.h @@ -14,8 +14,23 @@ #import +typedef enum _ITTSWBackgroundMode { + ITTSWBackgroundApple, + ITTSWBackgroundReadable, + ITTSWBackgroundColored +} ITTSWBackgroundMode; + + @interface ITTSWBackgroundView : NSView { - NSBezierPath *_path; + NSBezierPath *_path; + NSColor *_color; + ITTSWBackgroundMode _mode; } +- (ITTSWBackgroundMode)backgroundMode; +- (void)setBackgroundMode:(ITTSWBackgroundMode)newMode; + +- (NSColor *)backgroundColor; +- (void)setBackgroundColor:(NSColor *)newColor; + @end