]> git.saurik.com Git - cydia.git/blame - UICaboodle/RVPage.h
Gracefully handle someone /deleting/ the firmware package.
[cydia.git] / UICaboodle / RVPage.h
CommitLineData
77f175ac
JF
1#import "UICaboodle.h"
2
20b8724d 3#import <UIKit/UIKit.h>
faf4eb4f 4
77f175ac
JF
5@class NSString;
6@class RVBook;
7
8@interface RVPage : UIView {
9 _transient RVBook *book_;
10 _transient id delegate_;
11}
12
13- (NSString *) title;
14- (NSString *) backButtonTitle;
bde2d79b 15- (id) rightButtonTitle;
77f175ac
JF
16- (NSString *) leftButtonTitle;
17- (UIView *) accessoryView;
18
bde2d79b
JF
19- (UIImage *) rightButtonImage;
20
20b8724d
JF
21- (UINavigationButtonStyle) leftButtonStyle;
22- (UINavigationButtonStyle) rightButtonStyle;
faf4eb4f 23
77f175ac
JF
24- (void) _rightButtonClicked;
25- (void) _leftButtonClicked;
26
27- (void) setPageActive:(BOOL)active;
28- (void) resetViewAnimated:(BOOL)animated;
29
77f175ac
JF
30- (void) setBackButtonTitle:(NSString *)title;
31
32- (void) reloadButtons;
33- (void) reloadData;
34
35- (id) initWithBook:(RVBook *)book;
36
37- (void) setDelegate:(id)delegate;
38
39@end