com.bugvm.apple.webkit.WKWebView Maven / Gradle / Ivy
The newest version!
/*
* Copyright (C) 2013-2015 RoboVM AB
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package com.bugvm.apple.webkit;
/**/
import java.io.*;
import java.nio.*;
import java.util.*;
import com.bugvm.objc.*;
import com.bugvm.objc.annotation.*;
import com.bugvm.objc.block.*;
import com.bugvm.rt.*;
import com.bugvm.rt.annotation.*;
import com.bugvm.rt.bro.*;
import com.bugvm.rt.bro.annotation.*;
import com.bugvm.rt.bro.ptr.*;
import com.bugvm.apple.foundation.*;
import com.bugvm.apple.uikit.*;
import com.bugvm.apple.coregraphics.*;
import com.bugvm.apple.security.*;
/* */
/**/
/**
* @since Available in iOS 8.0 and later.
*/
/* */
/**/@Library("WebKit") @NativeClass @WeaklyLinked/* */
/**/public/* */ class /**/WKWebView/* */
extends /**/UIView/* */
/**//* */ {
/**/public static class WKWebViewPtr extends Ptr {}/* */
/**/static { ObjCRuntime.bind(WKWebView.class); }/* */
/**//* */
/**/
public WKWebView() {}
protected WKWebView(SkipInit skipInit) { super(skipInit); }
public WKWebView(@ByVal CGRect frame, WKWebViewConfiguration configuration) { super((SkipInit) null); initObject(init(frame, configuration)); }
public WKWebView(NSCoder coder) { super((SkipInit) null); initObject(init(coder)); }
/* */
public WKWebView(CGRect frame) {
super(frame);
}
/**/
@Property(selector = "configuration")
public native WKWebViewConfiguration getConfiguration();
@Property(selector = "navigationDelegate")
public native WKNavigationDelegate getNavigationDelegate();
@Property(selector = "setNavigationDelegate:", strongRef = true)
public native void setNavigationDelegate(WKNavigationDelegate v);
@Property(selector = "UIDelegate")
public native WKUIDelegate getUIDelegate();
@Property(selector = "setUIDelegate:", strongRef = true)
public native void setUIDelegate(WKUIDelegate v);
@Property(selector = "backForwardList")
public native WKBackForwardList getBackForwardList();
@Property(selector = "title")
public native String getTitle();
@Property(selector = "URL")
public native NSURL getURL();
@Property(selector = "isLoading")
public native boolean isLoading();
@Property(selector = "estimatedProgress")
public native double getEstimatedProgress();
@Property(selector = "hasOnlySecureContent")
public native boolean hasOnlySecureContent();
/**
* @since Available in iOS 9.0 and later.
*/
@Property(selector = "certificateChain")
public native @com.bugvm.rt.bro.annotation.Marshaler(NSArray.AsListMarshaler.class) List getCertificateChain();
@Property(selector = "canGoBack")
public native boolean canGoBack();
@Property(selector = "canGoForward")
public native boolean canGoForward();
@Property(selector = "allowsBackForwardNavigationGestures")
public native boolean allowsBackForwardNavigationGestures();
@Property(selector = "setAllowsBackForwardNavigationGestures:")
public native void setAllowsBackForwardNavigationGestures(boolean v);
/**
* @since Available in iOS 9.0 and later.
*/
@Property(selector = "customUserAgent")
public native String getCustomUserAgent();
/**
* @since Available in iOS 9.0 and later.
*/
@Property(selector = "setCustomUserAgent:")
public native void setCustomUserAgent(String v);
@Property(selector = "scrollView")
public native UIScrollView getScrollView();
/* */
/**//* */
/**/
@Method(selector = "initWithFrame:configuration:")
protected native @Pointer long init(@ByVal CGRect frame, WKWebViewConfiguration configuration);
@Method(selector = "initWithCoder:")
protected native @Pointer long init(NSCoder coder);
@Method(selector = "loadRequest:")
public native WKNavigation loadRequest(NSURLRequest request);
/**
* @since Available in iOS 9.0 and later.
*/
@Method(selector = "loadFileURL:allowingReadAccessToURL:")
public native WKNavigation loadFileURL(NSURL URL, NSURL readAccessURL);
@Method(selector = "loadHTMLString:baseURL:")
public native WKNavigation loadHTMLString(String string, NSURL baseURL);
/**
* @since Available in iOS 9.0 and later.
*/
@Method(selector = "loadData:MIMEType:characterEncodingName:baseURL:")
public native WKNavigation loadData(NSData data, String MIMEType, String characterEncodingName, NSURL baseURL);
@Method(selector = "goToBackForwardListItem:")
public native WKNavigation goToBackForwardListItem(WKBackForwardListItem item);
@Method(selector = "goBack")
public native WKNavigation goBack();
@Method(selector = "goForward")
public native WKNavigation goForward();
@Method(selector = "reload")
public native WKNavigation reload();
@Method(selector = "reloadFromOrigin")
public native WKNavigation reloadFromOrigin();
@Method(selector = "stopLoading")
public native void stopLoading();
@Method(selector = "evaluateJavaScript:completionHandler:")
public native void evaluateJavaScript(String javaScriptString, @Block VoidBlock2 completionHandler);
/* */
}