]> git.saurik.com Git - cydia.git/blobdiff - UICaboodle/BrowserView.h
When cancelButtonIndex is -1, use the first button's background image for the rest...
[cydia.git] / UICaboodle / BrowserView.h
index 632528dac18cbc3e02adae19a371109a08691739..69d0bfc874145f45ce81de183f1aa700f3a52511 100644 (file)
@@ -1,6 +1,5 @@
 #import "ResetView.h"
 
-
 #include <WebKit/DOMCSSPrimitiveValue.h>
 #include <WebKit/DOMCSSStyleDeclaration.h>
 #include <WebKit/DOMDocument.h>
 
 @class Database;
 @class IndirectDelegate;
-@class CydiaObject;
 
-@interface BrowserView : RVPage {
+@interface WebScriptObject (UICaboodle)
+- (unsigned) count;
+- (id) objectAtIndex:(unsigned)index;
+@end
+
+@protocol BrowserViewDelegate
+- (UCViewController *) pageForURL:(NSURL *)url hasTag:(int *)tag;
+@end
+
+@interface BrowserView : UCViewController {
     UIScroller *scroller_;
-    UIWebDocumentView *webview_;
+    UIWebDocumentView *document_;
     UIProgressIndicator *indicator_;
     IndirectDelegate *indirect_;
-    CydiaObject *cydia_;
     NSURLAuthenticationChallenge *challenge_;
 
     bool error_;
     NSURLRequest *request_;
 
     NSNumber *confirm_;
+    NSNumber *sensitive_;
     NSString *title_;
-    bool loading_;
+    NSMutableSet *loading_;
     bool reloading_;
 
     NSString *button_;
     NSString *style_;
+
     WebScriptObject *function_;
+    WebScriptObject *closer_;
+    WebScriptObject *special_;
+    WebScriptObject *finish_;
 
     bool pushed_;
+
+    float width_;
+    bool popup_;
+
+    CGSize size_;
+    bool editing_;
+
+    Class class_;
 }
 
++ (void) _initialize;
+
 - (void) alertSheet:(UIActionSheet *)sheet buttonClicked:(int)button;
 
 - (void) loadURL:(NSURL *)url cachePolicy:(NSURLRequestCachePolicy)policy;
 
 - (void) loadRequest:(NSURLRequest *)request;
 - (void) reloadURL;
+- (bool) isLoading;
+
+- (void) fixScroller;
 
 - (WebView *) webView;
+- (UIWebDocumentView *) documentView;
+
+- (id) init;
+- (id) initWithWidth:(float)width;
+- (id) initWithWidth:(float)width ofClass:(Class)_class;
 
-- (id) initWithBook:(RVBook *)book;
+- (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;
 
-@end
+- (NSURLRequest *) webView:(WebView *)sender resource:(id)identifier willSendRequest:(NSURLRequest *)request redirectResponse:(NSURLResponse *)redirectResponse fromDataSource:(WebDataSource *)source;
+
++ (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;
+
+- (bool) promptForSensitive:(NSString *)name;
+- (bool) allowSensitiveRequests;
+
+@end
\ No newline at end of file