io.qt.help.QHelpLink Maven / Gradle / Ivy
package io.qt.help;
/**
* Struct provides the data associated with a help link
* Java wrapper for Qt class QHelpLink
*/
public final class QHelpLink extends io.qt.QtObject
implements java.lang.Cloneable
{
static {
QtJambi_LibraryUtilities.initialize();
}
/**
* Of the link
* See QHelpLink::title
*/
@io.qt.QtUninvokable
public final void setTitle(java.lang.String title){
setTitle_native_cref_QString(QtJambi_LibraryUtilities.internal.nativeId(this), title);
}
@io.qt.QtUninvokable
private native void setTitle_native_cref_QString(long __this__nativeId, java.lang.String title);
/**
* Of the link
* See QHelpLink::title
*/
@io.qt.QtUninvokable
public final java.lang.String title(){
return title_native(QtJambi_LibraryUtilities.internal.nativeId(this));
}
@io.qt.QtUninvokable
private native java.lang.String title_native(long __this__nativeId);
/**
* Target url of the link
* See QHelpLink::url
*/
@io.qt.QtUninvokable
public final void setUrl(io.qt.core.QUrl url){
setUrl_native_cref_QUrl(QtJambi_LibraryUtilities.internal.nativeId(this), QtJambi_LibraryUtilities.internal.checkedNativeId(url));
}
@io.qt.QtUninvokable
private native void setUrl_native_cref_QUrl(long __this__nativeId, long url);
/**
* Target url of the link
* See QHelpLink::url
*/
@io.qt.QtUninvokable
public final io.qt.core.QUrl url(){
return url_native(QtJambi_LibraryUtilities.internal.nativeId(this));
}
@io.qt.QtUninvokable
private native io.qt.core.QUrl url_native(long __this__nativeId);
/**
* Constructor for internal use only.
* @param p expected to be null
.
*/
@io.qt.NativeAccess
protected QHelpLink(QPrivateConstructor p) { super(p); }
@Override
public QHelpLink clone() {
return clone_native(QtJambi_LibraryUtilities.internal.nativeId(this));
}
private native QHelpLink clone_native(long __this_nativeId);
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy