|
Revision 3072, 1.0 kB
(checked in by timothy, 3 years ago)
|
Major file system restructuring of the code files.
|
| Line | |
|---|
| 1 |
|
|---|
| 2 |
|
|---|
| 3 |
|
|---|
| 4 |
|
|---|
| 5 |
|
|---|
| 6 |
|
|---|
| 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 |
|---|