io.qt.webengine.core.QWebEngineFullScreenRequest Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of qtjambi-webenginecore-jre8 Show documentation
Show all versions of qtjambi-webenginecore-jre8 Show documentation
Provides public API shared by both modules {@code qtjambi.webenginequick} and {@code qtjambi.webenginewidgets}.
package io.qt.webengine.core;
/**
* Enables accepting or rejecting requests for entering and exiting the fullscreen mode
* Java wrapper for Qt class QWebEngineFullScreenRequest
*/
public class QWebEngineFullScreenRequest extends io.qt.QtObject
implements java.lang.Cloneable
{
static {
QtJambi_LibraryUtilities.initialize();
}
/**
* This variable stores the meta-object for the class.
*/
public static final io.qt.core.QMetaObject staticMetaObject = io.qt.core.QMetaObject.forType(QWebEngineFullScreenRequest.class);
public QWebEngineFullScreenRequest(io.qt.webengine.core.QWebEngineFullScreenRequest other){
super((QPrivateConstructor)null);
initialize_native(this, other);
}
private native static void initialize_native(QWebEngineFullScreenRequest instance, io.qt.webengine.core.QWebEngineFullScreenRequest other);
/**
* See QWebEngineFullScreenRequest::accept()
*/
public final void accept(){
accept_native(QtJambi_LibraryUtilities.internal.nativeId(this));
}
private native void accept_native(long __this__nativeId);
@io.qt.QtUninvokable
public final void set(io.qt.webengine.core.QWebEngineFullScreenRequest other){
set_native_cref_QWebEngineFullScreenRequest(QtJambi_LibraryUtilities.internal.nativeId(this), QtJambi_LibraryUtilities.internal.checkedNativeId(other));
}
@io.qt.QtUninvokable
private native void set_native_cref_QWebEngineFullScreenRequest(long __this__nativeId, long other);
/**
* See QWebEngineFullScreenRequest::origin()const
*/
@io.qt.QtPropertyReader(name="origin")
@io.qt.QtPropertyConstant
@io.qt.QtUninvokable
public final io.qt.core.QUrl origin(){
return origin_native_constfct(QtJambi_LibraryUtilities.internal.nativeId(this));
}
@io.qt.QtUninvokable
private native io.qt.core.QUrl origin_native_constfct(long __this__nativeId);
/**
* See QWebEngineFullScreenRequest::reject()
*/
public final void reject(){
reject_native(QtJambi_LibraryUtilities.internal.nativeId(this));
}
private native void reject_native(long __this__nativeId);
/**
* See QWebEngineFullScreenRequest::toggleOn()const
*/
@io.qt.QtPropertyReader(name="toggleOn")
@io.qt.QtPropertyConstant
@io.qt.QtUninvokable
public final boolean toggleOn(){
return toggleOn_native_constfct(QtJambi_LibraryUtilities.internal.nativeId(this));
}
@io.qt.QtUninvokable
private native boolean toggleOn_native_constfct(long __this__nativeId);
/**
* Constructor for internal use only.
* @param p expected to be null
.
*/
@io.qt.NativeAccess
protected QWebEngineFullScreenRequest(QPrivateConstructor p) { super(p); }
@Override
public QWebEngineFullScreenRequest clone() {
return clone_native(QtJambi_LibraryUtilities.internal.nativeId(this));
}
private native QWebEngineFullScreenRequest clone_native(long __this_nativeId);
}