]> git.saurik.com Git - cydia.git/blobdiff - UICaboodle/RVBook.h
Minor refactoring of the PackageTable system.
[cydia.git] / UICaboodle / RVBook.h
index 43078fcb5ea65ea8d613eacb798bd869ab676edf..88a51915c13f65a86725c0489d10d79bebbcebab 100644 (file)
@@ -7,13 +7,18 @@
 @class UINavigationBar;
 @class UITransitionView;
 
+@protocol RVNavigationBarDelegate
+@end
+
 @protocol RVDelegate
 - (void) setPageActive:(BOOL)active with:(id)object;
 - (void) resetViewAnimated:(BOOL)animated with:(id)object;
 - (void) reloadDataWith:(id)object;
 @end
 
-@interface RVBook : UIView {
+@interface RVBook : UIView <
+    RVNavigationBarDelegate
+> {
     NSMutableArray *pages_;
     UINavigationBar *navbar_;
     UITransitionView *transition_;
@@ -21,6 +26,8 @@
     _transient id delegate_;
 }
 
+- (UINavigationBar *) navigationBar;
+
 - (id) initWithFrame:(CGRect)frame;
 - (void) setDelegate:(id)delegate;
 
 - (void) pushPage:(RVPage *)page;
 - (void) popPages:(unsigned)pages;
 
-- (void) setPrompt:(NSString *)prompt;
-
 - (void) resetViewAnimated:(BOOL)animated;
 - (void) resetViewAnimated:(BOOL)animated toPage:(RVPage *)page;
 
-- (void) setTitle:(NSString *)title forPage:(RVPage *)page;
 - (void) setBackButtonTitle:(NSString *)title forPage:(RVPage *)page;
+- (void) reloadTitleForPage:(RVPage *)page;
 - (void) reloadButtonsForPage:(RVPage *)page;
 - (NSString *) getTitleForPage:(RVPage *)page;