]> git.saurik.com Git - cydia.git/blobdiff - UICaboodle/RVBook.h
Use actual types for fields rather than id (UISwitch and *TabBarController).
[cydia.git] / UICaboodle / RVBook.h
index 376a1531b1df00a5096ee68fb80852c134139c07..8994cbfaa3267d72cbe68dd458b23c62038ea286 100644 (file)
@@ -2,80 +2,14 @@
 
 #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
+@protocol HookProtocol
+- (void) didDismissModalViewController;
 @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
-
-@protocol RVBookHook
-- (void) didCloseBook:(RVBook *)book;
-@end
-
-@interface RVBook : UIView <
-    RVNavigationBarDelegate
-> {
-    NSMutableArray *pages_;
-    UINavigationBar *navbar_;
-    UITransitionView *transition_;
-    BOOL resetting_;
-    _transient id delegate_;
-    _transient id hook_;
-    UIToolbar *toolbar_;
+@interface UCNavigationController : UINavigationController {
+    id<HookProtocol> hook_;
 }
-
-- (UINavigationBar *) navigationBar;
-
-- (id) initWithFrame:(CGRect)frame;
-- (void) setDelegate:(id)delegate;
-- (void) setHook:(id)hook;
-
-- (void) setPage:(RVPage *)page;
-
-- (void) swapPage:(RVPage *)page;
-
-- (void) pushPage:(RVPage *)page animated:(BOOL)animated;
-- (void) pushPage:(RVPage *)page;
-
-- (void) popPages:(unsigned)pages;
-
-- (void) pushBook:(RVBook *)book;
-
-- (void) resetViewAnimated:(BOOL)animated;
-- (void) resetViewAnimated:(BOOL)animated toPage:(RVPage *)page;
-
-- (void) setBackButtonTitle:(NSString *)title forPage:(RVPage *)page;
-- (void) reloadTitleForPage:(RVPage *)page;
-- (void) reloadButtonsForPage:(RVPage *)page;
-- (NSString *) getTitleForPage:(RVPage *)page;
-
-- (void) reloadButtons;
-- (void) reloadData;
-
-- (CGRect) pageBounds;
-- (void) close;
-
+- (void) setHook:(id<HookProtocol>)hook;
 @end
 
-@interface RVPopUpBook : RVBook {
-    _transient RVBook *parent_;
-    bool cancel_;
-}
 
-@end