X-Git-Url: http://git.ithinksw.org/ITKit.git/blobdiff_plain/90261ef2a4b2facc14c3c05a5a6e586e900a4f94..fc20fb5991f57d35d0483a29d8a4c8f7775e7969:/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