summaryrefslogtreecommitdiff
path: root/UICaboodle/BrowserView.h
diff options
context:
space:
mode:
authorJay Freeman (saurik) <saurik@saurik.com>2009-04-15 21:01:14 +0000
committerJay Freeman (saurik) <saurik@saurik.com>2010-09-30 07:13:12 +0000
commitcaa427d133e3739a2da5b05090bf9d9bb40b0ee0 (patch)
tree3366800f76934ad30001147b05c4300860c550f8 /UICaboodle/BrowserView.h
parentf79a451249afae7da9887ff92f0d9d1d70c92dd4 (diff)
This is getting nuts, I need an internal branch.
Diffstat (limited to 'UICaboodle/BrowserView.h')
-rw-r--r--UICaboodle/BrowserView.h15
1 files changed, 14 insertions, 1 deletions
diff --git a/UICaboodle/BrowserView.h b/UICaboodle/BrowserView.h
index 93b9420..eb11d6c 100644
--- a/UICaboodle/BrowserView.h
+++ b/UICaboodle/BrowserView.h
@@ -51,13 +51,16 @@
NSNumber *confirm_;
NSString *title_;
- bool loading_;
+ NSMutableSet *loading_;
bool reloading_;
NSString *button_;
NSString *style_;
+
WebScriptObject *function_;
WebScriptObject *closer_;
+ WebScriptObject *special_;
+ WebScriptObject *finish_;
bool pushed_;
@@ -77,18 +80,28 @@
- (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