]>
Commit | Line | Data |
---|---|---|
1 | #import "UICaboodle.h" | |
2 | ||
3 | #import <UIKit/UIKit.h> | |
4 | ||
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; | |
15 | - (id) rightButtonTitle; | |
16 | - (NSString *) leftButtonTitle; | |
17 | - (UIView *) accessoryView; | |
18 | ||
19 | - (UIImage *) rightButtonImage; | |
20 | ||
21 | - (UINavigationButtonStyle) leftButtonStyle; | |
22 | - (UINavigationButtonStyle) rightButtonStyle; | |
23 | ||
24 | - (void) _rightButtonClicked; | |
25 | - (void) _leftButtonClicked; | |
26 | ||
27 | - (void) setPageActive:(BOOL)active; | |
28 | - (void) resetViewAnimated:(BOOL)animated; | |
29 | ||
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 |