KDDockWidgets API Documentation 2.1
|
A BindingEvaluator provides a mechanism to control the exact time when a KDBindings::Binding is reevaluated. More...
#include <binding_evaluator.h>
Public Member Functions | |
BindingEvaluator ()=default | |
BindingEvaluator (BindingEvaluator &&other) noexcept=delete | |
BindingEvaluator (const BindingEvaluator &) noexcept=default | |
void | evaluateAll () const |
BindingEvaluator & | operator= (BindingEvaluator &&other) noexcept=delete |
BindingEvaluator & | operator= (const BindingEvaluator &) noexcept=default |
A BindingEvaluator provides a mechanism to control the exact time when a KDBindings::Binding is reevaluated.
A BindingEvaluator represents a collection of Binding instances that can be selectively reevaluated.
If a Binding is created using KDBindings::makeBoundProperty with a BindingEvaluator, the Binding will only be evaluated if BindingEvaluator::evaluateAll is called on the given evaluator.
Note that instances of BindingEvaluator internally wrap their collection of Bindings in such a way that copying a BindingEvaluator does not actually copy the collection of Bindings. Therefore adding a Binding to a copy of a BindingEvaluator will also add it to the original. This is done for ease of use, so evaluators can be passed around easily throughout the codebase.
Examples:
Definition at line 41 of file binding_evaluator.h.
|
default |
A BindingEvaluator can be default constructed
|
defaultnoexcept |
A BindingEvaluator can be copy constructed.
Note that copying the evaluator will NOT create a new collection of Binding instances, but the new evaluator will refer to the same collection, so creating a new Binding with this evaluator will also modify the previous one.
|
deletenoexcept |
A BindingEvaluator can not be move constructed.
|
inline |
This function evaluates all Binding instances that were constructed with this evaluator, in the order they were inserted.
It will therefore update the associated Property instances as well.
Definition at line 89 of file binding_evaluator.h.
|
deletenoexcept |
A BindingEvaluator can not be move assigned.
|
defaultnoexcept |
A BindingEvaluator can be copy assigned.
Note that copying the evaluator will NOT create a new collection of Binding instances, but the new evaluator will refer to the same collection, so creating a new Binding with this evaluator will also modify the previous one.