Keep the EKEzvOutgoingFileTransfer.m around so long as it is sending, regardless...
[adiumx.git] / Source / AIAnimatingListOutlineView.h
blob65ff014188192f67057c181fc20e0de5b1e3a54a
1 //
2 // AIAnimatingListOutlineView.h
3 // Adium
4 //
5 // Created by Evan Schoenberg on 6/8/07.
6 //
8 #import <Cocoa/Cocoa.h>
9 #import <Adium/AIListOutlineView.h>
11 @interface AIAnimatingListOutlineView : AIListOutlineView {
12 BOOL enableAnimation;
14 NSMutableDictionary *allAnimatingItemsDict;
15 NSMutableSet *animations;
16 int animationsCount;
17 NSSize animationHedgeFactor;
19 BOOL disableExpansionAnimation;
22 - (void)setEnableAnimation:(BOOL)shouldEnable;
23 - (BOOL)enableAnimation;
25 @end