|
Revision 2050, 0.8 kB
(checked in by eridius, 4 years ago)
|
Got rid of a couple of warnings
|
| Line | |
|---|
| 1 |
|
|---|
| 2 |
|
|---|
| 3 |
|
|---|
| 4 |
|
|---|
| 5 |
|
|---|
| 6 |
|
|---|
| 7 |
|
|---|
| 8 |
#import <Foundation/Foundation.h> |
|---|
| 9 |
|
|---|
| 10 |
@interface ESFloater : NSObject { |
|---|
| 11 |
NSImageView *staticView; |
|---|
| 12 |
NSPanel *panel; |
|---|
| 13 |
BOOL windowIsVisible; |
|---|
| 14 |
NSTimer *visibilityTimer; |
|---|
| 15 |
float maxOpacity; |
|---|
| 16 |
} |
|---|
| 17 |
|
|---|
| 18 |
+ (id)floaterWithImage:(NSImage *)inImage styleMask:(unsigned int)styleMask title:(NSString *) title; |
|---|
| 19 |
- (id)initWithImage:(NSImage *)inImage styleMask:(unsigned int)styleMask title:(NSString *) title; |
|---|
| 20 |
- (void)moveFloaterToPoint:(NSPoint)inPoint; |
|---|
| 21 |
- (IBAction)close:(id)sender; |
|---|
| 22 |
- (void)endFloater; |
|---|
| 23 |
- (void)setImage:(NSImage *)inImage; |
|---|
| 24 |
- (NSImage *)image; |
|---|
| 25 |
- (void)setVisible:(BOOL)inVisible animate:(BOOL)animate; |
|---|
| 26 |
- (void)setMaxOpacity:(float)inMaxOpacity; |
|---|
| 27 |
|
|---|
| 28 |
@end |
|---|