Use initialize, not load, wherever possible.
[adiumx.git] / Source / AIOutlineViewAnimation.h
blob47bcbf1d6d5a3115f0e88ca1fe857ce5a92dfb63
1 //
2 // AIOutlineViewAnimation.h
3 // Adium
4 //
5 // Created by Evan Schoenberg on 6/9/07.
6 //
8 #import <Cocoa/Cocoa.h>
10 @class AIAnimatingListOutlineView;
12 #define LIST_OBJECT_ANIMATION_DURATION .5
13 #define EXPANSION_DURATION .15
15 @interface AIOutlineViewAnimation : NSAnimation {
16 NSDictionary *dict;
17 AIAnimatingListOutlineView *outlineView;
20 + (AIOutlineViewAnimation *)listObjectAnimationWithDictionary:(NSDictionary *)inDict
21 outlineView:(AIAnimatingListOutlineView *)inOutlineView;
23 @end