The QPropertyData class is a helper class for properties with automatic property bindings. More...
Header: | #include <QPropertyData> |
CMake: | find_package(Qt6 COMPONENTS Core REQUIRED) target_link_libraries(mytarget PRIVATE Qt6::Core) |
qmake: | QT += core |
Since: | Qt 6.0 |
Inherits: | QUntypedPropertyData |
Inherited By: |
void | setValueBypassingBindings(QPropertyData::parameter_type v) |
void | setValueBypassingBindings(QPropertyData::rvalue_ref v) |
QPropertyData::parameter_type | valueBypassingBindings() const |
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.
Sets the data value stored in this property to v.
Note: Using this method will bypass any potential binding registered for this property.
See also valueBypassingBindings().
This is an overloaded function.
Sets the data value stored in this property to v.
Note: Using this method will bypass any potential binding registered for this property.
Returns the data stored in this property.
Note: 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 setValueBypassingBindings().
© The Qt Company Ltd
Licensed under the GNU Free Documentation License, Version 1.3.
https://doc.qt.io/qt-6.2/qpropertydata.html