root/tags/2C10/AICustomTabDragWindow.h

Revision 1823, 1.0 kB (checked in by timothy, 4 years ago)

Moved Colloquy to a pre-compiled header. Removed all #imports that are part of the Cocoa, WebKit? and AGRegex frameworks. Removed all @class declarations that are part of the Cocoa frameworks.

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.