-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathSBAppToAppTransitionView.h
40 lines (36 loc) · 1.11 KB
/
SBAppToAppTransitionView.h
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
/**
* This header is generated by class-dump-z 0.2a.
* class-dump-z is Copyright (C) 2009 by KennyTM~, licensed under GPLv3.
*
* Source: (null)
*/
#import <XXUnknownSuperclass.h> // Unknown library
#import "SpringBoard-Structs.h"
@class CATransformLayer, CALayer, UIView, SBApplication;
@interface SBAppToAppTransitionView : XXUnknownSuperclass {
id _delegate;
SBApplication* _toApplication;
CATransformLayer* _transformLayer;
CALayer* _startLayer;
CALayer* _stopLayer;
UIView* _fromView;
UIView* _toView;
BOOL _animating;
BOOL _workspaceIsReadyForAnimationCleanup;
int _orientation;
}
@property(assign, nonatomic) id delegate;
@property(retain, nonatomic) SBApplication* toApp;
@property(assign, nonatomic) int orientation;
-(id)initWithFrame:(CGRect)frame;
-(void)dealloc;
-(void)setFromView:(id)view;
-(void)setToView:(id)view;
-(void)beginTransition;
-(void)endTransition;
-(void)noteWorkspaceIsReadyForAnimationCleanupWithActivatingApp:(id)activatingApp;
-(void)animationDidStop:(id)animation finished:(BOOL)finished;
-(id)_rotationValueFunction;
-(float)_rotationRadians;
-(void)_transitionBegun:(double)begun;
@end