]> git.saurik.com Git - cydia.git/blobdiff - UICaboodle/RVBook.h
Fixed 302->cydia://.
[cydia.git] / UICaboodle / RVBook.h
index 43078fcb5ea65ea8d613eacb798bd869ab676edf..a7781e7b827db8ead16dd2dc5aa35a98ccd5ba8e 100644 (file)
@@ -1,26 +1,42 @@
 #import "UICaboodle.h"
 
-#import <UIKit/UIView.h>
+#import <UIKit/UIKit.h>
 
 @class NSMutableArray;
+@class RVBook;
 @class RVPage;
 @class UINavigationBar;
 @class UITransitionView;
 
+@interface UIView (PopUpView)
+- (void) popFromSuperviewAnimated:(BOOL)animated;
+- (void) popSubview:(UIView *)view;
+@end
+
+@protocol RVNavigationBarDelegate
+@end
+
 @protocol RVDelegate
 - (void) setPageActive:(BOOL)active with:(id)object;
 - (void) resetViewAnimated:(BOOL)animated with:(id)object;
 - (void) reloadDataWith:(id)object;
+- (void) popUpBook:(RVBook *)book;
+- (CGRect) popUpBounds;
 @end
 
-@interface RVBook : UIView {
+@interface RVBook : UIView <
+    RVNavigationBarDelegate
+> {
     NSMutableArray *pages_;
     UINavigationBar *navbar_;
     UITransitionView *transition_;
     BOOL resetting_;
     _transient id delegate_;
+    UIToolbar *toolbar_;
 }
 
+- (UINavigationBar *) navigationBar;
+
 - (id) initWithFrame:(CGRect)frame;
 - (void) setDelegate:(id)delegate;
 
 - (void) pushPage:(RVPage *)page;
 - (void) popPages:(unsigned)pages;
 
-- (void) setPrompt:(NSString *)prompt;
+- (void) pushBook:(RVBook *)book;
 
 - (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;
 
 - (void) reloadData;
 
 - (CGRect) pageBounds;
+- (void) close;
+
+@end
+
+@interface RVPopUpBook : RVBook {
+    _transient RVBook *parent_;
+    bool cancel_;
+}
 
 @end