]> git.saurik.com Git - cydia.git/blob - CyteKit/WebViewTableViewCell.mm
This loaded_ hack is hopefully no longer required.
[cydia.git] / CyteKit / WebViewTableViewCell.mm
1 /* Cydia - iPhone UIKit Front-End for Debian APT
2 * Copyright (C) 2008-2015 Jay Freeman (saurik)
3 */
4
5 /* GNU General Public License, Version 3 {{{ */
6 /*
7 * Cydia is free software: you can redistribute it and/or modify
8 * it under the terms of the GNU General Public License as published
9 * by the Free Software Foundation, either version 3 of the License,
10 * or (at your option) any later version.
11 *
12 * Cydia is distributed in the hope that it will be useful, but
13 * WITHOUT ANY WARRANTY; without even the implied warranty of
14 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15 * GNU General Public License for more details.
16 *
17 * You should have received a copy of the GNU General Public License
18 * along with Cydia. If not, see <http://www.gnu.org/licenses/>.
19 **/
20 /* }}} */
21
22 #include "CyteKit/UCPlatform.h"
23
24 #include "CyteKit/WebViewTableViewCell.h"
25
26 #include "iPhonePrivate.h"
27
28 @implementation CyteWebViewTableViewCell
29
30 + (CyteWebViewTableViewCell *) cellWithRequest:(NSURLRequest *)request {
31 CyteWebViewTableViewCell *cell([[[self alloc] initWithRequest:request] autorelease]);
32 return cell;
33 }
34
35 - (id) initWithRequest:request {
36 if ((self = [super init]) != nil) {
37 UIView *view(self);
38
39 webview_ = [[[CyteWebView alloc] initWithFrame:[view bounds]] autorelease];
40 [webview_ setDelegate:self];
41 [view addSubview:webview_];
42
43 [webview_ setScalesPageToFit:YES];
44
45 UIWebDocumentView *document([webview_ _documentView]);
46 WebView *webview([document webView]);
47 [webview setShouldUpdateWhileOffscreen:NO];
48
49 if ([document respondsToSelector:@selector(setAllowsMessaging:)])
50 [document setAllowsMessaging:YES];
51 if ([webview respondsToSelector:@selector(_setAllowsMessaging:)])
52 [webview _setAllowsMessaging:YES];
53
54 UIScrollView *scroller([webview_ scrollView]);
55 [scroller setScrollingEnabled:NO];
56 [scroller setFixedBackgroundPattern:YES];
57 [scroller setBackgroundColor:[UIColor clearColor]];
58
59 WebPreferences *preferences([webview preferences]);
60 [preferences setCacheModel:WebCacheModelDocumentBrowser];
61 [preferences setJavaScriptCanOpenWindowsAutomatically:YES];
62 [preferences setOfflineWebApplicationCacheEnabled:YES];
63
64 [webview_ loadRequest:request];
65
66 [webview_ setAutoresizingMask:(UIViewAutoresizingFlexibleWidth | UIViewAutoresizingFlexibleHeight)];
67 } return self;
68 }
69
70 - (id) delegate {
71 return [webview_ delegate];
72 }
73
74 - (void) setDelegate:(id)delegate {
75 [webview_ setDelegate:delegate];
76 }
77
78 @end