io.qt.widgets.QGraphicsTransform Maven / Gradle / Ivy
package io.qt.widgets;
/**
* Abstract base class for building advanced transformations on QGraphicsItems
* Java wrapper for Qt class QGraphicsTransform
*/
public abstract class QGraphicsTransform extends io.qt.core.QObject
{
static {
QtJambi_LibraryUtilities.initialize();
}
/**
* This variable stores the meta-object for the class.
*/
public static final io.qt.core.QMetaObject staticMetaObject = io.qt.core.QMetaObject.forType(QGraphicsTransform.class);
@io.qt.NativeAccess
private static final class ConcreteWrapper extends QGraphicsTransform {
@io.qt.NativeAccess
private ConcreteWrapper(QPrivateConstructor p) { super(p); }
@Override
@io.qt.QtUninvokable
public void applyTo(io.qt.gui.QMatrix4x4 matrix){
applyTo_native_QMatrix4x4_ptr_constfct(QtJambi_LibraryUtilities.internal.nativeId(this), matrix);
}
@io.qt.QtUninvokable
private native void applyTo_native_QMatrix4x4_ptr_constfct(long __this__nativeId, io.qt.gui.QMatrix4x4 matrix);
}
/**
* Overloaded constructor for {@link #QGraphicsTransform(io.qt.core.QObject)}
* with parent = null
.
*/
public QGraphicsTransform() {
this((io.qt.core.QObject)null);
}
/**
* See QGraphicsTransform::QGraphicsTransform(QObject*)
*/
public QGraphicsTransform(io.qt.core.QObject parent){
super((QPrivateConstructor)null);
initialize_native(this, parent);
}
private native static void initialize_native(QGraphicsTransform instance, io.qt.core.QObject parent);
/**
* See QGraphicsTransform::update()
*/
protected final void update(){
update_native(QtJambi_LibraryUtilities.internal.nativeId(this));
}
private native void update_native(long __this__nativeId);
/**
* See QGraphicsTransform::applyTo(QMatrix4x4*)const
*/
@io.qt.QtUninvokable
public abstract void applyTo(io.qt.gui.QMatrix4x4 matrix);
@io.qt.QtUninvokable
private native void applyTo_native_QMatrix4x4_ptr_constfct(long __this__nativeId, io.qt.gui.QMatrix4x4 matrix);
/**
* Constructor for internal use only.
* @param p expected to be null
.
*/
@io.qt.NativeAccess
protected QGraphicsTransform(QPrivateConstructor p) { super(p); }
/**
* Constructor for internal use only.
* It is not allowed to call the declarative constructor from inside Java.
*/
@io.qt.NativeAccess
protected QGraphicsTransform(QDeclarativeConstructor constructor) {
super((QPrivateConstructor)null);
initialize_native(this, constructor);
}
@io.qt.QtUninvokable
private static native void initialize_native(QGraphicsTransform instance, QDeclarativeConstructor constructor);
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy