]> git.saurik.com Git - iphone-api.git/blob - UIKit/UIViewAnimation.h
Commit the Preferences folder (for WinterBoard).
[iphone-api.git] / UIKit / UIViewAnimation.h
1 /*
2 * Generated by class-dump 3.1.2.
3 *
4 * class-dump is Copyright (C) 1997-1998, 2000-2001, 2004-2007 by Steve Nygard.
5 */
6
7 #import <Foundation/NSObject.h>
8
9 @class UIView;
10
11 @interface UIViewAnimation : NSObject
12 {
13 UIView *_view;
14 struct CGRect _endRect;
15 float _endAlpha;
16 float _startFraction;
17 float _endFraction;
18 int _curve;
19 BOOL _animateFromCurrentPosition;
20 BOOL _shouldDeleteAfterAnimation;
21 BOOL _editing;
22 }
23
24 - (id)initWithView:(id)fp8 endRect:(struct CGRect)fp12 endAlpha:(float)fp28 startFraction:(float)fp32 endFraction:(float)fp36 curve:(int)fp40 animateFromCurrentPosition:(BOOL)fp44 shouldDeleteAfterAnimation:(BOOL)fp48 editing:(BOOL)fp52;
25 - (void)dealloc;
26 - (BOOL)editing;
27 - (BOOL)shouldDeleteAfterAnimation;
28 - (BOOL)animateFromCurrentPosition;
29 - (int)curve;
30 - (float)endFraction;
31 - (float)startFraction;
32 - (float)endAlpha;
33 - (struct CGRect)endRect;
34 - (id)view;
35
36 @end
37