]> git.saurik.com Git - cydia.git/blobdiff - UICaboodle/BrowserView.h
Mild organization and optimization.
[cydia.git] / UICaboodle / BrowserView.h
index 2cb91dae62f022dddb30d97dbe2b9ee255ace925..eb11d6c3e33f637bd0f8f7549f34ceb362b84097 100644 (file)
@@ -36,7 +36,9 @@
 @class IndirectDelegate;
 @class CydiaObject;
 
-@interface BrowserView : RVPage {
+@interface BrowserView : RVPage <
+    RVBookHook
+> {
     UIScroller *scroller_;
     UIWebDocumentView *webview_;
     UIProgressIndicator *indicator_;
 
     NSNumber *confirm_;
     NSString *title_;
-    bool loading_;
+    NSMutableSet *loading_;
     bool reloading_;
 
     NSString *button_;
     NSString *style_;
+
     WebScriptObject *function_;
+    WebScriptObject *closer_;
+    WebScriptObject *special_;
+    WebScriptObject *finish_;
 
     bool pushed_;
 
@@ -72,6 +78,9 @@
 
 - (void) loadRequest:(NSURLRequest *)request;
 - (void) reloadURL;
+- (bool) isLoading;
+
+- (void) fixScroller;
 
 - (WebView *) webView;
 - (UIWebDocumentView *) documentView;
 - (id) initWithBook:(RVBook *)book;
 - (id) initWithBook:(RVBook *)book forWidth:(float)width;
 
+- (NSString *) stringByEvaluatingJavaScriptFromString:(NSString *)script;
+- (void) callFunction:(WebScriptObject *)function;
+
 - (void) webView:(WebView *)sender didFinishLoadForFrame:(WebFrame *)frame;
 - (void) webView:(WebView *)sender didClearWindowObject:(WebScriptObject *)window forFrame:(WebFrame *)frame;
 
 + (float) defaultWidth;
 - (void) setViewportWidth:(float)width;
 
+- (void) setButtonImage:(NSString *)button withStyle:(NSString *)style toFunction:(id)function;
+- (void) setButtonTitle:(NSString *)button withStyle:(NSString *)style toFunction:(id)function;
+- (void) setFinishHook:(id)function;
+- (void) setPopupHook:(id)function;
+
 - (id) _rightButtonTitle;
 
 @end