root/tags/2C10/ESFloater.h

Revision 2046, 0.7 kB (checked in by timothy, 4 years ago)

Add the title to the dragged tab window.

Line 
1 //
2 //  ESFloater.h
3 //  Adium
4 //
5 //  Created by Evan Schoenberg on Wed Oct 08 2003.
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 - (void)moveFloaterToPoint:(NSPoint)inPoint;
20 - (IBAction)close:(id)sender;
21 - (void)endFloater;
22 - (void)setImage:(NSImage *)inImage;
23 - (NSImage *)image;
24 - (void)setVisible:(BOOL)inVisible animate:(BOOL)animate;
25 - (void)setMaxOpacity:(float)inMaxOpacity;
26
27 @end
Note: See TracBrowser for help on using the browser.