io.qt.widgets.QStyleFactory 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.widgets;
import io.qt.*;
/**
* Creates QStyle objects
* Java wrapper for Qt class QStyleFactory
*/
public class QStyleFactory extends QtObject
{
static {
QtJambi_LibraryUtilities.initialize();
}
/**
* See QStyleFactory:: QStyleFactory()
*/
public QStyleFactory(){
super((QPrivateConstructor)null);
initialize_native(this);
}
private native static void initialize_native(QStyleFactory instance);
/**
* See QStyleFactory:: create(QString)
*/
public native static io.qt.widgets.@Nullable QStyle create(java.lang.@NonNull String arg__1);
/**
*
*/
public native static io.qt.core.@NonNull QStringList keys();
/**
* Constructor for internal use only.
* @param p expected to be null
.
* @hidden
*/
@NativeAccess
protected QStyleFactory(QPrivateConstructor p) { super(p); }
}