Unescape the HREF attribute's text before passing it to NSURL which does not expect...
[adiumx.git] / Source / AIOutlineViewAnimation.h
blobda33d3ee1e542e78238367f88506fdc8d385184b
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;
19 + (AIOutlineViewAnimation *)listObjectAnimationWithDictionary:(NSDictionary *)inDict
20 delegate:(AIAnimatingListOutlineView *)inOutlineView;
22 @end