AUI Framework
master
Cross-platform base for C++ UI apps
|
Temporary transparent object that gains write access to underlying property's value, notifying about value changes when destructed. More...
#include </home/runner/work/aui/aui/doxygen/intermediate/property_modifier.h>
PropertyModifier is a result of writeScope()
method of writeable properties. Also, it is used inside non-const operator implementations (see below). It gains transparent writeable handle to property's value, and calls notify()
method on associated property upon PropertyModifier destruction.
Non-const operators of properties such as non-const versions of operator=
, operator+=
, operator-=
have a side effect of emitting changed
signal upon operation completion. This ensures that modifying access to the property can be observed.
operator+
, operator-
) have marked const, otherwise property would treat them as a writing access, resulting in unwanted signaling changed
upon each access. operator->
is a special case. operator->
having both non-const and const versions is a common practice, so there's should be a way to distinguish between non-const access and const access, preferring the latter if possible. The const version of operator->
can be used directly on property:
Property System is designed in such a way you would explicitly express a modifying operation via binary equals operator (and favours such as +=
, -=
):
However, it is still possible to achieve non-const version of operator->
. To do this, you need a aui::PropertyModifier object that grants such access:
You need to be careful when performing multiple operations at once. Design rationale behind writeScope()
method makes it painful (by intention) performing multiple accesses, since it would lead to unwanted change notifications during the process:
The right way is to create aui::PropertyModifier just once. This will produce exactly one notification, ensuring that modifications to the property are performed atomically. This means that all operations within the scope of aui::PropertyModifier produced by writeScope()
will be treated as one unit, and only one change notification will be emitted.