API  1.0.0
CPWebView.h
Go to the documentation of this file.
1 
2 @interface CPWebView : CPView
3 {
4  CPScrollView _scrollView;
5  CPView _frameView;
6 
7  DOMElement _iframe;
8  CPString _mainFrameURL;
9  CPArray _backwardStack;
10  CPArray _forwardStack;
11 
12  BOOL _ignoreLoadStart;
13  BOOL _ignoreLoadEnd;
14  BOOL _isLoading;
15 
16  id _downloadDelegate;
17  id _frameLoadDelegate;
18  id _policyDelegate;
19  id _resourceLoadDelegate;
20  id _UIDelegate;
21 
22  CPWebScriptObject _wso;
23 
24  CPString _url;
25  CPString _html;
26 
27  Function _loadCallback;
28 
29  int _scrollMode;
30  int _effectiveScrollMode;
31  BOOL _contentIsAccessible;
32  CPTimer _contentSizeCheckTimer;
33  int _contentSizePollCount;
34 
35  int _loadHTMLStringTimer;
36 
37  BOOL _drawsBackground;
38 }
39 @end
An immutable string (collection of characters).
Definition: CPString.h:2
A timer object that can send a message after the given time interval.
Definition: CPTimer.h:2
Definition: CPView.j:137