Project fixes so that stuff builds, updates to the Background view, tweaks all over.
[ITKit.git] / ITTSWBackgroundView.h
index ff56e90..7c80758 100755 (executable)
 #import <Cocoa/Cocoa.h>
 
 
+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