Permalink
Cannot retrieve contributors at this time
Jump to Line
Fetching contributors…
| /** | |
| * This header is generated by class-dump-z 0.2a. | |
| * class-dump-z is Copyright (C) 2009 by KennyTM~, licensed under GPLv3. | |
| * | |
| * Source: /System/Library/Frameworks/UIKit.framework/UIKit | |
| */ | |
| #import <Availability2.h> | |
| #if __IPHONE_OS_VERSION_MAX_ALLOWED >= __IPHONE_3_2 | |
| #import <UIKit/UIViewController.h> | |
| #import <UIKit/UIGeometry.h> | |
| @class UIView, UIBookViewController; | |
| @protocol UIBookViewControllerDelegate | |
| @required | |
| // Returns the next page given the previous page (in the same side as the previous page). | |
| -(UIViewController*)bookViewController:(UIBookViewController*)bookViewController nextPage:(UIViewController*)oldPage; | |
| -(UIViewController*)bookViewController:(UIBookViewController*)bookViewController previousPage:(UIViewController*)oldPage; | |
| @optional | |
| -(void)bookViewController:(UIBookViewController*)bookViewController willBeginTurningPages:(int)pages animated:(BOOL)animated; | |
| -(void)bookViewController:(UIBookViewController*)bookViewController didEndTurningPages:(int)pages animated:(BOOL)animated; | |
| @end | |
| @interface UIBookViewController : UIViewController { | |
| @private | |
| id<UIBookViewControllerDelegate> _delegate; | |
| UIView* _contentView; | |
| UIViewController* _evenPage; | |
| UIViewController* _oddPage; | |
| UIViewController* _newEvenPage; | |
| UIViewController* _newOddPage; | |
| int _turnCount; | |
| int _animatedPageTurns; | |
| float _turnMargin; | |
| UIEdgeInsets _contentInset; | |
| double _turnDuration; | |
| } | |
| @property(assign, nonatomic) id<UIBookViewControllerDelegate> delegate; | |
| @property(retain, nonatomic) UIViewController* oddPage; // = right page | |
| @property(retain, nonatomic) UIViewController* evenPage; // = left page | |
| @property(assign, nonatomic) float turnMargin; | |
| @property(assign, nonatomic) UIEdgeInsets contentInset; | |
| @property(assign, nonatomic) double turnDuration; | |
| // inherited: -(id)initWithCoder:(id)coder; | |
| // inherited: -(id)initWithNibName:(id)nibName bundle:(id)bundle; | |
| // inherited: -(void)encodeWithCoder:(id)coder; | |
| // inherited: -(id)view; | |
| // inherited: -(void)dealloc; | |
| -(void)turnPages:(int)pages animated:(BOOL)animated; | |
| @end | |
| @interface UIBookViewController (Static) | |
| -(void)_setNewPage:(id)page isLeft:(BOOL)left; | |
| -(void)_positionPage:(id)page isLeft:(BOOL)left; | |
| -(void)_turnSinglePageAnimated; | |
| -(void)_setupCurlFilters; | |
| -(void)_startCurlAnimation; | |
| -(void)animationDidStop:(id)animation finished:(BOOL)finished; | |
| -(void)_turnAllPagesNonAnimated; | |
| -(void)_setupContentViewIfNecessary; | |
| @end | |
| #endif |