diff options
author | Jay Freeman (saurik) <saurik@saurik.com> | 2008-04-30 04:59:47 +0000 |
---|---|---|
committer | Jay Freeman (saurik) <saurik@saurik.com> | 2010-09-30 07:07:35 +0000 |
commit | 308c03802400d5679ec355e577f09bd0e86bfcd9 (patch) | |
tree | 626ef998c47ebbe33e0768293fd0da57b3e922d6 /RVPage.h | |
parent | 7e9a36b640f18febaa4d1beeda6e0f55749cd2b2 (diff) |
Factored out common code to common subproject.
Diffstat (limited to 'RVPage.h')
-rw-r--r-- | RVPage.h | 35 |
1 files changed, 0 insertions, 35 deletions
diff --git a/RVPage.h b/RVPage.h deleted file mode 100644 index 5065dd2..0000000 --- a/RVPage.h +++ /dev/null @@ -1,35 +0,0 @@ -#import "UICaboodle.h" - -#import <UIKit/UIView.h> - -@class NSString; -@class RVBook; - -@interface RVPage : UIView { - _transient RVBook *book_; - _transient id delegate_; -} - -- (NSString *) title; -- (NSString *) backButtonTitle; -- (NSString *) rightButtonTitle; -- (NSString *) leftButtonTitle; -- (UIView *) accessoryView; - -- (void) _rightButtonClicked; -- (void) _leftButtonClicked; - -- (void) setPageActive:(BOOL)active; -- (void) resetViewAnimated:(BOOL)animated; - -- (void) setTitle:(NSString *)title; -- (void) setBackButtonTitle:(NSString *)title; - -- (void) reloadButtons; -- (void) reloadData; - -- (id) initWithBook:(RVBook *)book; - -- (void) setDelegate:(id)delegate; - -@end |