io.qt.datavis.QCategory3DAxis Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of qtjambi-datavisualization Show documentation
Show all versions of qtjambi-datavisualization Show documentation
UI Components for creating stunning 3D data visualizations.
The newest version!
package io.qt.datavis;
import io.qt.*;
/**
* Manipulates an axis of a graph
* Java wrapper for Qt class QCategory3DAxis
*/
public class QCategory3DAxis extends io.qt.datavis.QAbstract3DAxis
{
/**
* This variable stores the meta-object for the class.
*/
public static final io.qt.core.@NonNull QMetaObject staticMetaObject = io.qt.core.QMetaObject.forType(QCategory3DAxis.class);
/**
* See QAbstract3DAxis:: labelsChanged()
*/
@QtPropertyNotify(name="labels")
public final @NonNull Signal0 labelsChanged = new Signal0();
/**
* See QCategory3DAxis:: QCategory3DAxis(QObject*)
* @param parent
*/
public QCategory3DAxis(io.qt.core.@Nullable QObject parent){
super((QPrivateConstructor)null);
initialize_native(this, parent);
}
private native static void initialize_native(QCategory3DAxis instance, io.qt.core.QObject parent);
/**
* See QAbstract3DAxis:: labels()const
* @return
*/
@QtPropertyReader(name="labels")
@QtUninvokable
public final io.qt.core.@NonNull QStringList labels(){
return labels_native_constfct(QtJambi_LibraryUtilities.internal.nativeId(this));
}
@QtUninvokable
private native io.qt.core.QStringList labels_native_constfct(long __this__nativeId);
/**
* See QAbstract3DAxis:: setLabels(QStringList)
* @param labels
*/
@QtPropertyWriter(name="labels")
@QtUninvokable
public final void setLabels(java.util.@NonNull Collection labels){
setLabels_native_cref_QStringList(QtJambi_LibraryUtilities.internal.nativeId(this), labels);
}
@QtUninvokable
private native void setLabels_native_cref_QStringList(long __this__nativeId, java.util.Collection labels);
/**
* Constructor for internal use only.
* @param p expected to be null
.
* @hidden
*/
@NativeAccess
protected QCategory3DAxis(QPrivateConstructor p) { super(p); }
/**
* Constructor for internal use only.
* It is not allowed to call the declarative constructor from inside Java.
* @hidden
*/
@NativeAccess
protected QCategory3DAxis(QDeclarativeConstructor constructor) {
super((QPrivateConstructor)null);
initialize_native(this, constructor);
}
@QtUninvokable
private static native void initialize_native(QCategory3DAxis instance, QDeclarativeConstructor constructor);
/**
* Overloaded constructor for {@link #QCategory3DAxis(io.qt.core.QObject)}
* with parent = null
.
*/
public QCategory3DAxis() {
this((io.qt.core.QObject)null);
}
}