#import "ResetView.h" #include #include #include #include #include #include #include #include #include #include #import #import #include #include #import @class NSMutableArray; @class NSString; @class NSURL; @class NSURLRequest; @class UIProgressIndicator; @class UIScroller; @class UIDocumentWebView; @class WebView; @class Database; @class IndirectDelegate; @class CydiaObject; @interface BrowserView : RVPage { UIScroller *scroller_; UIWebDocumentView *webview_; UIProgressIndicator *indicator_; IndirectDelegate *indirect_; CydiaObject *cydia_; NSURLAuthenticationChallenge *challenge_; bool error_; NSURLRequest *request_; NSNumber *confirm_; NSString *title_; bool loading_; bool reloading_; NSString *button_; NSString *style_; WebScriptObject *function_; bool pushed_; float width_; bool popup_; CGSize size_; bool editing_; } - (void) alertSheet:(UIActionSheet *)sheet buttonClicked:(int)button; - (void) loadURL:(NSURL *)url cachePolicy:(NSURLRequestCachePolicy)policy; - (void) loadURL:(NSURL *)url; - (void) loadRequest:(NSURLRequest *)request; - (void) reloadURL; - (WebView *) webView; - (UIWebDocumentView *) documentView; - (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; + (float) defaultWidth; - (void) setViewportWidth:(float)width; - (id) _rightButtonTitle; @end