java.lang.Object
io.qt.QtObject
io.qt.core.QUntypedBindable
io.qt.core.QIntBindable
- All Implemented Interfaces:
QtObjectInterface
,Cloneable
QIntBindable is primitive-typed version of QBindable<Integer>.
- See Also:
-
Constructor Summary
ConstructorDescriptionCreates a newint
-typed invalid bindable.QIntBindable
(QIntProperty property) Creates a new bindable from provided property.QIntBindable
(QObject object, QMetaProperty property) Creates a new bindable from provided meta property of given object.QIntBindable
(QObject object, String property) Creates a new bindable from provided meta property of given object.QIntBindable
(QProperty<@QtPrimitiveType Integer> property) Creates a new bindable from provided property.QIntBindable
(QUntypedBindable other) Creates a copy of the provided bindable.QIntBindable
(QObject.QComputedIntProperty property) Creates a new bindable from provided property.Creates a new bindable from provided property.QIntBindable
(QObject.QIntProperty property) Creates a new bindable from provided property.QIntBindable
(QObject.QProperty<@QtPrimitiveType Integer> 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
(QIntPropertyBinding binding) setBinding
(QPropertyBinding<@QtPrimitiveType Integer> binding) setBinding
(IntSupplier functor) final void
setValue
(int 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 int
value()
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, subscribe
Methods inherited from class io.qt.QtObject
dispose, equals, isDisposed
-
Constructor Details
-
QIntBindable
public QIntBindable()Creates a newint
-typed invalid bindable. -
QIntBindable
Creates a copy of the provided bindable. If the type of the other bindable is notint
it remains invalid.- Parameters:
other
-
-
QIntBindable
Creates a new bindable from provided property.- Parameters:
property
-
-
QIntBindable
Creates a new bindable from provided property.- Parameters:
property
-
-
QIntBindable
Creates a new bindable from provided property.- Parameters:
property
-
-
QIntBindable
Creates a new bindable from provided property. If the type of the property is notint
anIllegalArgumentException
is thrown.- Parameters:
property
-
-
QIntBindable
Creates a new bindable from provided property. If the type of the property is notint
anIllegalArgumentException
is thrown.- Parameters:
property
-
-
QIntBindable
Creates a new bindable from provided property. If the type of the property is notint
anIllegalArgumentException
is thrown.- Parameters:
property
-
-
QIntBindable
Creates a new bindable from provided meta property of given object. If the type of the property is notint
anIllegalArgumentException
is thrown.- Parameters:
object
-property
-
-
QIntBindable
Creates a new bindable from provided meta property of given object. If the type of the property is notint
anIllegalArgumentException
is thrown.- Parameters:
object
-property
-
-
-
Method Details
-
makeBinding
Creates a binding to the underlying property.- Overrides:
makeBinding
in classQUntypedBindable
-
binding
Returns the binding expression that is associated with the underlying property. A default constructedQIntPropertyBinding
will be returned if no such association exists.- Overrides:
binding
in classQUntypedBindable
- Returns:
- binding
-
setBinding
-
setBinding
@QtUninvokable public QIntPropertyBinding setBinding(QPropertyBinding<@QtPrimitiveType Integer> 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:
takeBinding
in 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
-
-