git.ithinksw.org
/
MenuTunes.git
/ blobdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
raw
|
inline
| side by side
A couple more modifications, as well as some comments to ease others'
[MenuTunes.git]
/
StatusWindow.h
diff --git
a/StatusWindow.h
b/StatusWindow.h
index
1d0f552
..
3fbc7be
100755
(executable)
--- a/
StatusWindow.h
+++ b/
StatusWindow.h
@@
-1,20
+1,36
@@
/*
* MenuTunes
* StatusWindow
/*
* MenuTunes
* StatusWindow
- *
...
+ *
ITTransientStatusWindow subclass for MenuTunes
*
*
- * Original Author :
Kent Sutherland <ksuther
@ithinksw.com>
- * Responsibility :
Kent Sutherland <ksuther
@ithinksw.com>
+ * Original Author :
Matthew Judy <mjudy
@ithinksw.com>
+ * Responsibility :
Matthew Judy <mjudy
@ithinksw.com>
*
*
- * Copyright (c) 200
2
iThink Software.
+ * Copyright (c) 200
3
iThink Software.
* All Rights Reserved
*
*/
#import <Cocoa/Cocoa.h>
* All Rights Reserved
*
*/
#import <Cocoa/Cocoa.h>
+#import <ITKit/ITKit.h>
-@interface StatusWindow : NSWindow
-{
+
+#define SW_PAD 24.0
+#define SW_SPACE 24.0
+#define SW_MINW 211.0
+#define SW_BORDER 32.0
+
+
+@interface StatusWindow : ITTransientStatusWindow {
+ NSImage *image;
+ NSString *text;
+ NSImageView *imageView;
+ ITTextField *textField;
}
}
+
+- (void)setImage:(NSImage *)newImage;
+- (void)setText:(NSString *)newText;
+
+
@end
@end