root/tags/2D16/AICustomTabDragWindow.h

Revision 2558, 1.0 kB (checked in by eridius, 3 years ago)

Remove all trailing whitespace from lines
Remove indentation on blank lines

Line 
1 //
2 //  AICustomTabDragWindow.h
3 //  Adium
4 //
5 //  Created by Adam Iser on Sat Mar 06 2004.
6 //  Copyright (c) 2004 __MyCompanyName__. All rights reserved.
7 //
8
9 @class ESFloater;
10 @class AICustomTabsView;
11 @class AICustomTabCell;
12
13 @interface AICustomTabDragWindow : NSObject {
14         NSImage                         *floaterTabImage;
15         NSImage                         *floaterWindowImage;
16         ESFloater                       *dragTabFloater;
17         ESFloater                       *dragWindowFloater;
18         BOOL                            fullWindow;
19
20         BOOL                            useFancyAnimations;
21 }
22
23 + (AICustomTabDragWindow *)dragWindowForCustomTabView:(AICustomTabsView *)inTabView cell:(AICustomTabCell *)inTabCell transparent:(BOOL)transparent;
24 - (void)setDisplayingFullWindow:(BOOL)fullWindow animate:(BOOL)animate;
25 - (void)moveToPoint:(NSPoint)inPoint;
26 - (NSImage *)dragTabImageForTabCell:(AICustomTabCell *)tabCell inCustomTabsView:(AICustomTabsView *)customTabsView;
27 - (NSImage *)dragWindowImageForWindow:(NSWindow *)window customTabsView:(AICustomTabsView *)customTabsView tabCell:(AICustomTabCell *)tabCell;
28 - (NSImage *)dragImage;
29 - (void)closeWindow;
30
31 @end
Note: See TracBrowser for help on using the browser.