]>
Commit | Line | Data |
---|---|---|
1 | #import <UICaboodle/UCPlatform.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 | - (bool) splitView; | |
14 | ||
15 | - (NSString *) title; | |
16 | - (NSString *) backButtonTitle; | |
17 | - (id) rightButtonTitle; | |
18 | - (NSString *) leftButtonTitle; | |
19 | - (UIView *) accessoryView; | |
20 | ||
21 | - (UIImage *) rightButtonImage; | |
22 | ||
23 | - (UINavigationButtonStyle) leftButtonStyle; | |
24 | - (UINavigationButtonStyle) rightButtonStyle; | |
25 | ||
26 | - (void) _rightButtonClicked; | |
27 | - (void) _leftButtonClicked; | |
28 | ||
29 | - (void) setPageActive:(BOOL)active; | |
30 | - (void) resetViewAnimated:(BOOL)animated; | |
31 | ||
32 | - (void) setBackButtonTitle:(NSString *)title; | |
33 | ||
34 | - (void) reloadButtons; | |
35 | - (void) reloadData; | |
36 | ||
37 | - (id) initWithBook:(RVBook *)book; | |
38 | ||
39 | - (void) setDelegate:(id)delegate; | |
40 | - (void) setBook:(RVBook *)book; | |
41 | ||
42 | @end |