git.ithinksw.org
/
ITKit.git
/ blobdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
raw
|
inline
| side by side
Some more code cleanup, converting spaces to tabs. Redid ITKit.h framework
[ITKit.git]
/
ITTSWBackgroundView.h
diff --git
a/ITTSWBackgroundView.h
b/ITTSWBackgroundView.h
old mode 100755
(executable)
new mode 100644
(file)
index
ff56e90
..
fc95c8d
--- a/
ITTSWBackgroundView.h
+++ b/
ITTSWBackgroundView.h
@@
-1,21
+1,34
@@
/*
* ITKit
/*
* ITKit
- * ITTSWBackgroundView
- * NSView subclass which draws a translucent background with rounded corners.
+ * ITTSWBackgroundView.h
*
*
- * Original Author : Matt Judy <mjudy@ithinksw.com>
- * Responsibility : Matt Judy <mjudy@ithinksw.com>
+ * NSView subclass which draws a translucent background with rounded corners.
*
*
- * Copyright (c) 2002 - 2003 iThink Software.
- * All Rights Reserved
+ * Copyright (c) 2005 by iThink Software.
+ * All Rights Reserved.
+ *
+ * $Id$
*
*/
#import <Cocoa/Cocoa.h>
*
*/
#import <Cocoa/Cocoa.h>
+typedef enum _ITTSWBackgroundMode {
+ ITTSWBackgroundApple,
+ ITTSWBackgroundReadable,
+ ITTSWBackgroundColored
+} ITTSWBackgroundMode;
@interface ITTSWBackgroundView : NSView {
@interface ITTSWBackgroundView : NSView {
- NSBezierPath *_path;
+ 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