QPropertyData Class▲
-
Header: QPropertyData
-
Since: Qt 6.0
-
CMake:
find_package(Qt6 REQUIRED COMPONENTS Core)
target_link_libraries(mytarget PRIVATE Qt6::Core)
-
qmake: QT += core
-
Inherits: QUntypedPropertyData
-
Inherited By: QObjectBindableProperty and QProperty
-
Group: QPropertyData is part of tools
Detailed Description▲
QPropertyData<T> is a common base class for classes that can hold properties with automatic data bindings. It mainly wraps the stored data, and offers low level access to that data.
The low level access to the data provided by this class bypasses the binding mechanism, and should be used with care, as updates to the values will not get propagated to any bindings that depend on this property.
You should usually call value() and setValue() on QProperty<T> or QObjectBindableProperty<T>, not use the low level mechanisms provided in this class.
Member Function Documentation▲
void QPropertyData::setValueBypassingBindings(QPropertyData::parameter_type v)▲
Sets the data value stored in this property to v.
Using this method will bypass any potential binding registered for this property.
See Also▲
See also valueBypassingBindings()
void QPropertyData::setValueBypassingBindings(QPropertyData::rvalue_ref v)▲
This is an overloaded function.
Sets the data value stored in this property to v.
Using this method will bypass any potential binding registered for this property.
QPropertyData::parameter_type QPropertyData::valueBypassingBindings() const▲
Returns the data stored in this property.
As this will bypass any binding evaluation it might return an outdated value if a binding is set on this property. Using this method will also not register the property access with any currently executing binding.
See Also▲
See also setValueBypassingBindings()