io.qt.gui.QIconEnginePlugin Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of qtjambi Show documentation
Show all versions of qtjambi Show documentation
QtJambi base module containing QtCore, QtGui and QtWidgets.
package io.qt.gui;
import io.qt.*;
/**
* Abstract base for custom QIconEngine plugins
* Java wrapper for Qt class QIconEnginePlugin
*/
public abstract class QIconEnginePlugin extends io.qt.core.QObject
{
static {
QtJambi_LibraryUtilities.initialize();
}
/**
* This variable stores the meta-object for the class.
*/
public static final io.qt.core.@NonNull QMetaObject staticMetaObject = io.qt.core.QMetaObject.forType(QIconEnginePlugin.class);
@NativeAccess
private static final class ConcreteWrapper extends QIconEnginePlugin {
@NativeAccess
private ConcreteWrapper(QPrivateConstructor p) { super(p); }
@Override
@QtUninvokable
public io.qt.gui.@Nullable QIconEngine create(java.lang.@NonNull String filename){
return create_native_cref_QString(QtJambi_LibraryUtilities.internal.nativeId(this), filename);
}
@QtUninvokable
private native io.qt.gui.QIconEngine create_native_cref_QString(long __this__nativeId, java.lang.String filename);
}
/**
* See QIconEnginePlugin:: QIconEnginePlugin(QObject*)
*/
public QIconEnginePlugin(io.qt.core.@Nullable QObject parent){
super((QPrivateConstructor)null);
initialize_native(this, parent);
}
private native static void initialize_native(QIconEnginePlugin instance, io.qt.core.QObject parent);
/**
* See QIconEnginePlugin:: create(QString)
*/
@QtUninvokable
public abstract io.qt.gui.@Nullable QIconEngine create(java.lang.@NonNull String filename);
@QtUninvokable
private native io.qt.gui.QIconEngine create_native_cref_QString(long __this__nativeId, java.lang.String filename);
/**
* Constructor for internal use only.
* @param p expected to be null
.
* @hidden
*/
@NativeAccess
protected QIconEnginePlugin(QPrivateConstructor p) { super(p); }
/**
* Constructor for internal use only.
* It is not allowed to call the declarative constructor from inside Java.
* @hidden
*/
@NativeAccess
protected QIconEnginePlugin(QDeclarativeConstructor constructor) {
super((QPrivateConstructor)null);
initialize_native(this, constructor);
}
@QtUninvokable
private static native void initialize_native(QIconEnginePlugin instance, QDeclarativeConstructor constructor);
/**
* Overloaded constructor for {@link #QIconEnginePlugin(io.qt.core.QObject)}
* with parent = null
.
*/
public QIconEnginePlugin() {
this((io.qt.core.QObject)null);
}
/**
* Overloaded function for {@link #create(java.lang.String)}
* with filename = (String)null
.
*/
@QtUninvokable
public final io.qt.gui.@Nullable QIconEngine create() {
return create((String)null);
}
}