io.qt.gui.QAccessibleValueInterface 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.gui;
import io.qt.*;
/**
* Implements support for objects that manipulate a value
* Java wrapper for Qt class QAccessibleValueInterface
*/
public interface QAccessibleValueInterface extends QtObjectInterface
{
/**
* @hidden
* Implementor class for interface {@link io.qt.gui.QAccessibleValueInterface}
*/
public static abstract class Impl extends QtObject
implements io.qt.gui.QAccessibleValueInterface
{
static {
QtJambi_LibraryUtilities.initialize();
}
@NativeAccess
private static final class ConcreteWrapper extends QAccessibleValueInterface.Impl {
@NativeAccess
private ConcreteWrapper(QPrivateConstructor p) { super(p); }
@Override
@QtUninvokable
public java.lang.Object currentValue(){
return currentValue_native_constfct(QtJambi_LibraryUtilities.internal.nativeId(this));
}
private native static java.lang.Object currentValue_native_constfct(long __this__nativeId);
@Override
@QtUninvokable
public java.lang.Object maximumValue(){
return maximumValue_native_constfct(QtJambi_LibraryUtilities.internal.nativeId(this));
}
private native static java.lang.Object maximumValue_native_constfct(long __this__nativeId);
@Override
@QtUninvokable
public java.lang.Object minimumStepSize(){
return minimumStepSize_native_constfct(QtJambi_LibraryUtilities.internal.nativeId(this));
}
private native static java.lang.Object minimumStepSize_native_constfct(long __this__nativeId);
@Override
@QtUninvokable
public java.lang.Object minimumValue(){
return minimumValue_native_constfct(QtJambi_LibraryUtilities.internal.nativeId(this));
}
private native static java.lang.Object minimumValue_native_constfct(long __this__nativeId);
@Override
@QtUninvokable
public void setCurrentValue(java.lang.Object value){
setCurrentValue_native_cref_QVariant(QtJambi_LibraryUtilities.internal.nativeId(this), value);
}
private native static void setCurrentValue_native_cref_QVariant(long __this__nativeId, java.lang.Object value);
}
/**
* See QAccessibleValueInterface:: QAccessibleValueInterface()
*/
public Impl(){
super((QPrivateConstructor)null);
initialize_native(this);
}
private native static void initialize_native(QAccessibleValueInterface instance);
/**
* See QAccessibleValueInterface:: currentValue()const
*/
@QtUninvokable
public abstract java.lang.Object currentValue();
private native static java.lang.Object currentValue_native_constfct(long __this__nativeId);
/**
* See QAccessibleValueInterface:: maximumValue()const
*/
@QtUninvokable
public abstract java.lang.Object maximumValue();
private native static java.lang.Object maximumValue_native_constfct(long __this__nativeId);
/**
* See QAccessibleValueInterface:: minimumStepSize()const
*/
@QtUninvokable
public abstract java.lang.Object minimumStepSize();
private native static java.lang.Object minimumStepSize_native_constfct(long __this__nativeId);
/**
* See QAccessibleValueInterface:: minimumValue()const
*/
@QtUninvokable
public abstract java.lang.Object minimumValue();
private native static java.lang.Object minimumValue_native_constfct(long __this__nativeId);
/**
* See QAccessibleValueInterface:: setCurrentValue(QVariant)
*/
@QtUninvokable
public abstract void setCurrentValue(java.lang.Object value);
private native static void setCurrentValue_native_cref_QVariant(long __this__nativeId, java.lang.Object value);
/**
* Constructor for internal use only.
* @param p expected to be null
.
* @hidden
*/
@NativeAccess
protected Impl(QPrivateConstructor p) { super(p); }
}
/**
* See QAccessibleValueInterface:: currentValue()const
*/
@QtUninvokable
public java.lang.Object currentValue();
/**
* See QAccessibleValueInterface:: maximumValue()const
*/
@QtUninvokable
public java.lang.Object maximumValue();
/**
* See QAccessibleValueInterface:: minimumStepSize()const
*/
@QtUninvokable
public java.lang.Object minimumStepSize();
/**
*
*/
@QtUninvokable
public java.lang.Object minimumValue();
/**
*
*/
@QtUninvokable
public void setCurrentValue(java.lang.Object value);
}