]> git.saurik.com Git - cydia.git/blobdiff - UICaboodle/BrowserView.h
I hate subtle issues.
[cydia.git] / UICaboodle / BrowserView.h
index 3dcdb931208470e859bc91885dd1dfcb293d5942..93b94207f0fd1dc7ccc0e48ac98195b3731f1878 100644 (file)
 
 @class Database;
 @class IndirectDelegate;
 
 @class Database;
 @class IndirectDelegate;
+@class CydiaObject;
 
 
-@interface BrowserView : RVPage {
+@interface BrowserView : RVPage <
+    RVBookHook
+> {
     UIScroller *scroller_;
     UIWebDocumentView *webview_;
     UIProgressIndicator *indicator_;
     IndirectDelegate *indirect_;
     UIScroller *scroller_;
     UIWebDocumentView *webview_;
     UIProgressIndicator *indicator_;
     IndirectDelegate *indirect_;
+    CydiaObject *cydia_;
     NSURLAuthenticationChallenge *challenge_;
     NSURLAuthenticationChallenge *challenge_;
+
+    bool error_;
     NSURLRequest *request_;
 
     NSNumber *confirm_;
     NSURLRequest *request_;
 
     NSNumber *confirm_;
     NSString *button_;
     NSString *style_;
     WebScriptObject *function_;
     NSString *button_;
     NSString *style_;
     WebScriptObject *function_;
+    WebScriptObject *closer_;
 
     bool pushed_;
 
     bool pushed_;
+
+    float width_;
+    bool popup_;
+
+    CGSize size_;
+    bool editing_;
 }
 
 - (void) alertSheet:(UIActionSheet *)sheet buttonClicked:(int)button;
 }
 
 - (void) alertSheet:(UIActionSheet *)sheet buttonClicked:(int)button;
 
 - (void) loadRequest:(NSURLRequest *)request;
 - (void) reloadURL;
 
 - (void) loadRequest:(NSURLRequest *)request;
 - (void) reloadURL;
+- (bool) isLoading;
 
 - (WebView *) webView;
 
 - (WebView *) webView;
+- (UIWebDocumentView *) documentView;
 
 - (id) initWithBook:(RVBook *)book;
 
 - (id) initWithBook:(RVBook *)book;
+- (id) initWithBook:(RVBook *)book forWidth:(float)width;
 
 - (void) webView:(WebView *)sender didFinishLoadForFrame:(WebFrame *)frame;
 - (void) webView:(WebView *)sender didClearWindowObject:(WebScriptObject *)window forFrame:(WebFrame *)frame;
 
 
 - (void) webView:(WebView *)sender didFinishLoadForFrame:(WebFrame *)frame;
 - (void) webView:(WebView *)sender didClearWindowObject:(WebScriptObject *)window forFrame:(WebFrame *)frame;
 
++ (float) defaultWidth;
+- (void) setViewportWidth:(float)width;
+
+- (id) _rightButtonTitle;
+
 @end
 @end