QObjectComputedProperty Class▲
-
Header: QObjectComputedProperty
-
Since: Qt 6.0
-
CMake:
find_package(Qt6 REQUIRED COMPONENTS Core)
target_link_libraries(mytarget PRIVATE Qt6::Core)
-
qmake: QT += core
-
Inherits: QUntypedPropertyData
-
Group: QObjectComputedProperty is part of tools
Detailed Description▲
QObjectComputedProperty is a read-only property which is recomputed on each read. It does not store the computed value. It is one of the Qt internal classes implementing Qt Bindable Properties. QObjectComputedProperty is usually not used directly, instead an instance of it is created by using the Q_OBJECT_COMPUTED_PROPERTY macro.
See the following example.
class
Client{}
;
class
MyClassPrivate : public
QObjectPrivate
{
public
:
QList&
lt;Client&
gt; clients;
bool
hasClientsActualCalculation() const
{
return
clients.size() &
gt; 0
; }
Q_OBJECT_COMPUTED_PROPERTY(MyClassPrivate, bool
, hasClientsData,
&
amp;MyClassPrivate::
hasClientsActualCalculation)
}
;
class
MyClass : public
QObject
{
Q_OBJECT
Q_PROPERTY(bool
hasClients READ hasClients STORED false
BINDABLE bindableHasClients)
public
:
QBindable&
lt;bool
&
gt; bindableHasClients()
{
return
QBindable&
lt;bool
&
gt;(&
amp;d_func()-&
gt;hasClientsData);
}
bool
hasClients() const
{
return
d_func()-&
gt;hasClientsData.value();
}
void
addClient(const
Client &
amp;c)
{
Q_D(MyClass);
d-&
gt;clients.push_back(c);
// notify that the value could have changed
d-&
gt;hasClientsData.markDirty();
}
private
:
Q_DECLARE_PRIVATE(MyClass)
}
;
The rules for getters in Bindable Property Getters and Setters also apply for QObjectComputedProperty. Especially, the getter should be trivial and only return the value of the QObjectComputedProperty object. The callback given to the QObjectComputedProperty should usually be a private method which is only called by the QObjectComputedProperty.
No setter is required or allowed, as QObjectComputedProperty is read-only.
To correctly participate in dependency handling, QObjectComputedProperty has to know when its value, the result of the callback given to it, might have changed. Whenever a bindable property used in the callback changes, this happens automatically. If the result of the callback might change because of a change in a value which is not a bindable property, it is the developer's responsibility to call markDirty on the QObjectComputedProperty object. This will inform dependent properties about the potential change.
Note that calling markDirty might trigger change handlers in dependent properties, which might in turn use the object the QObjectComputedProperty is a member of. So markDirty must not be called when in a transitional or invalid state.
QObjectComputedProperty is not suitable for use with a computation that depends on any input that might change without notice, such as the contents of a file.
See Also▲
Macro Documentation▲
[since 6.0] Q_OBJECT_COMPUTED_PROPERTY(containingClass, type, name, callback)▲
Declares a QObjectComputedProperty inside containingClass of type type with name name. The argument callback specifies a GETTER function to be called when the property is evaluated.
This macro was introduced in Qt 6.0.