java.lang.Object
io.qt.QtObject
io.qt.core.QUntypedBindable
io.qt.core.QShortBindable
- All Implemented Interfaces:
QtObjectInterface,Cloneable
QShortBindable is primitive-typed version of QBindable<Short>.
- See Also:
-
Constructor Summary
ConstructorsConstructorDescriptionCreates a newshort-typed invalid bindable.QShortBindable(QObject object, QMetaProperty property) Creates a new bindable from provided meta property of given object.QShortBindable(QObject object, String property) Creates a new bindable from provided meta property of given object.QShortBindable(QProperty<@QtPrimitiveType Short> property) Creates a new bindable from provided property.QShortBindable(QShortProperty property) Creates a new bindable from provided property.QShortBindable(QUntypedBindable other) Creates a copy of the provided bindable.Creates a new bindable from provided property.QShortBindable(QObject.QComputedShortProperty property) Creates a new bindable from provided property.QShortBindable(QObject.QProperty<@QtPrimitiveType Short> property) Creates a new bindable from provided property.QShortBindable(QObject.QShortProperty property) Creates a new bindable from provided property. -
Method Summary
Modifier and TypeMethodDescriptionbinding()Returns the binding expression that is associated with the underlying property.Creates a binding to the underlying property.setBinding(QPropertyBinding<@QtPrimitiveType Short> binding) setBinding(QShortPropertyBinding binding) setBinding(QtUtilities.ShortSupplier functor) final voidsetValue(short value) Assigns value to the underlying property and removes the property's associated binding, if present.Disassociates the binding expression from this property and returns it.final shortvalue()Returns the value of the underlying property.Methods inherited from class io.qt.core.QUntypedBindable
addNotifier, clone, data, hasBinding, iface, isBindable, isReadOnly, isValid, metaType, observe, onValueChanged, setBinding, setData, setIface, subscribeMethods inherited from class io.qt.QtObject
dispose, equals, isDisposed
-
Constructor Details
-
QShortBindable
public QShortBindable()Creates a newshort-typed invalid bindable. -
QShortBindable
Creates a copy of the provided bindable. If the type of the other bindable is notshortit remains invalid.- Parameters:
other-
-
QShortBindable
Creates a new bindable from provided property.- Parameters:
property-
-
QShortBindable
Creates a new bindable from provided property.- Parameters:
property-
-
QShortBindable
Creates a new bindable from provided property.- Parameters:
property-
-
QShortBindable
Creates a new bindable from provided property. If the type of the property is notshortanIllegalArgumentExceptionis thrown.- Parameters:
property-
-
QShortBindable
Creates a new bindable from provided property. If the type of the property is notshortanIllegalArgumentExceptionis thrown.- Parameters:
property-
-
QShortBindable
Creates a new bindable from provided property. If the type of the property is notshortanIllegalArgumentExceptionis thrown.- Parameters:
property-
-
QShortBindable
Creates a new bindable from provided meta property of given object. If the type of the property is notshortanIllegalArgumentExceptionis thrown.- Parameters:
object-property-
-
QShortBindable
Creates a new bindable from provided meta property of given object. If the type of the property is notshortanIllegalArgumentExceptionis thrown.- Parameters:
object-property-
-
-
Method Details
-
makeBinding
Creates a binding to the underlying property.- Overrides:
makeBindingin classQUntypedBindable
-
binding
Returns the binding expression that is associated with the underlying property. A default constructedQShortPropertyBindingwill be returned if no such association exists.- Overrides:
bindingin classQUntypedBindable- Returns:
- binding
-
setBinding
-
setBinding
@QtUninvokable public QShortPropertyBinding setBinding(QPropertyBinding<@QtPrimitiveType Short> binding) -
setBinding
-
takeBinding
Disassociates the binding expression from this property and returns it.
After calling this function, the value of the property will only change if you assign a new value to it, or when a new binding is set.
- Overrides:
takeBindingin classQUntypedBindable- Returns:
- the removed binding
-
value
Returns the value of the underlying property. This may evaluate a binding expression that is tied to the property, before returning the value.- Returns:
- value
-
setValue
Assigns value to the underlying property and removes the property's associated binding, if present.
- Parameters:
value-
-