All Downloads are FREE. Search and download functionalities are using the official Maven repository.

io.qt.core.QPauseAnimation Maven / Gradle / Ivy

There is a newer version: 6.8.0
Show newest version
package io.qt.core;

import io.qt.*;


/**
 * 

Pause for QSequentialAnimationGroup

*

Java wrapper for Qt class QPauseAnimation

*/ public class QPauseAnimation extends io.qt.core.QAbstractAnimation { /** * This variable stores the meta-object for the class. */ public static final io.qt.core.@NonNull QMetaObject staticMetaObject = io.qt.core.QMetaObject.forType(QPauseAnimation.class); /** *

See QPauseAnimation::QPauseAnimation(QObject*)

*/ public QPauseAnimation(io.qt.core.@Nullable QObject parent){ super((QPrivateConstructor)null); initialize_native(this, parent); } private native static void initialize_native(QPauseAnimation instance, io.qt.core.QObject parent); /** *

See QPauseAnimation::QPauseAnimation(int,QObject*)

*/ public QPauseAnimation(int msecs, io.qt.core.@Nullable QObject parent){ super((QPrivateConstructor)null); initialize_native(this, msecs, parent); } private native static void initialize_native(QPauseAnimation instance, int msecs, io.qt.core.QObject parent); /** *

See QPauseAnimation::bindableDuration()

*/ @QtPropertyBindable(name="duration") @QtUninvokable public final io.qt.core.@NonNull QIntBindable bindableDuration(){ return bindableDuration_native(QtJambi_LibraryUtilities.internal.nativeId(this)); } @QtUninvokable private native io.qt.core.QIntBindable bindableDuration_native(long __this__nativeId); /** *

See QPauseAnimation::setDuration(int)

*/ @QtPropertyWriter(name="duration") @QtUninvokable public final void setDuration(int msecs){ setDuration_native_int(QtJambi_LibraryUtilities.internal.nativeId(this), msecs); } @QtUninvokable private native void setDuration_native_int(long __this__nativeId, int msecs); /** *

See QAbstractAnimation::duration()const

*/ @QtPropertyReader(name="duration") @QtUninvokable @Override public int duration(){ return duration_native_constfct(QtJambi_LibraryUtilities.internal.nativeId(this)); } @QtUninvokable private native int duration_native_constfct(long __this__nativeId); /** *

See QObject::event(QEvent*)

*/ @QtUninvokable @Override public boolean event(io.qt.core.@Nullable QEvent e){ return event_native_QEvent_ptr(QtJambi_LibraryUtilities.internal.nativeId(this), QtJambi_LibraryUtilities.internal.checkedNativeId(e)); } @QtUninvokable private native boolean event_native_QEvent_ptr(long __this__nativeId, long e); /** *

See QAbstractAnimation::updateCurrentTime(int)

*/ @QtUninvokable @Override protected void updateCurrentTime(int arg__1){ updateCurrentTime_native_int(QtJambi_LibraryUtilities.internal.nativeId(this), arg__1); } @QtUninvokable private native void updateCurrentTime_native_int(long __this__nativeId, int arg__1); /** * Constructor for internal use only. * @param p expected to be null. * @hidden */ @NativeAccess protected QPauseAnimation(QPrivateConstructor p) { super(p); } /** * Constructor for internal use only. * It is not allowed to call the declarative constructor from inside Java. * @hidden */ @NativeAccess protected QPauseAnimation(QDeclarativeConstructor constructor) { super((QPrivateConstructor)null); initialize_native(this, constructor); } @QtUninvokable private static native void initialize_native(QPauseAnimation instance, QDeclarativeConstructor constructor); /** *

Overloaded constructor for {@link #QPauseAnimation(io.qt.core.QObject)} * with parent = null.

*/ public QPauseAnimation() { this((io.qt.core.QObject)null); } /** *

Overloaded constructor for {@link #QPauseAnimation(int, io.qt.core.QObject)} * with parent = null.

*/ public QPauseAnimation(int msecs) { this(msecs, (io.qt.core.QObject)null); } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy