io.qt.qt3d.animation.QClipAnimator Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of qtjambi-qt3danimation Show documentation
Show all versions of qtjambi-qt3danimation Show documentation
The Qt 3D Animation modules provides a set of prebuilt elements to help you get started with Qt 3D.
package io.qt.qt3d.animation;
import io.qt.*;
/**
* Component providing simple animation playback capabilities
* Java wrapper for Qt class Qt3DAnimation::QClipAnimator
*/
public class QClipAnimator extends io.qt.qt3d.animation.QAbstractClipAnimator
{
/**
* This variable stores the meta-object for the class.
*/
public static final io.qt.core.@NonNull QMetaObject staticMetaObject = io.qt.core.QMetaObject.forType(QClipAnimator.class);
/**
* See Qt3DAnimation::QClipAnimator:: clipChanged(Qt3DAnimation::QAbstractAnimationClip*)
*/
@QtPropertyNotify(name="clip")
public final @NonNull Signal1 clipChanged = new Signal1<>();
/**
* See Qt3DAnimation::QClipAnimator:: QClipAnimator(Qt3DCore::QNode*)
*/
@SuppressWarnings({"exports"})
public QClipAnimator(io.qt.qt3d.core.@Nullable QNode parent){
super((QPrivateConstructor)null);
initialize_native(this, parent);
}
private native static void initialize_native(QClipAnimator instance, io.qt.qt3d.core.QNode parent);
/**
* See Qt3DAnimation::QClipAnimator:: clip()const
*/
@QtPropertyReader(name="clip")
@QtUninvokable
public final io.qt.qt3d.animation.@Nullable QAbstractAnimationClip clip(){
return clip_native_constfct(QtJambi_LibraryUtilities.internal.nativeId(this));
}
@QtUninvokable
private native io.qt.qt3d.animation.QAbstractAnimationClip clip_native_constfct(long __this__nativeId);
/**
* See Qt3DAnimation::QClipAnimator:: setClip(Qt3DAnimation::QAbstractAnimationClip*)
*/
@QtPropertyWriter(name="clip")
public final void setClip(io.qt.qt3d.animation.@Nullable QAbstractAnimationClip clip){
setClip_native_Qt3DAnimation_QAbstractAnimationClip_ptr(QtJambi_LibraryUtilities.internal.nativeId(this), QtJambi_LibraryUtilities.internal.checkedNativeId(clip));
}
private native void setClip_native_Qt3DAnimation_QAbstractAnimationClip_ptr(long __this__nativeId, long clip);
/**
* Constructor for internal use only.
* @param p expected to be null
.
* @hidden
*/
@NativeAccess
protected QClipAnimator(QPrivateConstructor p) { super(p); }
/**
* Constructor for internal use only.
* It is not allowed to call the declarative constructor from inside Java.
* @hidden
*/
@NativeAccess
protected QClipAnimator(QDeclarativeConstructor constructor) {
super((QPrivateConstructor)null);
initialize_native(this, constructor);
}
@QtUninvokable
private static native void initialize_native(QClipAnimator instance, QDeclarativeConstructor constructor);
/**
* Overloaded constructor for {@link #QClipAnimator(io.qt.qt3d.core.QNode)}
* with parent = null
.
*/
public QClipAnimator() {
this((io.qt.qt3d.core.QNode)null);
}
/**
* @hidden
* Kotlin property getter. In Java use {@link #clip()} instead.
*/
@QtPropertyReader(enabled=false)
@QtUninvokable
public final io.qt.qt3d.animation.@Nullable QAbstractAnimationClip getClip() {
return clip();
}
}